From c5e70e8a61be901f89d528d5d6b8b133fff02667 Mon Sep 17 00:00:00 2001 From: Diegoflores31 <47069269+Diegoflores31@users.noreply.github.com> Date: Sun, 18 Feb 2024 04:12:07 -0500 Subject: [PATCH 001/148] Vamp lurker Tweaks (#5625) # About the pull request -Using Tail stab on the same tile a enemey is standing will automatically target tailstab to the enemy. -Sprite clicking and enemy with Tail stab now provides a Bonus 15 Dmg # Explain why it's good for the game after the reversal of the vamp lurker rework it was left in a very weak state . only a handfull of players being able to play it decently. this PR aims to make it a little easier for players to use vamp lurker. # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: balance: Tail Jab will now target enemies on the same tile it was targeted. balance: Aiming Tail Jab directly on a target will do an additional 15 damage /:cl: --------- Co-authored-by: Drathek <76988376+Drulikar@users.noreply.github.com> --- .../abilities/lurker/lurker_powers.dm | 23 +++++++++++++------ 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm index 373c2701ce37..0d1bcc99281a 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm @@ -215,7 +215,7 @@ if(distance > 2) return - var/list/turf/path = get_line(xeno, hit_target, include_start_atom = FALSE) + var/list/turf/path = get_line(xeno, targeted_atom, include_start_atom = FALSE) for(var/turf/path_turf as anything in path) if(path_turf.density) to_chat(xeno, SPAN_WARNING("There's something blocking us from striking!")) @@ -237,8 +237,20 @@ if(current_structure.density && !current_structure.throwpass) to_chat(xeno, SPAN_WARNING("There's something blocking us from striking!")) return - - if(!isxeno_human(hit_target) || xeno.can_not_harm(hit_target) || hit_target.stat == DEAD) + // find a target in the target turf + if(!iscarbon(targeted_atom) || hit_target.stat == DEAD) + for(var/mob/living/carbon/carbonara in get_turf(targeted_atom)) + hit_target = carbonara + if(!xeno.can_not_harm(hit_target) && hit_target.stat != DEAD) + break + + if(iscarbon(hit_target) && !xeno.can_not_harm(hit_target) && hit_target.stat != DEAD) + if(targeted_atom == hit_target) //reward for a direct hit + to_chat(xeno, SPAN_XENOHIGHDANGER("We directly slam [hit_target] with our tail, throwing it back after impaling it on our tail!")) + hit_target.apply_armoured_damage(15, ARMOR_MELEE, BRUTE, "chest") + else + to_chat(xeno, SPAN_XENODANGER("We attack [hit_target] with our tail, throwing it back after stabbing it with our tail!")) + else xeno.visible_message(SPAN_XENOWARNING("\The [xeno] swipes their tail through the air!"), SPAN_XENOWARNING("We swipe our tail through the air!")) apply_cooldown(cooldown_modifier = 0.2) playsound(xeno, 'sound/effects/alien_tail_swipe1.ogg', 50, TRUE) @@ -247,11 +259,8 @@ // FX var/stab_direction - to_chat(xeno, SPAN_XENOHIGHDANGER("We directly slam [hit_target] with our tail, throwing it back after impaling it on our tail!")) + stab_direction = turn(get_dir(xeno, targeted_atom), 180) playsound(hit_target,'sound/weapons/alien_tail_attack.ogg', 50, TRUE) - - stab_direction = turn(get_dir(xeno, hit_target), 180) - if(hit_target.mob_size < MOB_SIZE_BIG) step_away(hit_target, xeno) From 5504ae2dcc19bf99887689f8cdd044e6d49deebe Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Sun, 18 Feb 2024 09:21:04 +0000 Subject: [PATCH 002/148] Automatic changelog for PR #5625 [ci skip] --- html/changelogs/AutoChangeLog-pr-5625.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5625.yml diff --git a/html/changelogs/AutoChangeLog-pr-5625.yml b/html/changelogs/AutoChangeLog-pr-5625.yml new file mode 100644 index 000000000000..7c7fc1ce1ae7 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5625.yml @@ -0,0 +1,5 @@ +author: "Diegoflores31" +delete-after: True +changes: + - balance: "Tail Jab will now target enemies on the same tile it was targeted." + - balance: "Aiming Tail Jab directly on a target will do an additional 15 damage" \ No newline at end of file From 71d46ee8057d19b12e1495419cb299d2fedef6cc Mon Sep 17 00:00:00 2001 From: Blundir <100090741+Blundir@users.noreply.github.com> Date: Sun, 18 Feb 2024 13:14:45 +0200 Subject: [PATCH 003/148] Update to some ultra ancient sprites (#5678) # About the pull request This pr aims to update/correct sprites that look like this:
Example ![StrongDMM_j51KDPeYYU](https://github.com/cmss13-devs/cmss13/assets/100090741/4a51a9ef-51f9-4b51-a5aa-9e71181fec45) ![StrongDMM_8kBEwLWHKn](https://github.com/cmss13-devs/cmss13/assets/100090741/1feb4173-3c17-4a6a-8926-5f9a99604949) ![StrongDMM_vCmcme098x](https://github.com/cmss13-devs/cmss13/assets/100090741/e564aaba-21fc-41e8-8c23-abc73beebc8f) ![StrongDMM_YcpXSx2Csu](https://github.com/cmss13-devs/cmss13/assets/100090741/f00c21a9-5775-4478-abda-a86607bcea1c) ![StrongDMM_x8ze6bT0Ye](https://github.com/cmss13-devs/cmss13/assets/100090741/91c03c51-6958-4f03-ba8e-37aac0a5cdb7) ![StrongDMM_PkvyE8FMPW](https://github.com/cmss13-devs/cmss13/assets/100090741/abfc033d-430b-44f0-bb55-320ebd0cc096) ![StrongDMM_mjvY3r7nMT](https://github.com/cmss13-devs/cmss13/assets/100090741/4fa7290d-6362-439a-9e0f-7da242758ad0) ![StrongDMM_WoHe9doCda](https://github.com/cmss13-devs/cmss13/assets/100090741/b7838fe8-9dbe-451f-9230-afc98e03513c) ![StrongDMM_xWgkCF5uC3](https://github.com/cmss13-devs/cmss13/assets/100090741/a58c9662-ef1f-4eb3-b529-3dd1df798afa) ![StrongDMM_IFnTgcGcUY](https://github.com/cmss13-devs/cmss13/assets/100090741/7278c2ff-0ec4-4a70-9038-269b27802c6e) ![StrongDMM_OlOJTtvvhL](https://github.com/cmss13-devs/cmss13/assets/100090741/917579ae-71e8-4d8d-a4e3-5b6b1e309c38) ![dreammaker_MVtobf4dvv](https://github.com/cmss13-devs/cmss13/assets/100090741/890865de-cc7d-4261-8223-9cdf268816ad)
Such sprites are very very old, pre cm era most of them, some of which weren't updated for 12+ years. Most of updated sprites were taken from TGMC, others from Baystation, Aurora and TG, all credits to them, remaining sprites were made by me. To see full list of what i've updated, see icondiffbot changes. # Explain why it's good for the game Less fossilized stuff. # Testing Photographs and Procedure
Screenshots & Videos ![StrongDMM_u5OswblCBx](https://github.com/cmss13-devs/cmss13/assets/100090741/56d9b6f9-22cb-47aa-8ec5-ad06cafb5128) ![StrongDMM_1UHx0NK8Q6](https://github.com/cmss13-devs/cmss13/assets/100090741/3803e93f-1000-4e05-ac2e-64594e194d54) ![StrongDMM_rbth5mZSWJ](https://github.com/cmss13-devs/cmss13/assets/100090741/2031f71a-7f0b-4d36-92a4-3089967462a4) ![StrongDMM_Mp66s8sWGx](https://github.com/cmss13-devs/cmss13/assets/100090741/624be972-b18f-42f1-a673-9c73ff60a6dd) ![StrongDMM_ceEEajlHNZ](https://github.com/cmss13-devs/cmss13/assets/100090741/03a77174-bf17-4141-91cd-5375daa5dcba) ![StrongDMM_uIVfaqHsGd](https://github.com/cmss13-devs/cmss13/assets/100090741/ff25fd55-ca51-45a3-85a0-c367615604e0) ![StrongDMM_FikQODdmRy](https://github.com/cmss13-devs/cmss13/assets/100090741/0e38c266-4fdf-4835-b658-08919a3e2819) ![StrongDMM_hH03QCpTJR](https://github.com/cmss13-devs/cmss13/assets/100090741/3fd8c52c-3310-4731-9ee0-84b7be0ac2b5) ![StrongDMM_U3Jb51Gcs0](https://github.com/cmss13-devs/cmss13/assets/100090741/357a3172-4c30-499b-9ad3-60baa790ffc8) ![StrongDMM_wczgnQ89oE](https://github.com/cmss13-devs/cmss13/assets/100090741/9c87d2d0-3e6c-460f-9640-a95d16177df5) ![StrongDMM_M09Y0daC8u](https://github.com/cmss13-devs/cmss13/assets/100090741/fd36dc8c-d521-465a-861b-f983c67c6b1e) ![dreammaker_MmtlKcPWIk](https://github.com/cmss13-devs/cmss13/assets/100090741/82561ae6-2de5-4ec2-bd6d-e7987cf01935)
# Changelog :cl: imageadd: updated many old/legacy sprites /:cl: --- icons/obj/items/drinks.dmi | Bin 59829 -> 59821 bytes icons/obj/items/storage.dmi | Bin 46693 -> 46009 bytes .../weapons/guns/ammo_by_faction/uscm.dmi | Bin 23981 -> 24224 bytes .../structures/machinery/airlock_machines.dmi | Bin 1212 -> 2213 bytes icons/obj/structures/machinery/atmos.dmi | Bin 5783 -> 17920 bytes .../obj/structures/machinery/biogenerator.dmi | Bin 1515 -> 1870 bytes icons/obj/structures/machinery/computer3.dmi | Bin 40522 -> 39330 bytes icons/obj/structures/machinery/drone_fab.dmi | Bin 1288 -> 1006 bytes icons/obj/structures/machinery/meter.dmi | Bin 1975 -> 1028 bytes icons/obj/structures/machinery/power.dmi | Bin 30580 -> 29987 bytes icons/obj/structures/machinery/robotics.dmi | Bin 5054 -> 8265 bytes icons/obj/structures/machinery/virology.dmi | Bin 13880 -> 14854 bytes icons/turf/ground_map.dmi | Bin 428714 -> 428660 bytes icons/turf/shuttle.dmi | Bin 59511 -> 62149 bytes maps/map_files/BigRed/BigRed.dmm | 3 ++- .../sprinkles/30.repairpanelslz.dmm | 3 ++- maps/map_files/LV624/hydro/30.destroyed.dmm | 3 ++- 17 files changed, 6 insertions(+), 3 deletions(-) diff --git a/icons/obj/items/drinks.dmi b/icons/obj/items/drinks.dmi index 7623a980e435e7ead5ffbfecb47573400ca39e79..1203f3d18edd23e260a34d6f2b102cecb54471cf 100644 GIT binary patch delta 58134 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

V|er^J`6{m#H|Xlw?1*`J?==@=Lg+#0AbLJ_K} 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 Bd-(tW delta 58092 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%0AM#f7H3^JHL3SaM+3~1>rryd%{~vx%axapjwb|h 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%0Afsc#Z>$ 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 delta 45362 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 diff --git a/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi b/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi index e60e9463b8a2d317451813b45602c78fbbafa04d..e177d85dc726d268ecd3793a023b10a4e23da896 100644 GIT binary patch delta 23419 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 PKrandZIz!7VZr|cH<9jx delta 23174 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 diff --git a/icons/obj/structures/machinery/airlock_machines.dmi b/icons/obj/structures/machinery/airlock_machines.dmi index 0c4643269cdfbb2b50c9aeb20e2aa68a30cdf4fa..30a5fecccda8b07e78dc64e62b99c92f7e0c1469 100644 GIT binary patch literal 2213 zcmaJ@X;cze8^-16NSTvqHsX?+<&tUESLOm{sECu|iVK!4?iy~n5CS=Bxujw)nW>ej zgOy}X2!`;Eua3w&xuwg{+f)ssi+rv=eNo;&u*=xNWSd+c&I7${Mro2u#WNEzt}_R~K>DjO<>vw=}gCr|rSu77+<8aQ?w=TV!nxaMyz-yocA z2xkjtyM0!7gI~$Vh`$wJTcbile@TOJ3wW|UBN=Iy}F~rKZENJZXAZJG~Fc0 z2(cR=#|k~N{mS4c>x@J%Q^+%(Y+?dO4)A-my7W8}7-&9Bh__UHM32CZqTzd@XDeZ~ zOlukZ*7rfy1DcWq9SyU0P9o?m@RuVsN=to_lWYH& z_rv^+bEliwoi!+;Cd#hwJ^SKzo1Ihu?N3fc=O*ZmH^Pa>HUj$cJAMu{;$UR85~pc(J9)iC$(Lump=SAz$pLs z|2+}f;EIo>)5sdOnYdR2?eL@YmQ9ab6>q9L0J%0>zG%%(gq%CoW&SK8yq8k)w<})1 z6Gp(#!7i*JHEdZp>pyt2y3;8^R=5{QSNWW2QD1y(1NSVntLx~{NLDe5hJ1OO8h&4E z{Ehwrp$L8U*|&|kntb2G&2=Fp3xc~SY3_iBBCLkKdD1HDA0x6D7s!{t(rFMfM9aH0 zf3i0-p7(Bye=J*{x0G|guXDYyIFN+1mZ6&mau-%WlctBX@*+$^FtMbOc;WDlV}5;^ zOIy`n4kDQ{D3pBRLbq}Egi;d`XX&+fFR;dR%6eZ)umIS?xZP*w0I3+vdLHX7V4=Lz zNP#b9S7;e27NM?Iw*XKVjt?%oIu z{e+4gaqDGx&0~EdO$w#Qgae~(D8`N~Z6EMZK-o0MLNGAAtZ6YU?1|ZVw-W7uNOQDB zi?Aj>Qmi>h4$hmW?A9c^=f^DgS+XC3;%CqZ=iC+#(Ns7DuT&r|*Xl8=J_FzzbYir7 z44_)b+BssSx^j(Q%kZbJcAJ+AxR?Y76yEZjYORMH{Bv3#V7EmnM zZ1zK(mgMZu)c(LboSX(L@f^}_D?qFT%Q6e#f_GlZb)WK$eBGV!n{c}#X@dZFC-D~p zg*9a)CnLs)q!AWj?_B@&eTS#WOJ=QS*O4$o*VqYheQ5j{8^fZDPrJtG`F6psQhT7{`C+yx~!BnKmbhQ(V26o@Qk?kgTSd_e4+g0%dAur0Hr|#Lr|_F7uXG zGC@nzp%JE~G{xx*&Abmq5y^BiuPBO$Fn*)`0Xuv1d7gLAIiKhIt+e>n1f3D!=V=DB zfdK$uhW9!V1OVG`x*cU~sN>cu|D7*>4PG=Mu5IP_ZzNp9A-r+|$G?_L-rq0c&{J63fktBtXe|()%W~wvh zM67lBWNse}1po--fATSV#5%P@>4v8+u5pi*xo}&p0Dzm=PD2F7O4^@gdKd$V7le8j zQ;~?Ub$5UnzX$?LD`OEkQ7tB;4eHR2B4`iP(fT(c9ty?h&D6~`r<5^rBy5VXo(gr# zunZ*g+J-ZLWs&VaOudyfEcGNGkWo8H-P}` zuWO^!QES&+Di@rj;>~8&LJ*f+3=N;A4sSpQz&=?tkYCJ4ulLOP>yU#>LsW=5PE%q2e-Di{*pMP zem9KSB;LXYT_Iee;D;8#uDAnoch$(B{iUY$>YyU`BW|}cRbewmGH`lBA{HC?s2Pva#d9bgU7!i=gJZNIs_)k9bU#qlnKA=-(`W`o z&ca0Ou;~q7+B>ePFs?UC5L3Ig$vcx<6>9K>%JZQ1x;Y}zG0!n2eoKP8g}F38C}2Py3zm$zDe diff --git a/icons/obj/structures/machinery/atmos.dmi b/icons/obj/structures/machinery/atmos.dmi index 39440487ab39f2f2cc9a482926d732337fc752fa..651f2481039a330af770c630fdb78891033e1f2e 100644 GIT binary patch literal 17920 zcmagG1yoes+crKlhzLl7k_svk(t?C^N=Vnx-4Y563<%N!QUXdNNF!ZCcXzkM&@t4& zFyG;M-uL~zYkmLq{}yW)&OT@Nz3=PV`&>6+YVYKT?$O=@fj~qG^3ob05C-Gj2Ok#% z0+D|%fdUss-kQ4Z(v~00-E3XlZJnJ!ppQR_;|HBSbKmbC{`{N8&)hcQ;yWPKIU z%Dg5C`8N`l1U&AcHOox9Hd?xdwtY`y{cf*$joWt59lfA~er&Lqxjxz+Mu=`$Myb1w zB(B2Cz=wrddkfk779laMk_u$A7EG8%>Vz~!GDmMu$QDtw5uavKLW+Ntvys{qZGdQs z+D{ea3?%m_Yo4eC7{4r4eI#Fyoy0r=+0DJz)=EgEJ6*jsS@yOaGl3sh%eq%dusG{| z8cWjv!us1!+fTle{Yvcx&x=j#T>eIW-ui8N^*X!f@$)MlMdwHFW?(*ru|d7Tk87yW z8iaYS&Y@5H9)yu*VOdN1KH3=PCW_-GaCZFkUPVLa#4cmJxwR+yg)K8XYIk?R#yF>$ z4^39j`fB5GKNZ_Vthii_B#nu&l81#0&T7jy5!c3tJ1|QZr{tl}N;C8VWwVDJf}}t2 zlNblTzXX98K?>4uH9!8?Z}M>`w}c&_pJZZTe;Zj%9FfR+_DuOchIB|omUR~y$uZ_E zqwU*PM&`0<;tiK-dNtGUAJl&6VTDrRV}0kgb7#SS!n^g1w6(a0LpByl9ykL2!;O^&OrzGe4T93W3zF@f^?}gSG;-X0|AwC|;h~IWUYfua$kdc{+hcS>* z`SblyM*ML`EN1*Rz8)xkAUDzfUouNRE+V8cDG%rLGSg%^$lvE_+Zh9oUUPIWvQ+wy zUl~CPhNxD#i+=OVZt*~m8?{%6&Dx|vU;H`f?K@tT9ti4JvKrkbIxnb#z=InJRn>a= z0~b^wTYY0b-uk^eN(@HOSYHWW>t|=Zp#!a?i88<*t|HUF=r;EiqYDh0c{-4#oR0NE zqaA4f$+2G%&)FAPEdu@2!g#U-Zx~LD)26ukF`&Hk7n|MP+KpF!EqGKej_b|MC+)*V zAdnO;UpS1+>F^SJtWgB zmJ76hmVtkg1Ui9aC$ILbP_mdo`Tnbnycd-9R#6V7h0$2h(arYS>f>c27KYLo)WM3l z!!}TUR$%6?A3o?J;s|~?7E|W*L9KEwU#$PjE7U5}l=Uq4>X|s1BuZz2fvx^b3W8D= z?<{5*+a;!ywQRjC(k_dXYbk`qQ4do+eOd}?X}x2}S)g;f}}ejInkf?0ZLOpkOA}sJb*hOnhE|*;fWb6#5@ylt6 zJC8TKofN#jJ)9|*(n7C>Fgz%@U7ofs+!5z5<+k`7AB>gKU{;3bY^GdfS8v2IjX{lO zHpcWpeUot?|dA-jATivKHqk>#n%Cxa^dY zj0_Nv&=F}pw0B$pUm9e`l#tD#P{Bnk{k7!;6Q{)k#S{79i+elO_a`08&$?Ila+CEz zP+(4Q7t01v`j_O9J-rWxut>SS(d=#_UZ#pe^w-BCcL|Db-v*enA}-Em|9N<^k(q~y z=#q~S-rnuE8gF7-Xvq1<$piO>L~$@gMo6)&a(T)~ZZ?4qBQ<8iS2rjdTgl*JJjter zop>fFXS1F8(No>I2&%{V`T6%|f(Bq{jZ;(7uMb~3Iy!QMM?_!=F#WzN!>Wv>Q@($^Z4KsW9{gRWrZ; zB{}BD)!yvxmGL|OHi(6!_lOoDtMBE*wPLYx>ZlRlcto&mq^ymYXTzd3Z8m92^fwrH z)F}R8@i#y2!)DyU>PXBB_`fI|II3gYhHA?U#= zVk&oQsf04U-nIi?g6DQPFE4WY`hxkG$~!#NB~9Vf;nd%PvJ@1)OL?O@crNcVGtW~DJkzNv(4 z;Ol>GK;(vw43@2w-pa^OI8>AWPkPa>E(X97_4M?fadOIPYg0Nu8wiaz;Ri=PRZ6@p zMsEjUJ1oDCmScNz^rbCQo`W$E5&5UQi{GF8dgZWF?qzz()@%egB8ZqU8As9sf@cw7Tu3CZUQ3 zKfX`Ue#VJXf2N?^LU;UAi=m^v_+9)H){G~wFuoSG0(Z&OIC@6C*?yh>F?nlF9-h*$ zR+aLuKvvUp0~ff+%CBR8r1$w%RnpT8eeQ16<&60r!~eP( zXWh{&J+zTdEFZ86a0;DW7@3yBfr|5;T~@luy0xN0Wt7i|9ti!xWno&PjUi2jpp}%A zOl#)LGhW>j@!IQZw5H0ZRd;oL<#{j@^;5*NJ(i!^vq3aNzpU>C8|wldP-)w(l=hqE zH?otVfamB2F80JNf?4djSr_E0Okiq*ftDS*wQkU%cLPN*Y|zZN1)`_nKJHz~qlVh1 zn`v%h4i`xS*n~O{+{w64b)x;$D^A3e{SRW_`&JKvi)t2vITb!1EkRVxH;qdOyC{8w za1$WkZ&f_9>m24eZg<%_3`{F>O$ebl2WYgukea{btmY#-5;z z)&wk!?^h3|am*v;P2x?Egx>epD;#gf*gD%1urld+z3NKQF%;JnTXIz=$k)?fPc7wx zc*K@R;`5)~GGVufhj#zr3?JLybK|-|(Q``TBUa7JB)9&g)_Pb;Df z6U$pvTYN5DtH6LQBb*D??>*N`R?h&Qd*d zusiTkcYn4c;KgbRZjjayv^&(LDD|1qi;k{#yJ1Ww)2{XWKJ>GU>vZn*W9U$TR_iH8 z>Ee8DC$dN@zAU(!l(nN^h2dulg%~eOxSXoG@bBZYIbQ$gFJDIX4Gnn?rtx=E46)|G zi54f_embL9`!yqNd|55WXITgL{dH+#Hv)dQ=rG_FHT9)MUfBzH&!KN}(u{RwEBn&! zW6ia#ZjY{~%%iDCFV%XWH&K^>vui#;1AhrwwuonBWI&zK>;Dw_Yy$v97>bye`KfLq zd#@E<*|_uIo`cg(CK4B~Z8nH61mA)B%jzg)XEmd&fLL7HmsR=0xwqvUBQ+k=$0Oj| z2Q4#ru4^q;dv3(-qfc#P%nTS!DIgiK(d1K@b5=^~4ulpK>rzYvy!72A#b{6l>K2do zO5U{H#lq6^c{L8tpW{q&f&1OrWDm*bF()-2w;*QINHH-p%gVSFg^-rDDKS=9YlT_{ zb;0VNe2ei5Cn1)lVnzsZDhwKYaIqKmw>HxC*&F@e)Fxy=~ENc;{V{1#@@7VtwGy^}>fodp6D$ z9Bp1(+WpGUsQ(q_Tm51H-Yq{?M@+lPiAs9P)-VF5KpoQ@+iy0Tw-OJz*Icqe9l*$+ z1)xlZMMHc{_2DcmPwWZ5QIofx>!D~izlZz-ih(D*ym*CQwbDqODU$PIpjMqElzh%^ z1<{(+_k&_brW95G9>cTp?vLw!0~cTZEX(*XS)f&a&W~yO1hGzV7W)vjVcp=iEC`-1 ztu7_K93vKJ3*21jG$UK&fFeU?CZ6K9eC-g5 z@3MNHGetd{N$ET3i8Dt+y3z*$9B9vjs#SIoN*gI@(9HF`+RVP^Y$koYoq_IOG9V4g zexVRr)AyfeYWdMDi_^o*=@N9zn1-H8r7#5bZ3``_m@pFt*}*Bj-RG*9M5}Jy*Ca~o zT&>{_QES~~h8yw#W_L13O#P7ftzKkDGxAdDku!H=Z)JG%@?Qr@+Xyn6S4*swy|d(M z)*Unu;Zs}|YaReHyQccA9u<2r^9GDl$%-4Wr(*3y&UyX44-1A?)vBFY!~|x!IBXt_sc2X7q7~>qNRs&zDUK3M~u|S&AjJ!KpYV zBfYcS0Ww&xMB)(r?Wxko&#}BTuOUpGot?ll5GPNsC6hO->tXH!jcL$@&a;_{nlwQ+ z*bQDwYRHe7qk8|J>UzoH8dJH&N1bA-#Tk{4LX(N@N4Y`{hVsX3>vYxV*vXx1er4GD{^EmS@GGgi;%XNhtQM-{ZqC6+=vyKeq zr~Xh8G7qC%^tX~0Z%BHtyY}b(jX=xyYp!V;EjwvDT(Zc!YOLFLPjChkwB9`uF?Ee5 z*iU)`t$siAGQ{QPI9o0{;$CX*X10Z-n0>3p&*B-|fM+M_eQuAPJWiM{Xq5PXG>OPV zb;JbqOmD-A-t+#aFY$ywCCm$|87g?;dslsUHVNgQN;uUk$*(_LQLJY%frzt_#N<6K=XP+ z%QGrF!`KkU33RGcePLOfC4tT*J-rzmdxgcIEB% zm4|bq(QRn4xL=U8%k-gQeS6cPAc+1*DLpw<=T?uYfb^H?CYcRQO!7s#W$~V8gB_ad z3pWvO`q-F8GfM`5+{hf4;pJPYChX-NwCV-J$<1)cQrA9R2{7eK`$)0}V)yQB>Q>Lv zTn}RbE%p4{_{0O7#HSBZciu!bDt`NWTBYqp%l>8qPqroD?4y%6>0kfZxSwf!MK?Y8 z$ge*FPVs6^cEd1vAG*zsMPJ8EM01JrVA|$sJbh0p`=$+#Q4L^zW1(`rk*uOO88!^r z1zYK!6=P%dU5)MKw0#|| zk;g**{Q(4kx7J>Ep?x!8ccw(~{$#+$AxW1`0cs*u`usEQMql2iyoMPqAN2 zhh~-VXPFZMPc*fvt(N^WX$W4;xyO^F#FFqlMqOG0X9Xm(Bx+#pK*mssf6syUD4gVNMeMH5eJLWsL^#e4SNvjc|ZJGI@Ky{2LpGTT+i)e8F@2EjDqxu&aRvZF+kOCSulmQWnK&VD{ola^PwMp6N86nq%&s-$RC=xK8EA$j=Pl-A+To1f*NYhN zu1UWrIwK8N#F>vr@Jfy+|HCayVXSKZ*qeO*w(+TPma@q)NE#CEAioKP=YVc*>1C zXL*3rEuzff&cM-e(1p3>iwa=La#SJAY)2_AJ9Ot?SKA$F<4qk5MF ze`D^<`GZr+-dq@D(lZv9QfTpSNp&Q`Q**?n3&-?k#i*mhCS#eRDhBkHgVTz*>iq3J zAQ4mS(`yuO#O+sId+|r9FupYe0rMmE;xC7W7aS>Z2OaxLUok*SFR&htvzgPevZ#Mc zObGBj*EwkDK=j&pGOWw~@aM|W^tT}OS`bf5kL*AkO*XsK-)|c4zY|<9 zr@Da20+YCjfK+3hXyN|(^cI(1_mWPmr*6pE$IbD%09TKTKdzsM2k7=;7;-F?7-a3m zDKh}Qw$Sjgx%$MV%fj4MaYkOhR-r%s( zUGuh)%KxX24*BNNhEfVbK|BW;j;r};2Os36HJ8jVGKZjRj?b!GJY6IKwE)Ax#Acme zox~k@cCD(9A@OMFyzx^`>3iAXRG$}LTD=~O3* zSPufuG~4f1nj&}`!FcZ>dJ(7PXN?L@urkpX`(*w=iEC6J*T!1F`@YaZ=Tpb#{7O-qWt=Fn^v-omN3R zU)>b^*LC;==*r6&m(*s~QSCFwYK+UqKY|X`7$C-QzZ^Yof5e6zlkcK0*!G=&Ueo<> zU_Ld0@+MwQ^Wq%LR&2e>@CTdN)4X`$C(F~qC0@G65v~aOn9zJF?kz$^1C=v zzkmnAfAq~>`Oavk5L$$p!)a9~yQu4n4RK(cqEdLpL;o-gU}{Ci)HkE1tp?54 zE9Fqvi|R?FNcK{W_{Cd|ZvHv}l<@IlgIB{nLc;P-r&i79(bACBB5b#9 zf?_>=e`}dLo34fxU{rNe2|YsWpBqkJo#x%dBC?#94Lr~%v3E9>zKLU>U8!>lc;V@6 z)$x-`^*bkny7q`K|!97Dmtia5UBgy|cnEvGyv+o!DCr71?qO_L%VPFfKmXsoW+U z6Vzb{-TPe*oJ}Huqa+d5+_m&l4pNSd+q7rCq>tk?_`x~a^2>%0=&wyy)XFwHrDQh% zHop$M%mJqig0hAGVt&3`W74k}F1=iirVnc>4Xal1X&3zsuDgZ1+*QF8E5t7V4|xZkf;xPb&B(eT@g|Pr znoZ>K@p%f>KknlEo&S6}Bp&u#h!{ea{m+oP{Q5P81(*8*E5gu07BBB)CGF3ecR>YAOgfWqe(-6r0)taAd@dU{ z7FpAlq+~B#@8@hmB!9s4fR8XEkM{dN4FdDQBTH{SAEbR&u@`RoUd-kDJC}C}c8lD- zdE}x$K6>VptxH(#IFG66*G2KDDMp9Zg;K(qpBtW9$Z+4y&8lG_g&_(t{|mN>(d)hR z<{^M{ny5G{GVi?H)8>|PokC3EPh-SQV%Iq4tCdGOQK&Jvg4gvo^ZKsuuMEJKg`96n z%8H~^@7f0G#J52rsB4A;U$%8*-C{UUt%&@VPekMK7v z(cK-jgnV0yvmQ)4oPVH%bd&?*`_u*pr@94)>yKC6IiS%XE(izwW|VkqciNC}b9eP3 zVH4psM<;n_1R7$cdxKOKekEhSdvxj_sBFy@i?Pd}<(4LXEm<}If8h8|4klWt9AZ#G zI;t{2bxuE-?oRD|tGOKRT~9l!8xjKCyz%Uvg@jv5u$T6#s-Xclm%^Gq%^M~PuMvgR z-HNt3o))T_8@Z+Y^6*D8S9ze&1|J^y@4?|TPUmNZKci{T{;OBp2ZXqw$6F94bZ~}A zS0$O)ZlgKNkK_zc4~!c zZp?8m5o-w^bWRe&Hh7ah+y1MPyscUbU9UR*_v77k{UIe`^o0supMmHuFk@jf$k(qc zjM~(MNdV~d8yrwTu9lYC-0cBcWj|PJ1~TGjGyU^E*hc$4&EC1;pcJJ|Yr6g&3y>et z;b#;z56NFWWR$nsp5L!4VNz0UJDwEQl^Z0MPkJmhEMWrB>e!r8UHqQ_8K1On)9@Rz z2Gts#m)k5(d!8F@q*3@Kw1w#3ar5#n2tbVyKT4P>HbOuyi>$t)*mt>qanWHAfc?N9 zqzWDJK($eChh1W=O`7_>;4+G=+?`9)XP;{wM9&mz8KbJ@ z(-8{br-V}gJ#?uTXPAwNpl|kn_;m;DvaVmDqhGgwhuHV~7h4#V4i_e@c6o(abIme4 zzw!_H`u*-|Zi@R%oc^kW%Bnj@bMGd7oEwgA9OeSZSi21P1Cu+zp@)>g;juEQt}Zum z)OwZ4=%Fk7=Vrx*)7RYsgI)eZedE5Ej_Tqi=k|Oa&2#{IVS^l6HJ{u|w7dBrnpBFc zUi)t?0P8FB7by$f^`lSu8BzZQ5CDb}Q$e(_cK$a9m!-r2_9n;Or*W~*XzacuwECV; z_bw3RsLECVAhL#RWf&M~cKK^QgBvAbxIdk8@#&vk3XFA50NAD6Y^AvEi^c+7U{P4M z#{OG)-|95*{+qHRLEo4UKbOz{&S^Lp$E@DozwuPOmUpn)od=4Mxne@l|AKJl0^5~U zINo8`K9YaqI%Z6eVk^_piSy1D#&q~H055Xcv--c-IE4y8!$}@bW1Tk&4|mo2-5{MQ ztYaN^OB?QYy+nndNMQ`-ac;E1c`60mR#Ot|>VWBDQ2H-$3l#VIoQU1Yw8Gzlw0kZkT_jmAnm?9W}B81r&*n&9c2#F@~ze~bS;`-un3v9QV zb9xhTkcO*$2SK^b|DsI-%|B>^UqE#?wxh)Gj}qR(In_^5YF}FZJG*&TBleI#dMg76}+FnW9)QTN68;4 zvb^~AU(5Kw-#EQ6Jd8#1wQ<{CR3ZmSjILmr8btUW+8eR!7Z6vS7su}E05n?_Nv}z? zyRQ!ZNDaeH0)+;^>v}lEK{8ayd328>t1mb$>5aW zL&`r>d&~JgiHg9SyG-eD1o<^|FwLx84H$do=8{wwBc~zt#(unK;20rMDOwFhk%dW2 zXgBYb07((8#_phVG*VD`!n)pSo3K=50$DZXBVE6LjMTE0rLeNZY_+0WnI6dh*G->p zsnTTiZvz-KCid8R=9ACiYut&VL0X4osDcX}dfc($2jiaJgzR($^np zVt^FdKZqxfz{Q_ECT^e)hQ4N6;)4Kz2=fUEg(Lt1oZ3~kbbM_j0l@kO)ygWt=q1OZ z9Uxti-FY;$0R*$i=nF_17Qk4S*)exS9e7H-6fx|YyJ~i=Gq%3xp&k~@Hj{b{&EMP2 zzY1;A-Ol+ncw_gQ0njLt`BS_Wll|hK&38KnNK}B`!LbRK>zb=Wb0=&@5Y5g^D zajbmpP5h@|^m1yz?(#Nu9(&Vh_fyme+=pf)n1!KTzy^EGu6fFL#cQuw&g{@W%W-_^ zD9C_+W6mcl&d*|(EH*d^WA=af*Wx?>dO)z&iYnB34X~9=Cgj2@ zcqX1>&*K9&6f*iUC0l}(ny7xIApYkptS3-kk_-^~ELlqMWPkVA9(#Wgu<^ySvG#&L z{W=z?iWiC43jn$df`XAsT`O;eAUoJ!(fJUDG2$qgmk47r6M0k$jXGft!z?ng(!jah zfbP`&Fs~zD-5d&;E6h?5=R+Ffl1JLUo`FjL*C9!6Jr`gVuo!2>X#01&5$f4p+e;yc z&!vZ!5^m#e*dN@y0jqfW1))B(|oTo^_YYJ4`Y6?Q1|h;lZrnN zeVUGrtXcL;MSRX_-tARXURdb1|E&Y;oqnl;*;BB3^7ToIIZW@ybmMZv@TqVoh@YP- zcBDyg$DWH(>^Bwd&YN9_*$Qi}8@CdTO7vu*4l0%cp7)e(wKeFl{5GEG)Ty}T0J$7C z6+GXr}~@zExNC^?!)PXCzSLM$;bpJTGe*Fh+&T629onc_RR$Ox$1vsf2OmKR0X zs>cyJl~{Jyce{?Rt_<@^!t(N0+vHe=WJML0+%)3%W{jLWFV!h#j9%(dIS^OhMij=C z`wa0n)_T|a^cLe8h@Y0P%5zX&Tr2H6ZX_i~KgIfXIEn8~897LVedod5ABO;hNYQYM zTBYA4_Vs~N#%1`hW!c%MotL1J<9?G}r8Dv*+F1UKFr{fsZcc1#fO;|k=0}YCm3=U0 z8TU+Tj3k!I{>}OaFt8|5CQL=z4+tS%Ij)s|?Lp0iO|WSQ7^mfXwn_ zBuxJ`D2GkBMmad!K1Jj_g^VSw2jH=-hSV&{C=#>3bUl{e9@5Hq>V8;UTiM~Uk$PK! zLOGJYoG5j4H$&mjflN@(=|CYCKMg$hcb-6^kbiI|T$iX$tXXX6Frn#iM#zksAg4Hyd}_|&3#R0hG#D=N@tr#>vBj#=l*YKyB-o@cY}CB}Kh>VIc9%5KsvmHaTz18m zF7)Wks>R-tWWFtDTKmWOw$^%rT$`@f|CY0)jHec>l1Lw^I})HmPhV1xtBNYq!?x1{6Vh81T7f%rsBa6(xUec%*mv;P)2Woj=d;`~v{ zLDB;a6?p6ES#7^JQ=WC^@=3k@Y7R5_ey9yuPF~(R0zM8TG64?)q5|MSJw2Kr^|mCi zpY7T#wUQ9nAmbUWT6&sj%&U(ipd%&!Ug|gad8$8Kjv1;B%>mfbZ+oqXzhzHIE`z1m za3;`L^=gDk zvu^)b_Gi_5?0)(4hbJdD_t@Xka?WbWhWPS>V}BBtSFv72m*rn;(V)9i*&wno(L~I5>IqVQZ)}f(w>^)#879ntpsf?|ki{0qj90e6Kc=wx^@%dalQEm1^DL z-@xgr>0(j9^HrZv2!#7+1kF43K=Em9ZEaR0n)l|)P+R*;FyY3QH?INs^rJ-ck3wmE zw})wTx?%bG&)x`*_!!lql0GD4p%Q+1J8~g2rDq((sezu0`K-)>YZEZwb=C6q=z6>- zbmI5q_Z>SU3PZ3!#)hIlz^cI2rMh?YcDmR&X-SBrIC&YE9+WjA8Z+ExUTukTTCBGf z8$SOsWgn4qT{;it>0abmQnM!IXo3k+d-{U=&j-M_CseTXk+xt$qN|s0tPB8t7G8AC za1>J{rv#gd|Eh9kM+uDL97!TW5Z$V; z1#>Phd=s)ZXxm>aa$nCSYU->9Zx88e7!~g}m}Jpnpj@hH*;Layh^OW>VaAW}F_2Mr-x<>MqVj0$;|$ipx0HSEtE1 zJ}a#XAZR?j_Jn}&9n^rzfM3>}Lejeqdh^?V8^p>`s_DY3N(CxAA>o$&i8AHe5+Bzi z3xY?axDgc<6-F;H^{X9{%>wf8s)~{IkD%mmk zZuE4Vm?<|e!-xd0y^$%#TO^=_+t*zWK=k;A~GN?&H5CjPcao4wj$w(XD@l$@Nb zsNtxw{Bmr3T!u8T48wpi{VeVCC~|C9gV~UU(H4=EnE30r)r$!<+C8I5@L;WEJp#?l=#6wy9woDPMtD+E-?TX!p=l7D_4i;WF8#vW? zoqGrz zKC9bL6}bWjC9?1)0n?nEiwaWg_W=4V_&iP-7G$p} z$$`YDutWRv9;j$4C@AFf6EHLDRocX|e&{bLL$N#?cZhioI8b(kyt8ug*wk{u9W45s29bYXZa}6ki z`{>bO(aSoHA&4;ql6k%)=CB`=UmX3$6mxh?{39rez$N&mwxXb~;GG3dw) zQ5Rt}C3E$^CauzHyP69^oBj0DsRprg(98Ja~* zP!>cZt0Nj&lDHer3RE}CX~itJ`%~x>#rL`XKtxHJ&;}q~WJVqTEInF=xWw{`u8MiF zc82o_{B(SnOp=b%54?eodMrY@$Mplb2Dnnv)mFl2WzV1G(&m6lyT_NctAqLJi+g~~ zAo2%xokh21e-g9w5`RM-wj!x%imG zs_$*h(gBDyNA~*l>l-PsnwrF{2}XN1$9HOqh}Vf$8Lb#C<`N>=1}+UN8>*o-m^_=z z0|n)L|1`>KpfV@NYriEGuS6I+lx7Zb84a6vj@xdZHyms5Yys46GPZZaY&rPd_SHu$ zGxb0hQ9}UD>{XS0+<6Yt_(*G_=mUxZ;G8^6ukNJHKZ{+Sc;GF}76RJ!*ccm%Tpw5_ zjTQ*dmR)UI1NOx@7x=ow3Xo-#>zj!|8zS>Jgn{WfQI9EmvprwGOFcu7U#*MbGFzx( zow{JPw(5^)40qmz0ycKJ9n$~RqXmr&9_M=WM1TRBK+10l4F13lLx{?-ir2AT*?(i* zDxZ)y0L(sFf14ky?EY*x+KKOdCZ@+49?DFieU1eJltVx(xB5MGrOo4H#d+|v8FGt~ z9u@83fvU9yvgg*G&zs`(>LY@2CKdI#UJI8!*Z3F2?Nv2(bkx(6*`Kr)LJkf(xXp^SvTq~5&?@nw5%E-zJFKrsbET@TuT|~j^*idW0A^= zR9FwXKHo?R>sgNyTng>$?R9-_DGrulYjmg!$L>AXv}PZ|r@hV0)T_#^AQzi|-^$^n zCEuOJ`1Z3ksHNpyi$bPYNkO&yd9Hs*j_tSn$0Gn?>O}_|V3UX2vjcKZ#n76yzgAR- zm+?5KR(FFrzfEeDF59Et=U0#%Rz`@+j>f>Ylr}ohnzRrPwA&E3vtr&0Z0++0snV!t zAhYzjR~PhGwQ_u)pus{dt@ASBx(+tlPJ18ZU^iaLs>bV^607tf_<+Aul@gdpA z_q6nm>P4R(W?7jL9BX%)7x|WQ@7Oev0XlROJ1)YzC1rOIUYzh_HrH!ELjgS4F>$w< z@Z6o^aInt1e_mB?vlUxI271JHs=m?@Aayyu)(NyYb={?q>^DcT3v`#Ti`r|JfDxBV z4op!MLr?FBaUO5pAN2OwYY=Q-O~EWMFBbuL*e9&D(eH-^r8RfR1j@)-Sb3~}{kbi! z0)ZM9zuw&Vf?Dz-(j>j7AAI-uOTI)8VGn z-ZfCcLx|rtm;Xg^v^2=DCPL4*5H3_&X}pdRTzCaqg*fhq$@4Qvh+WqqgbPMgkSZqg+2Nr$cHt$R`4Q`VxDG@-|z>Zga^Fr zOz>_NnZzwXJ^);P zH@%#3uU43l1hifrZL30!_n-X$kGQ}DvLG3WC<|6>mntw#af^!*TPa5G-)D}lW)C|) ze=px}gG}N+G5_awGQkPfw_exErQVAS>+3S$76smuJ48C$ohG)mwH1OO`G$UqPzhMl z0Z95mEL1Bzu<7bLEbB436I=U4)}Q%X3oL*TDd|+mB|+IMzoEU95N2bw$x_ zAF;8?v?tR~2JTUTbe-!6K_gFXNro5}`heKZnY~;F$Thi;A5yjwcz0O0cP#kQPeKbU z^hnB

?dxMd(WqO|%a@y1|f(*7L376n51rHOORROwJHA!WJwt1qiy2tc*DTj&x0| zCxbMX6;jjNAm6Wms5b2#r>DqelaSC$@85Z0nfJZi?@5Q?EI(G&>=fJf9ny`PI&8nv zihwr=|yA3mt8FYVu+_@R~X1VK=n^c;h(drw^sR%8LSGnNL%f)Jd&G+ zb-6C-K&XKX?cpXxm~!YGhKztOWu%N)a`M7n@PIE5FJ86|7yFAB1#0T*opccszE;}c zwHj-y2b<$cy#tRTXDc>8o^|R2BFVy{qWb`G0lnD-g5o|OEH-4<)>5CQ88MDgr9_|o z#00HeBwy@d4)}NmB>BC2_rP;+W;IuQBbnk(ay#PucbxeYE_h=5WRZvR;!J2Wmy0i* z?c50)`aOyyA5mTUST;fVG+OOO327mp-vhC9sXy@4@KQr$=Xe+5Z6ySoqCRAI` z9nyiTm8*?c8Z-mRqV)dYWijL$X)7BoiJX{RG(DAN-i(068wCiU?_MebhM{ealXJ-z zHsb{Xob#>Ea}BbGvSK(mI5TzTf_t7K>1mE+JN`$j0!u|jhvX(oZh}j`UC|8D0AUup zbV)6OO#}tS4tveJ#csa|0itrQ5Hv|s-tfGkm$E=Vu~r7G|H;xfwFpGp;b~a+S!3n0 zK8f_zHg*nT`Q2c1{u%N*t_g9aN8FM;ocPzN@oK=8KO5E>Fsbu5?>ZqRhWq5xhN{T1 zk_?w}?Qq;J5GbKuO$e%nc?bf-Kn&$g=jdJhc>1ZsI0z^oNUkXoOD1VuVPQ<=z`0oB z)%V0K2LhP3SKp_s%YD}(qn)F=ey|b&!TZP($HLA|C?g}&Gdz4D90EX{3bL(;R_VQ( z8uWO*+x+J8_|B#$4gm{>pVswsgCU9g4}ZP(a$&ja%^wf1RUqau90^d{kAelfL%Lb0 zDXOpN{;@r~x~~AK1o~mF)9)dJ0wTUv;%<(GJlocCo2|L{;Ji`~e|-`x#gCq;YxX(~ zCkKwKr8NmXkF(l$SB1SbVIbt13?8ubIK%xwcTK&N50!a;w?%Q5bki#bBIN+df2=VO zQJHj$teMKHuBHU$%NNo9$9%mzT28W&g2A_z=q{;_q@}56An5NOGY@eHfzH@t=B7v` z`zFM?Tys!;I;^AaGu_p8h-LR(e}X=;YgkjR16{hymO%Q7>|1}hR-K`|M|C*jd_(zs z%paDSoW2N^5q~Kn&^;LmWY7lJg#*O;%8d!i&SJ*;B#EN%w=gub=CzDBun<4No6C!E z__gqkoQz2sP?0pN5-O7zZ_KvFoFThTjj1{vNrV_bVqcMEJqrbV!s?7r5mZk%wKLH> z>wow!5PVtwq1$OmSywt+5UJkh-P_s+49ZPwvAlcQ`e2X@pZ9;rGC&MgFypctkpMOS|oxdX-P|HCc zXM-_8uoR;L=YD+-;jhip!}nzhhBxu7?|8J%XfFxG>Y2|uCc$x9Uyxv;D=9^xRnm_0 zM^OyP8x)!>_AOtF=#xFFcZ7)hH|E4?40613c@)|cEXXLjAq*q=GOs_64Szm8nw=gO z*Pi;7w$1G);NW5=hDlI;yUqMbzPt`U5E+U!%*9t@z z8IKOfTWi+>aUd8_`xt7ii^sq;gnn5i*&)o%=&E>P14irS~OcPYHZ-Mil86H!Ty9&iDfb)R51z(ACPejr5lf3g5K16TREzE5HF=Eyg=;1?o-uW4T~CO;a(=+!RP@APL| zm=4A04JwnD7iOFVB37>W97HmlC3v8`BygyOr0$a^k7FF-D#BFTtFdm0Tlo;Vn%>zZ3eN>@LB>lhN~qmGy~o@cn0hGGAp9{6GFN$2uDCnzQEr?9HS*G1q`6 PyD)gV`njxgN@xNADmAgr literal 5783 zcma)A2Q*w=*S=#IgJ6UZbw-O4;#H!@6eCFV5SQ_$eoLzga;Ha6%TVp($B*Pe18xBL!$43_FbM!e0U${R5M=}a<0ODx6pO_& zGc&^h01E&JIskhf0GJVgFqVOV0SZIIbh`+fPu75@_OQ#2ie&rDJfZGXmxdUwG99+E71!1d?5ycOY)2+sxba@*(W6I2MMXVh zu(>siw6wILCR+Q+cS)0IdFO&Wcgn|LFefMfP{Y&5$45ayVS);1 zZf>qH1f^(F*VNR!c#%+}+4KlU|zK?H2aOnfBgwmV)}c8zMi- zHS4rW^LT~^tPptWK9kTh+_S4}QSU-&D=%tWaBXj?|Cr12Sr7JC$P7JR=_65;B=4hbaldkcI;o2I1<*U`$*X+0WBkcDX0 z7Tr)5qM7-#*}{G_LOh*>P>{5Q3^#qNg7b8_cdt?N zw5spkC-Z?t6N@(VPhU-szRlTsu1zk|U0t8$KsHs9p(B4*IOc4yDj`|5G=b7AMp!QHZ$&cv9M7WvpDw=5y-*iXpCvE z)e%JH&*621(E0QDo*b0J9KI(H?J#~$Z|@Cu80IL?%VSsH{`3kzp)bcjVJAyt=h1_< z8?$Ixf2k{ffYP+87Z58v6sUX@;HZHr@S_AWARq!0DEmYb@P<(0+bF{!LIBYe2BbNv zVkReH$~0pBecepUs}VDrwoS2CkM-^&DRpV-thT+vA=JG7{U+-ygRg;j6LZiaJbE0^Cj#`>s^Nqdewt=#rfX*ee}!!J z349BK3aTfDAa_h+*3sbxw?!JWLX@@l5tyZD@A}|~2tXC8FcSS^ zsFQfs0qwkT7)-^uH8pH~v}jsrp=jR|reeNxG-q+nnxWaDI3z2*c(xP0@AB5_NMFtd zwP-e~hhczPUgXsL0?NL7=eCFf!n@RkZ?X-qMM)LajsDR49WmwL1^Zd4AbfZ-Y#kl$ z)fA`Or|~)GFIkxMmt3myYAT_>A*0`%(xp3=cpzdfg>=1MoptrJbrTiLrASWXhuwT< z$?{6_H-SUz1^Wf!z(h$nabSyX(aFXNv-rGKaJ#CiKv(!hxAXn0^k34gReBu{K12~~ zM(GrYR0@RH0HT@#;W`yj5QiG=G|qHIWOr?D#^`o-DreVt)r=Yu&2*GISTlQi%fe(g zXVLGrwQM|?tBiJlt7fQ^SA%j_~&+7wlvHs&b&|X?rLe9ana)AT*PL^@B;j zPz!~qr!A>2C99^^b1MHF4^ixD_+`23HgH;dR5>fFtUoIDJkwBr|IHSB%=qwYOI5#x zjWJnORBta)WHEOdfAgl*9H^Uu@8#ReOoRXww(1QpMHMtE>fJj&2<1_AW#x^rQ4hG^ zvnyY>r7w0G;{rWekpsQ+c$j8Cfs0X?@wEQu15i|_^Sl1Z?+63}Sv{}x3iK}2^b16Phi z**?gX#OgLa-Z(xL;%ZKL>uB#D-F!7AVYu@xsCE+qc5Kg5^)&&^LLgfQVHYVDsdy1G zkyIdzmkEpvqJes=*GxptZO#$2P|yd{z^!gMzZr+R^Ut%I&`)ce=;|ZXc?lC=4KG3U zLYzh6lm&lWHj0A4Ud{IGtc>4N<%=J#_A7X9Hqbi*3+!aKa(@Ed+_8B~)gt7?3d_nd zMV$zg(i9kqPU6jJkmI_ocUz-=o#8P$;r+f6#*H2rIE(V7)YiQYj55hwv4o@itKAUE z*XpX>e>T6E-LchZw6Mo*z_ys2Jy1!$opp7NjO@VM{c1lycj*xOgLwDGZhFaYVks~F zWn|tZe1~!TF83raW=72;-=x@jN}OM1W;zc?5yfuXDJN|V27OMf0&Aq?aHE)noRk6x z+#j_0W_%0xJ>T4fdt790)H(>|g}6uHmu0($gSlG3p;xd8W`$g4v_1LO-w4-ZG8Hr|(sgtty0N1$yRD>EM@g}b`%5QBV zU_pnb;l3!%0N}ilA+XA6E59{z7S#L?`}dywP5Qx~PrZzS6`)zASJkOkXCC=Y1uXP% zA0gVFx5e7vg3|UFSW-!$^BIYgNdRW}%S|uO(*q*V>hypZ7yAm*`>aq~r|)Ua%D*Mu z>3%!=Gq?9%CW~J2)dV9kFVU+Dv49744C{-qeU%D@sJ&4x7LEw)&$Wu5e$$VLz5d|X z+KHwe-c+wk&o)FjM6&#T%R;?-m!7GmzkI?+)qKFN@-e(op=&g8N6P*BcQ%*LzlM@y z9NMp+!=D}_+Q~&Kd4J;6a9Zt0F^A7|_L6rbGuFm;Bqf@(E#L!74HYVR1Gqalt^A`e zzlZ1H8EbO&;L^2=E4LLVjfdL3Ys*UFm%Ob_|2ON?VE>2V!=0Z~b)0iy+*Ma9!0+1M zwe5b{O+IEDq%K^(jiuMX)rCn-kD{Z0Qqb1aSK#iD)OOHCrz;Tuy%?WMGcgaQJ-MAP zPj_^5Xs8DJ(3wxa+$>d;I3~Je6}xQ=Ru=>pPhCgKjItS4|FI)3I$drK5t%;%USYl{|WFi)eR*W#?q{`ULV$&k@$f7f7oF9^MvR-0F}sR{0}esSZzpVbR@ z(q+XRzokc$R%=Ja=IOlNhH$x=*T$$)3%#d5OB_(8E=1xgICukQ+tW&co50u2QoY?( z6K|;FgS?f!%3sa6i5nFE1-r4|4~eI8Cb$_vCl8m8#f5PPEvWEUT^$p%4(Sz zXyC;rClm(Pflg3&^UpI{%ZC@7l}e81D39-pZG9Q!Ff{FS*V-SUacZ={iD!)|J2!bm z-^6k28mXS&g*3&aLaI+#rNh~P*p0}$HwlYio@r#AR2l}&kxCb*Ud%==!>v(mDP;Ev ze0^K0SorwZ0$s<*=_H)x!~3GClXds#%inDm9t!89zEBH~sM8bg1}hk++ug;#&5(eg z;KGoj6glmwa`#;P<&R^%Y%B>hIydK4+#X205p8QHcO?bwM9DQ&(9>U<6GU*;jZ8kalIxD)a%o54$ zXI=NN*MD0N_qP1M49y!h$krdq5742X^0%Ty6SXEob2p_rl$-UW*X{Uax5I~4X`eGx8Va4AtO>4V*qYFWPD#A zc)8+mvSy83IA+{c8N0pH$1~70wEGrRIMh4J=6kErHP{mMWydS6KCBy(V}Z;cRT^s_9Ee2d$#_~qZDIuIOn(K>yf0-+U0MYyJR4qde4wYzuH9lLbv?opGX z@|X{f3BfFZV?3XS2+x_c!D(g47bh zGJsloSO_q9V)Fo>#)W2DAizU@ZM4JmS-g!JDI#-{$B>DmXH?(~I^QFgf)n6sN0}k} zKjTTo+>oA{HsbycyLT@f53?UoZ7zukzwg3`aLr$GZU(nu^e zr#!YeW)D~_e89w_gFzWdX%C5q7BwdHl5)owm;?&kh;fLK^fAql6kC3cnY!_Zci}2> zQmE#`XU;nx*KWOchf%=t%#I%2O7T>ge%<>Gw-DC+juboGU|>1lx+z{GUJ_qu$c6gG z-=V<8sus0%;EQAUNe&ZF0Pm3aDNxm4&{-GKTcIbSL3)033@@QCRjdg%p& z@+K{>tX#kHon}fpydMk(FSTE33VNvL=Ibl#*U9|B0Xo01u&`A|cA^&y-v@YgKRP&e z@c)hMTK+*UUH>54=6{gS;6Dg=3=OXsExEwKM-ipJN0dxhWk$sXsy_~M$pUP@B7G@Z z09zS(kF%$uI*@@Zs>)AfG~V7$EmP*C;^ocaWl?XR3%;ty#htpvuIk~9>2aWF?bB4q zGGb9*mgK?J#kG(qG3%2@kYGf5SaRGCY3@d$v!tl)oXvsaEt9 zUg}aHL&e|lQUP$MGPTSR#K$QFgJYuv5LhUX!Ewz*7STe@#76^VBLBLpC#KLtH_+i4 z6qs;;`20=M9WW*s#+!(T@dDnye6FMTe_bt2x=sJXm2G${#WT*-lpECp^#KI!?ep^U z^Ug}4G-rkG;0;=IKLfeZSt+0|Oh_Scl2Ay44L+U88PKf0z%SFI`lG@s@j@{3rxSrI zXYdarCk3u7>-N6_9KFA4_y0*>__V$;u_&{-=PWXTNs;-4lU&2!3d2LZJSeZa*jB zcw03iM|{P!Tfh}O+oH4eDt*K$B%N8QTi4Sz|KPID51GcMrKo`qcPs-8dMNpaD$!;(>_7E3h3u^$cI0!QvqQ!oM&K) z-wr8ZK1B~y7jssaQC|xo4B1|(OwQ^I95;KUx8SQC=uck)?1Pm&iRGS|?9-3AWJ=N<+N$}f z=`Suk-}r0zF%(@cqh6pN{MF~~8;g^?(RxQ4pGi@P5N1Q}{v}aWC_C!(i};_`S2W{H zgT$vz=B60fczC>7FB0;1hw5X3@d-jRl{HS#8b17aaaR?vvv0c@7Nhb)`0*Lul4ib{ zksK;K(3>j=h8E+=zkUKBUJS6i_@% diff --git a/icons/obj/structures/machinery/biogenerator.dmi b/icons/obj/structures/machinery/biogenerator.dmi index c65a9571b09735779bca888bec180c969d8d34c6..373b40e7d40d7cea42d9d74eead363e3b014bd30 100644 GIT binary patch delta 1746 zcmY*ZX;hO37X1K2gapDSg@OsoFhE%n!j>2zM8U9?MJPg9#VU$|EE;6}fYiDW45-Lj zQJJEx6vg5QO8C$qSXPw*EV2YJ1f>{AfB;#(L1#Iq_t$;*yz|aI_r3ELPy?DJ=AhEw zgZx9iIyyRNf&2D+GML{ks zC6b(o6lbTsVSwI`(fSI7`!=IIM=Y=1x;A)(nTzL|Z%C+3X_FBD|@=UhaN-P#6t$ zG|FMOGlAqta3SKI9Pk7@o=6~ixS}-B>L`>tN_`9VTcX2W0;~65DIekPbr|Ra0QiX6 zAYV&MOCwNE>(G}#I!cX#LE50U;sFXZfKp8V1Fix90Hss=1400gxi?3)ii@RCDrlv} z)ia^u&&G%Jh>IThxOhf99Uep&D+59nJ<8yCa}xj{JbXN9p=W9qt8*jA!VJ!_y@;>c zwO@LFVX37v^3Y|NoG@C<(9C>wbKwL9HRcDw&(CnWH**m*ifJz6`=>OAz6?8XU~~lQo+W$te#nxIbBl`PQp1Nu zy_LLqnrS@pEI-~s#h8DK5%glm3OeO#QI@KxHOE@T7;jaMI?=-~i)y{9bjf$YNY-G) zk5?rTM@C(3%KA;#ABy^z>*C0|hJ<``uG6D-R6_5{0}dzp*D_*9FgQ&35XMdB1>P+< zG^}wbT^#XKd}x27D(RQ1eVpkymyK^+Wp+uGX9^DHr-KFOWNy4@(is}({hQM#pYCh# z;$KR7p7!>l;My=t&~J@l@Jw?aE6&BeNmn9}a}%9a zj5%Z(f5~oDizl3tZARMY8b6%mfN*w+IjjOHQcrykjty+1cmJ4t`|SenRQ5#7y|==( zP0QQ2Z%U#-J=^GuYjFfpa`A#HS(3)M zrq(E;g4>(nki4J`8XsAP3;hov=iN6H3OmOy2t;j6e%FfZuvvdU-rKNnE|)%!jE5@i0TF4ua4oA#Qs)QGu@ z8Ns~XELzUEnj25D07;|biN2N1`{nDXs)bjkePneaW)CJS%3RDZ zs-G|_U(Oi&9z#D+cW~*auGuG}qgNIZX4<5^>y)HENOc(+A&o~mwC3p#a3B^mr0m{l z)b=dWI18LQYD*=xbQywV6~R<&&(yIKAB&k%>gRKakau%6n3#|v>3$nU*YW1$LrHH*BF;w$e*Y!{R)Muey zPx++lfS(3+sy*AJrqbeI%V5H3SkSdWy-;Z1J=i49<-VH#Ft;|B_zvGnVYfh@Pk+Xt zrQ{>+!s8^zr909hRDj%MS}?!ij+-2xoG}-bkC)LWV=JUf;K^Cp{~hn99fd6~ia<3n a9(CQuc9*IVZR`C4K3)Ny+Zy-875*EK>{<)} delta 1389 zcmV-z1(N#C4(kh$BYyyaP)t-sz`(#&RaG%DF-b{D3=9kaf_(syi~ysZ0Kd2Z*3LRQ zIu;fd3@$A|KtNnvTv=IJ3|xH-W{nI@X-Zno93QTR&e!m0f#vNsXJT| z#oZI(000DkNkli?(-TGR3HnV8RSZWoImsuqjeoB3SKCewI4eEG9~QA^E}(QrI} zl8l7^Ldx)XG6w#8hE>Jm5pdNI+cm3rJOZv7?(XZQ|97VvG>=EXRYNMXJX1e1Qzg@) z%u}^0#giE0WiDHJF59`3MLRD5*9}>z*!edt3Vi|1&nM`{OLKwCJSVt>e3s}HWTjby zT18m}NaDCqOT~HN#Y=*J=VhJihbT2j?XLNkntMR)aUzO)!Op7&^T*Fhy@)KWo^!<~ ztJO+y^YaQyY3@;VyQZ`C+B75&Lh$p`4(8cui}eZ~AFBp)lX7$2(0C7>xA^Y~Sh;Rk z+XYU*%2mT!z@g~`ffa|9S`#v_)T#SH6$%PsVk0QOJjXPA=Xt;T8Z$MQajf7WQ zyou^%J{k*;lIe7sM6jX$5jPJNY9z((|AHS3elYmK-kjb4eMdi7wEH`nm+icpe z0Z@Ne3xIGCz~(Rjay+=jFh2SiBLyJ{|@@{2(x_u71$X-wn;Z{oT;q+use%+x(!DzZ;sf z`@i4^gCFGfe-!8Ue-t;b?cfLdb9Vn1{9vdrQtbXO_`%=@gCFe8+5O-5@Pml{y4w7o zuYar>>gwal^MAhn(fB)ffve8{`TEDmmOrQ;^qUWV^ze_!1*+%#s`G&!{t;PWxA{IN z?%^LX!`f-S&xQN=$KVHpAFT2H;dt1$`MtNdcK=6k^!y$C-FsCne(wZ(a{T=6{%)@p zcvMT=U-Wx#s@nWtJHK##cK;Xr;Lx1k|54n$wu2w+&)NN7@PnbgNOAi=G9R=5qx13l zzrOo__pkgPnUC53QN`~6=zxCy&fEXd0h#?D9dOwBKgvHk1srnzkMfUH4L$!y`A3Hh z9CrSX@{djdhn)YT{G;0r4mkfu`A5ec9B%%P@{cY7dHtV5Kwkex2W0ktbU-)%w?7{(+lmKY4iHZx{D?^D z2tpu`{qP&t%^(oo9Pm40FF*K+?(2?C2xQmqAr{vD*B|&f`MN#wck}jwKptn7TN|P? z6c1{~AR+^?CVbZ}j~X;sG?n}Q(4;?WR^;*U6s|G+$e?Rh${$qBHb@rP{Vn5e>*S9_ z)*4|GJ?pW(_ZsfItUj2@iyRhyA&10SCpT?}M=A}JtawcOzMLl%11Pn>JMv5P5`KA-CRMPq;P-D`cXpQs!a zQ+Sn3db>9qWqVjrfG6>gq8RVlGmf>pyLRzZopC%Rvo68+=Fpd?hrT{NgnxSIucwE; z{RuUA@cprlYo89muu@j1(&O>os&jD(j``D{Ew7{~m>A68<9bbyfBZ3FaMmNVDg`ys z!)@GBek1le0WZzvQSTY%cCq=Q9xex*%BCHlyq|crTrBcrt)TX|zfPKpH=l{)FVDII zzfu2SX~H{#KSg0d?CtBa-20l+i>JG5MJKu>uSe7(I9)4`kQ;$&F*1uq>UfovA-hQ4 zZgE1QoL=;^SlxTt$ufG*R@hpL^Hw)fVHn9Q)4Yb8iW; zwvOmAjgSj_T}^DUL5YtNG|z~B(lU6zK6e}b@O)K8Pi@ffr?!P!x2MGW`*Ajk@i{_i zjPHAu*|%;GER!?Som$%Z1b?;AW8Vmo-t>b2;(jFUsCfjK&a*aw~anB0$1 z63|<5WeZmopo50&-p?ErSH?WF>^bamq4M{^kfcANdL8Sp@9(HLxH@Vy*3DiL89rC3 z{Xj+iK+xc2p^hiDujB+e-c;=$y1I0N+W+?Q*86j_UTbG{UPO8CiQN~;&u*#16p2cu zjFAf;52-JxMf+N!zh-rL*h>FqbKb|{mGe~Lsj3{;ZTgpFMZso)j`NPw?Lam?ttn2S-j@G8qtEYaGsCuDqZF<4T;TS zVWauP#00a{*zWCZUiOwtP@&{B9#cd_>%|_;AHgCJ9}Ta(|FH)GX}fX867^@(fV5#| zj#4jMsdNT^ie;?Xa2d&*HRCqg&(}e1A%P3^2OfB7bHp#EH1q?FSaOI3fEpyOv*;l zIgT|;=&Uktl#`xb9Tpb&ah3IH>7~~`2t+aAxD?#!>&g6`&X>+ybc#<%Dvr=%EmuW) z)8j??!|Phu8yS)GS^sD2I98iA3gD*7Z2%*QO}mH}WHWmTF{sH#;^HkPgY@MNFq^1O zIYV0dgy0m&_Ud!lyF#Wup@au%i5Q1V#%3;-pEs0=jP@F_4i%gFM|Xb$D%`0(u)TJC zlda*QKe>KAS7Kz9A#DdGta!wg=8N7hC0g9!>+pa%u-LPNJ=BUI=K~V1dxhSJbeg?E zd>4-xz+B(U0ZaTg;ZIFmfW#1P^83}wGs1fy!>YD1AHb4@d@Esp1KHp`;fpsB2B;--On<%c$&zqbXsPQ`4dwKC zyLv@&$){TDe;!^uY^0{st68rtjr>{revypDIlMu!Xe(~l&OzGxa;DBa-u%j*&j@vT z^Pt2i_}2EL&A-k7BC$YOm6qChHuNfI+nT-lnpF`Lzaext(O5&`C@_GN7iw7L3MZ2= z8Ckdngfwc3{oc*)WKjRN$gw!hEt8=k@sdQN5Uk|ls0-%%cYX8-w{Fs`MW0~h5Nz5X znZRQAr?w_(vDexIdNt`c==ZG}3q=$?hR=u39LAgzyM}o@^P*a^+@Zy$-+fUh_*VO7 zLvOf|{z;$R5=S78&rP-t?DV+CNk706s$f=}WTaW6w!1#~=NrJxxVQZcYyaxOg*g;^ zT{_vQP(^J4@WF`&1O&7aZdq1j0#SuftR=BQAxU*_v4z3Nd5-m{0r}^EQD4daiwuD2 zq$e?G*xw6NrQ)*}uEb^FI2pz%<66#L$Kd@xJ~*kUsTDOgs;>}HDUu=<=M0+&-ozYp zV@>L|l@j{uU;G} z0B}J|=`=#=SZ_^v>V4-6tj9%!p?llAArWJdkR=^^d;9y)cKraI!#^HO!3=tGY{@7M`T*>*>*Ha-ydH35%t>LVa#_$@+l|7J%$1;LB zF4+v159~v6qx7CEjhnS@?o5-1xTk}ITM{iC8sP!qD(%N%J_+R;&$k52RtbFTBjU`8 zj}-<2A1RIP_qO)@2m&{SG>+8`Buk24S=UX-dx1ZdPN*g4v-LEcTm0;wQ5(W{&+US4 z=fq!eep2g=l4K3Ry+!P`e^L);I;_Y}Gf0>b0qOh5m(;a(VTI9QMpnAcm=<-=`~jya zh%yWoLt`-%2p{B_`VqdqERCR&hK4Ig@4Qw8>WE0&R0J~kJlA)+x4L2ZW9OkwZ-8nP z?m5c$VY?1!WOD#(iV|~-_~$IDjGp$d zAjo*KTz4K?zIE7Jj*~T##AKb3lu^Zm5H*sK@7GS=8_vgV+BlDX?+I>_cVXB6^y^&& zruxZ)84mBi4%)ywx`C0nPU@%p5s~qpGP0qII!&L0n&4dcAMjhz@Z&`Q0*d^IjV2gt8DBm2brGAXk zt4rSSjM_qN{QQ;k7C>b51W6X>WNiip zO$4Nljg5tIsuUP8Th)B_OBC|pqIm}OXM0vcQik{2!7^@Z&lAGifI{Q$W`r8yig!>q zpGHS^kSI9A+>T7r&<{E4WrMi5G-^u=BN*pYgNfXA8SGl;XwLaQ^0T-GRSM*G+|%JSVi~<^DwwNJY+#JNSN+3Ykl`^56Qdudmg@ z38Y+XX;_na!0VLMtaeWGF*@%-tKpMp#)p;t?$^l>CdIX+7IBmiJ=w(KsGU#uJ7>62 z4q(0#OQjMT!#QWec6Nmg!<4eNDAJbaIK3J9BDeY@fk+Y2lA0?_s6gc-te_J)vuKzD z(X_w@Wlle(_UYW@Chx$KIONb z1uYt32L1Ly6Zxx$yx_huy^W3V^sUxny?6aDMu+Ktwx2k;EGLLbs9veP($5Fj^~=K% zX^Aie723RRo!7l}@7_?UG(3GR8gBH`a7-R>x;&_0Gx3pqsgk@mB{cfHxzE-fn3Q zTP~V$tOazpq*~rJw#N@niDBKxx9Rg^uR8hrM$Dpls{64XOc3uJzOTIhJ$~)@7B}UR zsHG-nYe1d5J=b^=x|(eL*362Vtr^+Snd?@iyLY|Ky(X`!oLQC|uWk@Z zU+p%$X-ejbI%pQn#-B{iIQ7`+blr;fl46_@?l*VFUl%EZKKPUQq7IW887W)Pt3|Va z#B~@73#qa7p#|Tu%{z6Xz&iTk`J%L)#@=jkC|~N=DMOJQmS6!^#QxC{fo@_Gb+~7v zyTmWaW35kD*llUB_>D0NU=dR_>p?HkmA*Q$({HD=vlm;BKp-zcD`;qF$miYPgZ^XB z9`l6H7j9~5YJ!Vl=4JCToo;*_aqy6E-T}FBg#BN07tMO(MFYm)Xx@xc#ysjs%>Tcm>(~nu>P@LDw>!>l2Eu*n9J9RnR6EH*!r#s4MjPP0Hc9Ns zLo(3^0y!v?D=9-QWLxcRAm;U6-R$+%7QY9?rx%QQt|aG z#6P1fGG7v`{^({^C7ZZB7cyHv?~a&el@~vKRvw{sHWl|7qkeKmwJ<4uNiBtTf_UO zomTAjZpCoYa<;bo6c*9m&_PywXIN%feg3{T+}HcvjdAP*NttgXL__IR5ZAf1M?ExU z>41jW;RBtBr&~6%D4kfMuz_GjquY5H9xtj4iQ|(-k2%FwY zZ}ETV`@kU-!QDuWVb6koXa8~P0A?bqF>F2GO$PY-aNp)U!01J3$MP7HNj)qI?<0zu_1SH>J<%8NF<%P7#?l#%^wNg-2;?wJ& zk$XNGI<9Sf1U*Ex}usb-(?rcqse&SPNwVQbn z;{9hd6ozE4GX-)K^Ax8G%gg2KD$2_Zoktrc;SDQyI-cdc{Vd9jK*}%^F%k>#V_@a& zbv%W1=JBxvHC>n2RG+Fpr|rnosswR@SKz}6^*+l5-1xI87Wu^NKy|!z+`{K^rNBq7wNAbLj z$h9+q`K>(tcNlWNeJ&}7r0mD>u!p9^PVHiLU$pQ)x#z&iqMy!hB6lWhdp0`uwc`)7 zrF(gMFIdP58X>Jhnsnddlh=};R=zLA%d<*XP?khq#gHvmakWRp#wMC{(Gj& zWT+gBDMB9M-kjfC>t6C&udZfUL9k7NV`=G_B@Npo)^{iRBuJy`FkEQ@s*pI$G3)T2 zPu#+X3+ZrtG*8`SJ8QY2lIVK*NG0eIa60yN@WEq6rH2GxI9&aC^@Y@LPZNX?UNDYv zEdW2ckL$>-k9SdH=3YH&i$n?tJUeL$9B7dEX>2-U{MXKmV(cLHpen(XLoi<2*rXKY zI(d49&_-RzsW|q7FXkj}t=9^TBU5zqLW5*DsO}WCwmSHcdWJv-6wq^pw2)%!^*uk; zp~Tj!L9fcCceubXL(t1**gj-2KOt|0P)7!ZhyI-kJNG{mjfcO+iK!?m=7@RKe;UDo z2Yc(k-N+z#g2NK9c?O9`m31GlT!;ng)HUz*p zi^eKSX+CpnJLyuSX+nW!h>6)*lV^89&sAiZ^ajuGzb=x`LV=Uv;plj} z?qt9=`$ZmbXXfpWPmSax#3a) zFQ`*Nevbel1rqUK`}Yv=3Z8c!&vi#O?k(l^gMCw57%pl4h6l2te1;MsWQ&Ndx~ZV`=u@Lfg3Ak9&xQOP;>&`Dtq zG@VnYmoVMAQV4vbK~W!It4=43xN7lys5$Pr_!ur>5l2#x*uiATpL|xIb`~|_KMhCX z|9Q0kTZ@m+)!n5nk1n3m%ed@m5bgF~(}zagXYOdf*&Dm|9JrD22l|w}62*ZwcKe&o z)W4Q_7AubP<{NBKqQ~F#j1>gUz&|_S%m779JL}uC`Sqv43lCVwa(3)c>`un+|;5{ORggRV>YV0azoWl7vK2c6}%f4xKF}xwEDb^;5EscW(Z_IeGuG^8a?MUl}lW z`sBEvNQ-f@+T%4|l-sE?3VQ&|ZO5QdUtfJF{ame}A4KOSJCMV7Ei8{#4Va#41CiP6 z?%2-Cp~{(s#+dAsyzjaCuf*i zJsQ4xOiXR}wDB-zKW60mBIcq~naf_ofS@2zm2Az>z{bJYmj1&!eWE-&PQu7X*o~%2 zi++@D4Ub|OtnYyCA<``L!Cs?}z*)AxzyIzrmzy_ZLxzgJesxfpn73CZ-+A3B?$H^2 zn*EKLHC<&I7a9NVNXt^d1qbqhcda5OqbOXK zHlN&(KcVDhl&P+66qCie`K;~DGK%lNLwO(z@IX&6zSovN=W%pW)stps3|KSz*=&0H+XE zOrDI9g!^%Q(+>pW&vB-wZ1s4Q<1xg_hd$t)dE^VS%F#j4sz6clto#}59oZNGjc4w<7?wx8 zdpCgpDi=_ZXLZ|i5MM>6aR-iO$-zr6e_f?mVw0A>_2RV`C_M5ir(_MD<-$6gj<0gv z(a~IK*8JfSj?D|0zygeGL#wN<-t9&B@m4_EA+oUlm+vlr6(z948r;z)INb|;OnG0K zZOWTj<6$V3(k8|W9Fg8Z1Z}&uU;N~MHl_btjmv*%{6P}&*>R<>6)(*OCt6Ss-qH$< zFi86(ZegvLy_Ox@w5k1+Za?UrO2C0fA>3&^g3LW0gbUJ3;;!z)+z~I}bm0|jj^?8} zkHZ|4?ARldN^_;Ajr&LJDre=kV^Uy46BG7>ieg&W7e7#*eFxJu8DUrM0kCKx#~0h; z(vyF2%ovA#`jPmHuhf7?kN-6w_MuM-rK|xpz^EA zE$YPWmp=Q=ty1^h-CkkF%I5T}jTU`P&=9(Y4e4H10iy%*wgPdBKhMAsS^>OQ zfgbX3?H*^>*~WnMrpF(;J`zK8bxYu!#q9CGs*{7>@d0Cba6Y+ODm8kwG8EJCtn%G* z?*t&gLYtR3a`qWmtq4=uvG0KGC{}6mG&GxQx1H(Rd=}}M;F4jFD4A-gccNRljB_SG zf?B~gi$ZTcG&wu-nh5oDCb(!JO-Bvx_aosYP!g^jhc%|oZtxWO1xKZ0$-SORT^d6a=)XOSBM-anIK)IVGL|_}^}t&+rJ&%fii*ly z3WquR+FjP#I|bxHHQZ+wvh>uaxOA>@rn0GMH}1yH_hD(n>Q&-UUFlSBE#d^X7w67_ zV^9tYhKtdYY!7@REV+MQ@lUpA@!6XE4jA{twr!q0z{HLP+`+82&>h6DJ~p9GhGN0{ z$r;B+FSq&LD-^qmXU4nPo9<$K0^56N3}9%;P}VxI7F(K;#8P@(9@|g3%3tWgN#Q9c zUOJe8^V5qWUEZv7b#6J@U52g!#8OnZnNc)ikWkUPiz3Y%hYLKffMb7WPYSwE%J;OY zyWtzt^sRyBK<@UGec@#s@9hV^j0OzRa5gBEdLv0!ikrtm#Gz*L zUNo!?4Gf&2j#4R0gnauk%j(H_4lvt9~?2U>a`L%8&rS4s-WXB%%{X#E~K>2c*eEVg*% zAPwu0bsFw&k1KS|u;S~nSiS}R03_Xd#@*s&9V-Q=8ixh4z3Ncy8~oj!w-IE#9!c0H z(!b7+IpTf%`2@wwgI&OsfyX-c_*m$~avtm|D!zZYpkL3@5F4<%VtV-O5p`g*{OA4q zG%ExG>Kfj+GUQkV{PG16W7Tenl5QUK^rQ<-Wm9qTEs~q)d+wg-{+sE(=DO~l#&h?~ z;q0`Rr7s=Gyt++}sfB)P<>>}&Fh8XRSJeOINK8zuyW>r8`T+xgkA6?5>r;cg|od%Fqb(?ug@Y^ zD3Wj#gY!h*jeg9;rA>L$GTI2_@o5S*7Yq)qWt7;EnVNb-H?V>W^MRyeU2Z2%cHNSi zn^zi`646$uOGWvGM&(uK^4hczdspVLP|~R=n-H8wV$?3B54~ zSx3<19|+Gl$8qo~B$j$wAYnl#xu9uhdZKeLow$7Dwg!LMU#NgsN{ICS_{hyhRoW77LtigZDmGANa)SSqVCC**BN@trFxQCE(OSX}Nj*8`E2Z;6n_OT;_Mavp_NoNseOCGt4cu(2`(Mco@YN<;kdRqaoR1*0Csu(%rdGy z`L=eH#SJ;CmF^MFjw8agS-UA49uQi5dDSiYOZ74Czz)?y<+1jaWI86Fwz}JEGmK3u?>`SWYgIp2?AUcTe-_&E z=(hGvMn-BtaF5k&kd?M4jabTiA{jSm?DL1wUznL!nbRA#3%`yu>^N$Q7>V(1rssdw z@;4qmv5*RX&lL~U1*_faLfphfJCKpRe-rhCq7QJ-cDxhFX@mbj<^O|=@GqwSzqB~n z)Ikp0;?iL?``X^`Q#^LJTg*RnvX0{I>gpQTP6WT=aaWZt_iW!g$z5%jKtSEO7C}Kl zpI$B}qN0gLG%BnN^a8@`lJD8I4-U;a?EV+$WpN*FGo8PQ!_!s0vs;-%*riv&o04#} z_m7<5(O`wk4}at+^{CB4JEJQrxr%>I2ho66Nc!@69}kMCQ9csuS!>k9f$`G9+6YH~(@Ui~MoV0R=)AL-wh(1HpyxoiPs`L5rm>b$K!L9E> zt;9A@7@;yru-TxdETqEwtsRTubCnCGuvj2J9WM!7{;T`Ifdfkor0jjRJg>%4j{_Ot zy}9}2S0NwXb*)=2p}gAp{UBqG^O}!W8%Vq?DUoODhq(@k{!azlbL>24B>7R6A|^q$ zo6sN4^L!1e5m)>QuW~cliP+=-GrmvnX^Stu9Ji6{Ak33U|tsO=A=klJ$ohg ztm|t3XThYZ@J!@p!OyKG0)9?)b(k8ethQhuSqc?J6Bkn~rW8OQaE3|=Y~rjsJ>Q^G z<{U=U-z}`8XW1^FF$8(OP_88b2q-^%b)uY1x4r^wH^jB45XnB3K3orb9DZPhh7aIw zmP6Es@ppKHX6tMsscU%C$Ycv^s*nv&K+J9I(t{({7tqbTV-3#n>8Sz5e%&YGW}6=` zcsBbKgTFH<)x5Y(n4=4yJLodFI}GQ8V}ygN=`{cjd1aNDw_d?n zX$%0My}q}IYvQfTZ+Vv!p2^+mpqz=>{25n206(qjHGnr0=_}$GfoRFFdp@=^Jh2o} ztJArlQJ+8#1p0+e&mvaHpa~Yq<2~_(OzibM>4O2rkyXn`4nYmLGO@~nt!`ono+mH& zpd7sFhzF?*3aBZ|ma&hU6?ggLPqJD2FCuZ@2sqqTYR!T+$OmQ2a$++ zCb8A^nhsyZFC!eiq69=5chXe+c$GJYwm^kGd|8EG7QypsnBt$I)yT;pWH~A3ZZ=Ig zAP+;{ui{b(od{TuCVx!`uDC5&Q#i}%p!o`eCELMeHDn=m<+Ffsk;fS%n7PQU8Me!K zk6>l_CT8H*z&qk2uTlr^;~mx6x8*8Nan)oi6AW%2G!8|ns{#boyl$wmTS1qqAV}6Hq*9<9bP%EJ>e9Q zx%+t36>PAM*Z2!Rt)5cIgwxc_T9e%C0^aF4)!B;o8$0**B;O#u^Gf_(+gY1FmZw`z z0YyyE8}q+?y36zZDyl&+?|9T4O@E!e&nEI!J2a2i?Oa9MZHlmYnh$^w($6rDs(rt^x%ZmbfXV~&#s)< zxuVK{(H%EpS?}QVx>@$1*}R}5mQjhslC&EHUnMp0{;=baGlggAzAQ$!=ldnp>rzLK z>}xYBN7zrKER|TjnJ)YUoKjrE#f4gqPd4!RwsyCtdpDHM=rw$OaluTP1XBp=^Zry+ z3$%)8<3l{GKBcbPmbZm$J2eS%SsTK>cT;oEUc*s9uPZsiY#o)eO8AM3>3Vg=r`IY_ zd0s^+sYFt4d?7Bhp-snRrFP)zXd1LS}f|$ zS18MJ4crFye5kaSuqUw3pp`ksez2qJ)ZGKsIsMyQVgME>a0&J`Q+bZXw_O%RiR5-S4JAMen$M;76uZSt6hVS3h(|-@4 z{+}qm)ZsDrDo&~OSWH={7kwnEx*bynK-DL$PsIQj+XGDp{uSc*C2CauE{3c?&q5^a z?JxY&T*EiYQ}X_W#)*<~9&by+Il@-62-8(PN4DR*QD<=X)g9$^#|6B_2%H#6qTz z`4DkLG)(`(($ZNz+RcHF=5zC&OjUp9)m`ugmV^NCK8>2*wDt8mTg=<8glfz0Ui*s# zB07;WlXMsWS^DCU5O3mhI=Q#8s8|Z8WRV_jyOAONa#O(EN)^6~^#t~!lp5qYo)XIA z?>X)~L17C&a@gbrkt^jn&Lg*a{cApGd>#xD|29+bl5Q@Gp*mTwJkm1`gEO+O2cJ*g z&b@j79IkNOCguo*0keasY+Fu^zxyVh^Zxx&c29{*pP=h??mH8nGOFOicL;%P%UKSc zmf^med++jOef893aH`P5h$VI%_%tcB_qkTU@~HMr%PFr50~Z9>@JmoZ5pB|7*N7S4 z@V01onH6Xz$=vw|_6_JMj}O3hJIk<1lAYx-f1|@H_8}u~FF9FhDq3(6QXgG0sod#TU6r^e?ADfwlEL#X|ULVe>cf{m`!-vVPn8&v1761D&v- z#W>v!4)#4H{iT}8AFIT)e(%IJ{YClp-@o*tQvvwE!m640O7oR1f3(=6Js9QTbWu9j?LiGG3b_ z4?E=b4du6S3c%^(Rj6|o5cd||*d6y;cgXvza${<@I^A~=IqM(K@B}@G9u>crVQ0R> zj;sRb_KIqw|1xT66&vK&{o)9RKe@sTF;h6dpeNce`S1G^up+&D3&cp@1L@pQ}T{{w+5~E zbD#Gp{<}}xF$EyOag#+m47`~~zkH9GNlF0Zec9}z|8-h^GBtPoiaKiBolMyJ70A=} z)cHRdUj0u&o(&s@u(#b+CSbdqMw63LjgQ{lItR|v8n=4}r z$lPd>qrf&gBRLZF(`>7lXkaX~z)m~{NZ%J|_qVRDl-JnQwD0!)cKi|uCB+`Im*EL% z&=EyT786=Af9!VBJ_&GLniG8S7spuu_{{u{8aSAP^bCu&IwSK*v@^QxE(zlsb`03? zl^Fbu%gd=c_*FhxIMQko^)nT!sd%AY<2pbD#&bJ68CB9mY{LkJjIy3RQ4lhDcEMwZ zNGT+T9&UqO<;-vd08K%BAY?rc=9RJi}V=wKnDV|N?qESE8}%$2+ch@fh+dVj3OCnErr zKu1ZjnIkxw9gHzjxUh&~+v~AzDY%(|vRO{8xE9_#83)U^&{el4q;x3{Nf>hHWiHYG zP~oPat`t7Zi0}38?M7`6Wk~+YZH&LVaRc73tM6d?CUj=R0M;8A{w<(?Q!q^;s_?EO z#=mD!T|WH|7R2pp&h)2oa_@vuNAp?rkuFmZ;sPqtW*d4zn0v=In?F_yyZY9zp2JTf z*I4jfC?l>M>j1~TwfXdlx8)2vVS2%s3DOg)i<*mj7Bl-s4-Ql=(hqO#Sw!Wd!FX|X zC2!#k*++0INO9W%G>iD!>)UQwm-XVE*GjFhDU#sL`e(o_{x_OO;Wl+%_IaR^v`A}ID4}Y!KQQq+(PSWs3(4QPS}h~)e6UTZz;Q$Deb=QL zIq`&j!-()2{6VQ8K8uoiK^vHnjdGO(NS2Dizwg!@t;1LGI?D2K!owSkUvv#-Oo==n zkRDq6)~b`Gq@pCgBvPNp`E;y-YlDU8bC`*jusZONkKT%Ou1hD1nb!qtOBifKq62V8 zDu84yE*O+FkF*8b2bZ`AVisBBz@zf6#G)_Z5>&~UOO;7i^LZb*GA2U)@L0ZZnC4oJ z$FKP`aEA2^e+aq`s6mz;WOfaxUWCbGtEE(gjoifI4swG?n)avxK z_>~t0?fQ|jl>!Jp1)u}tXP>F2pzZ6hm~BHyv^@~=#!L^1=ex1UT~>8%=_|5u3Nw)w-9oX4SxD|svL z2J7k&@?;%*oT^rWQ2QVvZTC6g#;BbOx_w$Bl?3DYFp8o}OTs4r(=FVx<(k>0olVzM zoL0!2af@%zd(?0c`bh)(BxsKzcIx;SK7BqU-g2!$acqjH<&JtQ=!$ruIvu2P`!QtR z$=~IzKUggoJ9kiMxzjEn?C z_H*;(A}k_usi`3xPis(98C@UoY2k8uV6|){huB=8QFa zGIGd7=Cg&W)A}B^U_m|mu51pavFJTTOg>KFP5u+-qx7H;x6Sh_ps5WTgAL18ksy7# zoq$x;4Ht4Rw}M1P!isPp(wua%!{U5Nn0ih=lVTZJK8T>nK9))Qucd*~VhJ8Yly#}C zGf!S~=z?j<2his%BhzZi5K6ZBcM|e68$4^}9Mj~c5^1D5Q=V7xzaXe?P8AFAz^iOl zaNK845Th%m+p)-(<_6rlw)K%(lr`sQXg?CUPssUrU^d(zoQ8? z^ji(;2S!yym+Q4|X#DNdLs2V?Aoe5Xh8o*ktA(o0*6qYBf$!N^zX{(6@1A&s0NPKC zC=U7IK~sLf9|D?OWbt@nr5TXfFaQel8DL~(ezd@2w$_@Xvy+U-RbyuYYv|p$GwiYh z)dN#yuRCHCK~XVVq>t(Ih0J6zEnqz?fgi+?!r<LSZ766MO!+_liwIs?8w zmw0s~!xN0?%oQL#pP0RX?Zm)u@JSk>Na13APcU*K$Eg#ex3uF#Q{4o zz5^(%_9)#BTz-p=k}b=LdUJXe$itxEtSf*N8MH*kOsZ-^56Vo7eZT#tUL9vUIE^q_ zSappeEeKTAp%kjZ1duq+_1irAzpiZyzY@Ih7yw;c12AvB9N2;ffLL!ry48KlleOdS zgE5;O95$w{9QQ?%oRmTT_1CkaF8XpZ0X0BxPW39QNq=jr!eTTKlO+*er=bK3zNcQt zZQWB+I;9DgRp*___g62sko{5Z1n1JE?KkQyS$pWtOdz*5Xvy5uo2>6i8APuJgW=U6 zD>OIU+x(N~QhWy;CWsp6pv!nqNVTuS9A!^`XVy`~ge-ZUkKvG=5o4l;eV~;%@xy9? zUZOp=m2ugJnb-=noZRMsJ$vtTZaWdlN!9=!dU^MiEniV|M;+7BXh+$$@>&HS+;_MY zeAjWf_UA6gBgm+oS59yg&;AB|kr)%*3SK+CgXkvU6;Iq>P$BkRj`L(K@U6A$1^7c} z2rWkgwVE^ClMxyogC|T920US20r+@O)_{p70PhE_j(e+@@ku9bza+u8{N^10 z!+LArL*G|KsQbk9HicSV3Nsk8ipbw)^&ac{ZN|8f_fQOq)%xi=2ZT@sP)EFSh?BpH z5<^Psau~e~g*&KzG^#uc$n?ym#XR^F8vj}{Jdn&|nEe(3OOVZ()shImO&JUlb-7j~ zfXTnM@Mr<%qVa7N3C@Xo9#f;QG_bxr>$mMNF>;?aDITi@Pt$=_!T>q@Nm0)nO z;_lMWoDr|?Hx%eYd!imIUc_N`fm5^2sLK;(GE46|yC307tb%;0h#0zGt|Pk5W-}Dj z_INV=JMO%(#&9OiIAi2^CwHTsaG5>~#^2s&*j_S)Y|c@ms77#GTgTa;)SjZP3BGOn z_x}r!khedp?uyN0qE`_Uvn)0U#_+)izw~c73j!T{HhfzOZXPc@Is9oMb#rr1ywAfQ zA2i0}*QA%c9~R%h#uqr$C|@qgt+SHXjBB8_h)>hZ<&Zc?`aam`+M$=@p5B0iGa~^6 z$vr4vZe)0TG(5T!#A(60(nq$h11_`wiRauVA#e}03ynLhu6eRz$QtKs`m>W*Q3q{)CS3!(Gi(xUntQB0@jm6FQ2&FZW%n%@J|ELOe z=S?utF2O5_+aR4;cMW&vlmWMMHPt9sd8H-yQr>U~u_py*H}!DI)ztXrU;X!vb?k0^ zGX(~ZOQjHzrB|Ov3n0K($vtd0jBC%a_Z>aIW=CB663pzC!HnB9;Z00sY=`==vahofI%ueyU?i?~zSI$1+QI+(;E&}`Rh{t_ zdTE>9iUNHbg!;=AR8S~^yT3CQ3P>_3TZ9mH%;!z-o1wZotfE!mPA03 z|GlXn29b3|7~N{r|8{Muk{ipNS9-&0k$sKistz#b;zfc15-Pb^`}R|PzTsZV2vEZA z5zNs)=CNq~d(C~>Y_CkRY{fJ6m+*}uS0)2i<`BTn$hFVszGPt%PV)7caX<2GeSVE! z6>=Q94Uvi#M3`D>mp-Vcp+K$!ru5`Uv-tgno|}oZ{Sym)$agQDf6uSjPM5MZ-%Mt4 zTHjD3(%5Tqg<|(TXMQN!JHnI|wMD$c2cEux9ea9m8Puh_!t#;ue+<9OMyTb~ds^xe z@N90s9$}^tFcc{Z;~V78LPs`Xe{o=xMz%*AZ5H!$6ZG?C$FSWS)7lHL8Tfa`|FivlVUaB3!z}u0mZ_6G+^>c(b-c&K_C$6lx-YHFqmui@M zDX?}iqzt)_gRbFau5VtNJwOS~*@$&ZsEC*hBzR7WY4x4=oG2-Wx(@&FBI&O&&bHU^ zHr8t%W{)R7_bV7KrU+03yV_cB@x2F~y(d0a4&;vM=8Z7W!j6Ba=QxNI6>$;_Xhcmd z`2)D)F|x&N6y(Xw3#4OhYD`?PVU$_tKJ*!oLB%MEtUIGg2-3z5iHWs<*{~3fej7;czh-PND#PN zaA?7j&)xcWd+mT(q=K8V2DFy?&Lqy49eTI7h{zkkzm~FH$A+gJU!j!>qe^My1 zD7ce_pgDruo{2pHLpD2vt?Lm92Sx;4IrX2HqLQ%M`wxUzIWFNv;y+!Qt;pO=w&Szy z@E$vQJ7<}xS{I7ei5*iY{tL4RCfE3z0wgdfeh4SfisS^n|z!z70Vqbnfq{sKj^X6F#zN|l1 zydU4qr-#5pBs8+N?RzhqT0|r+piHCv5?)sDs){IX^52)$27^gdA#1itwlHQWQWPpn){)4* zGqR47eHmqo!B}E!V=xS3w%^hF^Zh;^_wSGUzW@2%-}`uQjx%$vb6v0NI_LGgp4V$> z#I}zxpI3gBY+>eo=gM`)Zw5^>7jNj@WH!;hWRAgx83PN`fZvgE79x-KvH*zyCiu?Z zEU3<>!tCNTh@}44pV`88>Uc$*G^2A6eXrG9aA#FY=q_cfLGj)S0_Y+Qa@lo6H^};5 z*l-pwOOtefg2(Syl~e$2CbUDcjn&P2!&_t7Yyx> ziO@|fdF&UoQiAaR<5}QuQ5hSNXfI~|n5|Im)SGid<*$J_LN2Sd5wxLv1Q0=Gv=qnn z2Tg63dbA1I>st{cd?8u}nw@2onvB8@P>D7cJior%F$Yk^r)X`h%sCnb@}>>UC~Itq z6Geac*Vx5t@90TWNe7*JK2@jAZOL+(6X-HCVm~vnAFxGtUtp zwjmj&uc;n|u*2UWHgF7A!9R*9)42rIw2+ZszYF4~?Q6Fc7DsmjBPWe8ZZB#*_sjhM zntjQe$O=xLGcKF?_H;k$*C-bm5;yZnRah-B+7oBlqIWq&8wD&?0Jx=8;;!`L!aTi| zrFW{vsV;gA-VOg;q0gMDUo4D2YhIJ#^lfwlj|9PAl-HeRrlBRb)8;oeQu5LmXV9OS z%i<5}U9;$=(}?DO-Xc~@pC`$Rgt+@mHnK?E|5P6x>A*wZ-k^k zh(o2GY@$dogklS46ys!UZ>(mRo>2JgZ00+Aqq*vVwRoQS7j5Et8m@e}mS~k%v+8&^ z;O=tr_riacbv2^q4NH#_l5>-SFe63WN-Oga4ZsXIj9FtL%G@$yH_Cm)Zm^*BZB-utL zatXU)sZeE^y7iw@kPS%7R@Czi<5Jwrc75=6kC4AXC*a{rPNwfg7ohz?()`Nls@B6p zCr~w~;z$N6hCmRFi03YP?5j@!YVnJt_2X-q>%Vb*cOJ)nelugXV{3JG+t~VwSu)d~ z5GofTx8N(39ze|I4-(M-rEF_(5GgROeN)5dg0v;{DR zu31tlGnF(ut0leHukY*q?-6&`OAL?Mp72+x_&BcYMpg^d32QwEd5zuSWSm`a35wOG z5ciqY)`-1^bu!{9%?4VC===CQz@SIkVs-aXx4N5PsZHoNr}uK-Bz%}gDU2IR&;gb5 z>5v9RX1Fl%enQA2kjza^G@qTF(pe{aYA95tKMj4d?Gw|?OfzroBPOfk`D5K)>stS--O?6OBquTu ze!+V`!@mqz&sP$7=(bRu##InI3`9VIBwu#3E(mXs%F+SO@4flNx&p8Eld*u13I~Y% zU@48V3P!=HI7ZIK<8i>*r}W3cp91FkhSe2u$tR+IG=3T>ZqB8x)4Hlx|DPzj{X0pT zPN&IhpcTJkfIp)#;MgNc_P74I+b&-u>0U^ub>?u2>-EM519E>a^Xd!hsUO6v4YvWS z%Q-Z$g<3;uo450fuURZdF&Ct=o6k}16<7!i8`;S@R_8hCeftYEieMjiF3@MV?@b}X zE_u1K;e+cKKd2XmC7D7Q^54-c6w2>)V%QW>={XOZ43aPf|J+ZpORlT#Aj zW2L-YUI+!JZaMYoTX&qt9-dwyTF-Sd#Grc1J1pHMWTD8oW$ z_JPRz{Qi@@IweUp7gf=|`|P+JLeieTX?XL#joe}LAw)S>NjxSfR2;sb9gVX@KNWbm z3kQ(qdz_iFMb_S3onFi#D?^_S)v^&*JVS>$`ziy z+yo5Kj?D$VGz@;6WS~g%3gDJ0cP|j;_N6xQmWOAT3i@z zzW*-RkbEXFR9q3I;7T^p+wP#8bpGALF_Q;WabYLp- zbuXWo9C)`-mZsn*lU8OcK*0BMr8lI+j#}`+-;Ajro0C<|lBDfF=OS|Q#(SgRGE%71 zT@^T~*P>{l0~?%8n+=*E%$q5A15T@5Gu*H1+9cU*?0L2kPig*LOP`xd$OYWYfz5;a zfAjABe_(U|k9_QsIMySC$1oqAt=bHl+Sw5!{B;*Y$T4(%K2~1kVOm)PmY?Eb0N;VW z{fm|+UeugXa~e1E-P;W+r`!=^@^->i1ey7}OcPD!$aPA2C%A@IxW2yrTp;cP690{i zo-j#`;Erpcmus72s7%qkt@HkCZ(J;P z?nN++5^_79bZ)diJ+A=xG;!BqTd&FrX;shSJ+D*HrZSPUb*sB2;gX?SXPBcl>{5`M z+k=x$p*B~l>Kg6GKRAH?(-Qat6)Iaj1v&-3^?o~wwEJf?jFuHL74%JW#_9KFFYb`f zDmnCcH8b6Knacc3&|O#*ZQf#UX1<)?UP_X^Yy6G2EuFG7fZlsOjt6t7gWM{-jG;a) zodPQ98c#DqL}2Had|vR&jVI^T!T4#l_+9So2!kg?^sF+@JKmo1e1I}|02Y|PAschY zwEkhlm7v)HaJaV_yZT((ZJAHP)kJ_P$+B4#LAVY$vT^eO2ju8hzvolbb!k=&GD_gSf~EJ*M7 zp-8kKt%b!@^5!=ch?hYet?z@*s(tg0zh3H$)v;SNUAukkBuq6^X1neOQFa``4LJ57 zhV#&7s+s1JNj(pCr=O-NGT$MCt6DP+@;y<^ph@3onU=k|Gy>v8Jd+-cTAquQ6?sQz zj?(%4@tHv@wQF0M4VFmSABkA40{NNxHv7C;6G@)5^@XqWbt>Y&KnejKub;Rrb7ZtE zpO7_&HRroIrQG(?g3tFQAHOPB+&8ClaGG%{NRoow%g8k@oNPLB>pd5PtvvB5JRfs5 zI+(3u7HWNAr$pM8L8(s-c4JqT0mz1+mdz>O&U5V0@Ef#_WdV@a4leBI4JwgGRBsz6 z3mVa4PR;t|?%`oj?biCF+|S3;>#-?R7h1+; zehqSqorl@A3(Sz$;{|B$UV6oK7tJbUV)!8{Xp6nKMXY>3Wc5gR3`X{Bu!Rq5g6jz% zP<`1Q4)-?VQP4WbmYXgs0P^0`r?WXUGHdtusC2fIQOxDyxWPZrCiAMd@-wLv4=vNK+WX|+*+#iB>iW7?n_jZA%M{GyF@E*6TpkJ$P!=p#?A*7fuo>exP!XWZ^|D{o0E zTU1rq=KZ$l=Nrq~oNo9pFDLhPZ|J?H+)JsRGkdUe?4agHvj><<_udtMFMS|XQcebM zh%uCZ-$1C8ZSUh5b zp@!u2HPzIgH48}Ol6v3v6SBex;xH-ybmHJ~YTn;_5yCvy`FOPto5$5TleY1A=|O4I zA9`w2HEWvvcrxyxBl|Y^j<;l5P??`BV6kc3!ey@aSGb%aY%9@Y@P0*_QC!5<#e+Ja zXIJUGf~Cb#3_vY&9RLjBFHC!u)|Y5g(EYhh^n9F}KRhs<&W=qm6GtR@y-KjyRxsXTC7;32R>hd876kx9TS(rNh6KjNe zpzowVy==rnvhIk-9XQm+l&ixVh^PWdP~J6(&?}-%Ui)vWTNb)*10q5YrSq3ZYz$>T zPHZ<$G0U4nmehL&d@{4q_O1H)$=_tH!^kC_RM2OcVk&C zimHiaviwn}uQ#zxQ3~LTW5>;SpQXu^z{LFMYGA!qtH_nH7mI1}kkaBlt!$BgmHc#Z z`OezIez4dsTB=Y;#JhNGE#h8+h%(6i@#AiaU-Q=^7tuS0(h2GF{hSE_r*e8QsH0Jf z_+}1;6d2ml5xMWEK}yBI7Nb8PDBZ-FADq#@JNkE@a5j;y7Ys2-d2iw&#`8H{7*}le zEh}(Lw@Mjb@k6Lu8~b6;rgSeI*OToM51TxBcVJ)=aHskfei2nx?S3V^5VR%5m zn39rPpl2ZJ3z$nHk@wS>kXXqwP|2?_0SP{4(DA?JXprW+_Ag~ z;te0;cB`&!shzfO?C$li-5s$%cL$ECS68}*uG!Mj)s2>?-2-udw*-MK7O3J58YGh! z?e;H=!)ct3e`Ol40!Gb4i}q;5ge^ou`QecmB*kNLYjgqi*uY)m{9W={F~so>nmfrZ z6hKTnx8$BKZL6r0dQ}j&j8Z-grQyx`+%!m>_Kcvk`0AHXXqf62ErW)~R*8mEuY+2* zjfS}GIEXxFy^r-+@kf~T^JVsbBaL})$_L!pBrWy&fk19>xJGiFj8bfN$VWm?WhPIW z;&D&~DtH8z8zZ)uVgMiT)EtQ&so2j42Nglf>KM!O&mG{W@MHN93!H8I?iZqGs44i2 zKlvG`^@kOIDFU=Hy&YD%88Lk~CJ~J>#JpBSGqyfB4M0wLGGbH4I@6dVA4&04F9k}c zBC}`TtryBL`-gJo32Mg>!!#iIR+ceaJ4Ho3d{j;;)@5Y)DPJ~&J$h7(9?KQU>kW;x z=(S0i|CxfH0e&6EuqPU)lb>xbs4VT>i?$Metg}PWZ2HgS2{nCm2$yXj^U z`*@_7p{SHYpY1sz3?Y|O`Fcy?@gm%RFECcWMnqJ6R$*iOU1sKJ}?dc)#Q7G8W%sAf0RaPb_^eF0=~+Ib0s z$R{WHt2F3vG1Y!#;p2><{ZBDSc`#TszU3z8i#tbF-AowD?B^iMAnT$07q~35-=Swo z&3N4Ns6COgR_Ri1?g7j=TM<`mt#q+hn@@Z=UG`3$Bl;s`ni3-WqFU(!Qv0PjXOFW6 z>BS$S)x}bT@1L<7dCcnwhc!gVW~yh#%JOii#?I!g?tRnpeEUe%5Ct8)~S zAo6gb4}%FhH%jmH=9gy(=p*`MFQF;$KWi-NRYV}lG)^jIuB&CJM7RAkbIv$>nj!Sr z_%87bsaFls95@CYvux%m0_tE9xOOz7m&Qn8uAVOC-SpK^g;sK}4c>HUr)Quu9% zkU&-&ZHeS3n2jj6O}kza@261?Ez@=L%rEWKS0^4F)aj*d4UFOQMSvKE373Riz!@6Rq<^;f*o zxH92RQ5}Jd5UBfViMc}E$IfXl^{nF=aFRi6DZpg`_O5T!E6Kf>*dn68lJ%e z$l_y0Yo219rtom7nH&$qbb5j{bNErHj1m@6#xyRJJZ#Vt9+3%XOMqVt=iI^ zx)6xpPq3Z`dPg^fX!?d$Qlnis-Mid0ZSq#ChOhtf<=S}Dr(}Q{S$unMptFLV5Wy`4 zF0yrl57!UC(7gxJD}$m0gh2_#CMA|*jD;Rd?NOrzH=CE2NmI$^S7?0;SA5{3B4(|s z&9$p_o*-wkLc!R{r>FZ2TdMOv9H=46pJ-oNcOd^S|NC`W_{P=d!Bx$vj@JQ@?)}sF za~tiKHHgLZ2E`1*rH>`~sj(Z!EhDyK_kP;6Y-#Ux$>IpRl}E?9AEI}(E4iVI@?e95 zS7@rJQ;V6qkD}=IcX|I+lzY^d@%hx^jjIjA`|SIkEDgXaIM z61OQdnP-c-Nkr@L6UTuqN*vGmlmFmI;0*UeK#^UDIr)EXAAiyp^Ix_A|F7<4nuqP0 zpn8<^Tr9y)W}RueFBHT`3@|A>dJ#R}8ixd)n*(7?1sJAoeZE$e)DRbk?5sU%UzLiX zJ?#-XckUeOxb>zI{5vje)lk|!)WiFKzQZ*Qg3OGjad=LM->Jhr<~>YY2l?ypcBdH z$J*iIcBonL&ZBQ&V(v-PB7?A^r4qWE7cdzkSUjzq!DR;XXQGQZnq>_UWnYW6-c-KdCCVq zN#K^`AjiWeda3}S&$neWSF44Vxcn<%cmLU9?L_s-*tV0W@agQyq#;zOBId9bzL5#n0T z{bStyFvMXOX-%`uAV9_k>eXSeU^@=ZEjSnY^}G3@6&=X+ADKuaW#v$t5z^@PS1YSz z$I%i4Ci~rbyj1_rlGpm}uwo|;>sx2cS(X&RC9H#}|fc5qN`tO%aO@KWu|Q6tk#H?6L!glYgce99Cb4&QQ-oc{^b*xK=tVgcNA?v;vK$n{lMPr7D0h+_M5_(|RYvmj< z%26=feyi~-jU67k#88J2lO1eW&&g@)+g9Jo-NkP}OJ9D<1@y)`^i4cdAy>dNwi z%;}Eqk=0@m{z}(0I;aeAyrhKwjYSU|+~UZ5Nonu5Xm=Z?_!1FAwaC|HGQ|@9Vt?>g zHFvZOj}>Qi0gC7b;d063Th4yjp5?vawfE03J4SkQ&2L0BTc^2&3xxIiWsJb0 zIey7W#aY1nX%udSdnB#xPKk;3)YVpJUpWsRHfg0-0%8%)4}XCYy?l>lsgbTD1ELbh zV=3B=_oFXgKK^~DEYAQ)uF8nlt2L8Y_3}^9kOQwjd4<#BuIccr$%x z;jkr0u!+9ovQbIbUq4w;EfGg)jXS5g;=dLSMP$uhBZ>Ff>$;_L-fPJ>*|1j*)oiol8iF1>w?WetOcK;p91!=ro*O8?CvX|4?8x|s?|q@^k4r8HDB}0_=tpeDcV9?DE%w`S6`5VUr`*_5iQvA zFWIkbC)>sYo?Zp!A?mY&tYCSUknI4oQhxaQk;6 zR@s>e8Njvo{Z(VW3kQ=h3~j4BNLust!KCZ^qaV$ngZY@Lz2#rMW|aFsy_cN26Zlsv zeP2;kg|EA)F3O`bNcph+HL8fN(HwVz*F&=W0+9~&j29as7zlNmbCCaL*s(M{C zhPHsy$!^|%YRp6pQZ`!r55s9EQIm{pgUC*!f3BXT*Y{*@~bzi3oE!Q9R|JRyL*ZMA#vK6Rqx8X zyZ3CtOrF(Rv^oO$hLRbEaXoCsa^?NUCxcy0I)_QInal>ovlcB0cS;DDB;o{{s&^Nk zgLTJUY(>cF?8AMY6A9;0ov^k~e+>QNOxRL~I?`lK5GAzs$uj*oJs~|0OT^U>KnID2 zQ$SB>jLy)kz;=q;SIm4CE-!z)A_uadL}*6i9}6Myk9LD68NJ&IP_K<747nOG?`fpJ zc0RGA8{fVjx)vcWJ9QZJ5x$3* z!lUW3B=tr8*WwpQyr-K7P222a4IvcY8i?z9_YmWPT#PrC2CGqr!VeKF)~6a-@y+jA zn?o&}X=_bNCs24^81W{SdvdBPi#G&y)WzdTK^kS^vPMX%%K|2+u z82V$Z+OjgBnKn0(YIRZAn!l&WEz&rHF~rCl!nHo`L_718E1%3)N7X6DXH$G@apA2) z(CL`+2WhdlYFn+MF*;OzZr_1F_0Rr91^*7)z2%O0eEy~RgF1n5DWCdFnapC(3ct*H z4cqApG09L*zoQ2&N3<|mD?T1b12%ytnj_$EtnrxK)cx9JvwG=EeNo+}lW}Y*izlkBKBLU*o3SHHc{Z z<9sIW0&d^Nu-AC?LNe^USoF~=>14wXC%$jydzGw$f55~oc#qBy-Wol?@188c!SGjl z1-{nL(4wfsw^BEnB7i+%p9CDuKGt|p$NaT>#Zrtx#;>p(Y7%l?7=({dA0Gpw>bx5m z!;GwHk*l5v7Gu`h4pUGof4X^&pvn2j2$yv8Ha=F-uo`~N1`y48OrqfHtPP(W%Xl5P z(DZf!zE5k*OmYur$-nSu|A8tNB~yNh7i0f1&TQpVraJNnzw+XYXx7i#C*=Zj4Sw= zh&av?$I17rm`l((A2gDHZr-m(A&?q*Am$G%)Y{rBdErA*WxgEckF2LyG*>rO)HbkxLq(VU+Jm8Hz0 zVe)uTg-R)o0N@O%#vGmmy~7~yZhKGlf*oAenvR*rge?|Kyz=Zw^_Ypr*xBUXE6)NB zr^M+W?~y}v#&y*p^lBkW{sjT*9v|6#D?>DaXZ=og`n8x5wv!5IOLd1>w4X293sD&o zPW7bHy_mCz=|$lohhsZ+WQj<}>FNu=nsotTIXUTMuEOBR$y7$_;f+jr5&I$cVa=k2 zpEVKT38D*Q#7dsZh_6kSyQrC?7 z;|5R&Qg;VZpT>p#kdA9?Wm_^NaN3Tt><3Y+cR205tqJ2sJWoCQ`F=ar1^PReIcwbhbh}pYhSvQo|az4EfCOf{b zETvYf9_a{TtTXlSp?#yBtK$YO6Xmk^vb@?yeRfXs5_VxiHxp#Ew&S%jI4qI3jyS`~ zxuz3>^4tgQNpi>{nutiq0gF|lajb~n8` z@N-xz{!C!+yBuBi$R@Xn!F`<+U@6mqRgw}t4XW5cNzaI6$_!M0TC$e{sL zNP)??D4wGI{cX9II__O2=vsS02hLVb?qAZO;$RLw0PyAo2kb*<3d8`%J^&D6|BcyB zY>Zw$AOUh5{-?3pf88IzZ1#WQSj7PxdzKpamtFV|dBUay0fPNHMEt@glLWJJ(}NwXqwR^XSeW^SnRQ+Cpk3$0k-N*y1v0L1Gne=OUFVd?Euw6d^t?0x z1a{n-;~juBS8h`Nx}4e9SHAMiOIK@Pi9oU?|jP%Sev_9Dp-1x5E+LFSWB zk40YNo)kbga42eXd@hnZavn5WNUGbTfIj{=mz26lz0QY)6j9393ldM{i^7w3Xzzp; zKg|wGZFF&yfRJO+_AGTdC}Onq64jAA_hf;_#>2JRlvS56Dgy73S-Lj?y$HGINSEp) z=L5C|DNgYEas&!Va03Q6;}?7kN!}(qSW&qXP82A9VFhLVt~pWrk?Z`?tJs>;FZuSC zK4*f$4XJ&qF)$W0 z&szts17nHjakU^i<$LHuv(z8?VJ}CTi~Qm&h771b>B1^ir^oD+L|;0JrNa1L&N4q_ zarG*BQNBZ&YT^GX-}Zs{MtYy@Gy?)B#H*nv#}M^(=t)vNJr#%8vg01qkG@p#&v-1y zXAZ)|Uyb-3Tpf=nH=me5mQEeJbL>z!YFHI0 znbod!C&lg!pkz(O8~VqN%EJ~`33YX9sUEx0qohD7HAQcsjb95EIqKuFr|u~JbLd*1 ztwrl)Ly89#?@`ynz-~V_!JznM?9(2 z$LOBADi+7sJ)21ZeJo{c6{^qRqM6e5An{PpRG@b`*Rw=nuD zHP54NUp;Z^_48fe0ywiYU}lS2Ac_E4VsZ6MYQF`VX^wIVEylkc)p!JEEK?B)IB+w4 zU>?b!5^pk=sK^#3r#BkAAE?Gq+XaU)Wk)v+ne-qL#5P^_%{;Psiaa0R!UV3Xj6>`b z(WJf4LV~@9+5szq<^0R{rPvqMFn5kOTrTkQP+NOW);v0%i!T?hz-MnL9!W z!8Gm(IDQkTl-jCn-8^y{ZsOYFx$BI)`!?|A4b$ONsn+W)(&OCA!uf*t31WJ)Xo+D( z8;Fc9YWPc(^c19}nm#^JDw>fwu64;(W(~~+|g7908IYVE`#-!pS*0P&jPVBY?VuSlr$^l=<3`HddD&TYY{+YU zD%Oj=0j+bnU`p;a%DLQ|O06_aM~~5MF@a@gTHUC%bPTj{B!q2^iWsE9#z*zfjvL(C zBDuJE2fdphik}JhM9Jggha^{T){Xc4>JXY>sVp{7*k7R`!+!gfN(oesS_Bxs?4ep zNSXfcd>`mj(}uU!DK#daN6mP|K3_1{+dEs7LE265mey{)>qb>~k<#%&B&wyu7VWORm6b!Cge8cStGSnmlboA*5tZM(d;1eex}#QF$W05=oB*kCP#D=o#Y}!rQ=Lc zS@CmY;Na@ol52pg{bLh0B=g+LAj+37!{1^askhkf_=%cI+N_QO^jNYPd2W69ES*y-} z7$tN6V*Hb<2*!+iG?)g4=3qw|@zpe!#0Q}{YEvS}aSyZ^!4T9k$^;7WWA0S+?eG7r zHlyYx0P_T@$KSJ5eDDL5*UrbpBQ@d;??A8xiSwjIH|Jtc78Bq>`%tJF&x?w-YFEGX$ z??Gh`W^(osL=|jGIq7s9M$}*LE_HKQKd@>nnE+$%R?~O(JN;1mbT+wZCVib*#Q3?2 zZW@o7r$Y!#U?_H2__8kS*ya9R*!hooji)ru{L5{f+>kW;{}v}n&f9}7#EdP!Jth}7 ziL0xPHSUtQkhAnUE-vnCO2n&2PeYtuOop!EpLCu7aG^hJAt~wE{7w)MrfjkLu=s@- z&QQ(QT^AyoMLtwj4CtMYED!#XX?XkgPY0HJri(?z(ep_b=6AA=G?|>BGyutvqpV8@ zveeVn%WmK9G7digV4u!LBI=hy3^^eOt5!c3Ei8C3OJRqe?`SskcY0?bVH43)MUqba zV})}hAn+wAbGh9}_goZEmY(3J+qY%L{+6=U^hN&X5cb8b7lAK;Xt@#2ax4MEi6`#f zdwtt@Zl4llSxyJS7&;%y_`i@|(C-Jm@VOV#- z1~+YUw}M(imhwP{82fu6*wuj+PxfTyN++Mz%pQ?>5}g@*6F^^ke@s9cs&WSytMdce z4a4b zst3i6ha=)OCXRsiYA_{E;PIU!l0JKak@q#pgzr&G>L=YlarG#H&hv*CyplloVapjg zSH{S^kp#or3#EmHdM&js+#PR3j^UkTVufS_)yIAf5C7T6KSeDU-ux<<4KO0S2ePff zR2UGKGv-HXhT#6-J8=q6rUFQg!W{3rIZ4y+dT0^J5W7VJkx992+LD%*_UGeur)$A| z!f#mQM5=>VOY1-&Av^zfrekWW?5<8upS|}{DAXfa)gAdV_NBixMFjarwEH!WL4ZL3 zX6#}g!moi+uXUbM9L=ov?&kgJKAc^;s{JoHalnkc{gGQ-nVBJ}5=-HTP(M&V-u0R{K`*+ArTM-_w>0l;|gfWknGz(M9Me!&x^ zYkg#kyv5xYj*C?x{bN|@agGW8slq^s5`59r0GUlwpfAwrnx7Tj3vn^Y$;Fe31i&6aSEz&l*1jZmeo*7<*cf??G=-{bfvf4d;W1=srP5xG|K`|*7+kddhy&N z_~dz8L1~<{O>T$MX~l%^ny%pYx|E4>7qyg6*UfI;1?l0d@CiQ|w!Mk(rPc1jN6*F+ zpalihqv-JRGp#J{R0s+t6mlaQg|1*|dKi))JshOnj34k)7X<+#`UqrZ@N3CR(tY8? z@SxkYs~vyWW&>?r*nj5)kJZ87^zigFva|C(Q|C1jt)vSJi>+q)1sCh=Ci*n%P3C4d!?p z6zakJNusj@gt5zNZ&6hyRTKoP{iS<6*@@{F7t|ZLsAM|q_?oP?por5)<+!baJrz7k z2)AzM+B7|@Tv}d^V3hL#Z-F*ohz^d9zN8Y-qQJ-(teXl1Yi4X^U#Xe}eZqLJ2T|1O zHL|{ZM={b-Y_^)Jc;v|JWnq$Q@v`yw+dFSnkfyS^xSeu5XSZM>1*Dl14#SMcEtfza zocOi7F9Eo%d^YbogSM!j-iE+7+uzWR$s%Glg&5J^wz!^jHWw%sbu2&QX$+BO^imzY zIO9(0&7(&Fy;M2noQreFC9eWWS%2Gqjv2a^9K9d?rhM*D52^7lKhhTj7r+DQ(Kos- z#z!8HuO3k41~OVzWi^Hg01K)E<#VvTDZ5Y3Y@n>*qw=nOPw0{ZKyr%Uxz`deQ;s>T zj+Q^+3(dS3VxPlo2p$^{KznlvFzBhnb3a!8@R8Csu61hSiW+zj;yN4=a__ zl0?RH65v5`7M!c4LjhAR2>bcpHy!bKPo|J;PnKv+ooPxr-4W0E38G(Q@U3`=na44LGC!BYUqMrI8Dh(n-;LQ;hmBEM%?iGp* z7F2@7FZ3?pVmIltTED#o`_ttstN~L-L2*9n$&Xs9?`~Tw0M@$p zu#jas3>Xt^E`q)Cn4A0|9ar)*zSB+Z zkgJvz*^n&7%@{yrR+kJi+@*ePo6L(Mu7dW$cuK5mxu|PE0%J=L%B>K!<_!}V>tg4y zf}*11=3M)!`1Zl6smx84w++7Y9gculm6x(#Q~=T9-spl=41iic1Dpk(w!~337gtBi zA;jQ`YxwJfQ$QaXs~24`eM?;rLZ89s=sah?Y?R9Xdi&hOzy(5r_9d&f@}{a^zJx{c z8~ng>vvWr(k{D8}MX6t}Zfrbr(AOa6n|FZWB>lU}B^FQ}a)=oq9x&tKrzZv9P3m_> zZ7LnUJ@49@|9a>Z&@7jS>hD61t&vrnax?M_H6fVvrQ1O6YV;<)GHDGj)E>XKnKuw^VE`#pi3ufVnN?jAa$y;h2`Mv z$>>s>x<`My-ucSj@%l?a8jZ)S%0KI+?_2!GsyIg9HfrWMJNNCNAf-u065Dhnu*QA+ z_Pa;Cmk&&~bPoFK|8|cAsswDH@LW zu$(_6cIfDNF)J>y{7$)xbg(K{Jg( zVIr)pdifcLSR#OKzjb&f@vICLsUGS2*>@Su z!?GJuPT{;LmNO6*_!H*s)n5-K1hWtNAh99k?o14|b9OXs?8)yRhj_rJTOmHIptD;# znwKI*5K8$t<~25|NaBxEd$OR`SzWfqkceaEn}t&ue_H?AlwW?-Y4`IYcQAd3+p~IG znj?QbLT?tTj(E4>#TsGYK#50C$>t|-uS-#fPug7;fS)-3~a1a~?k>w1w zuWJ#eo3GbmyZ)9}@S{I#TN&i=v#0Qri)B!Gz7K*4Myv9b;_P2E9M_aPKS+)EaZnPV z+_*q9L58PW<X_5 z|9FJpZPI|^mH+loqM36(f~7c!XgYZ|rUm zYxQfDXR47m>$I+41&k?ysrl1|Kp>3R2dTx+z?&(bM==%yJlS*WjYKYK!=P__(HFWm zJ;=G8*B1$~748eB!_E5v{)W#6&0#!;l6(*>N4H~xue`;gn|!G$NVZ zzhB9Plc20Ha`{r$hQmMkb1Bj`FUQ~3=K1z8i9>_(@Jpx9oVosmaG@_Fn5E+B%*iaS zzYpBywl%%@&!OL6JR^^z9|0Qk-F9nXFpv-A;9NoI&Z=e2Q^}5|uy+CHJcNNFehv+> z(Za0VPi4`tIZErrG7) z=E@q|y1VqHGT zEe9kmFah<6ge(8Ok<`JB=tiP4DFo=1$|3Z)&rz<=n*OeKK>5z?Sq)gPZQ_dlLzU$dH$!p0Pj`Ge^>%E}34a$HiI7Quien^wkhukXp(3Pi{!jJp zIf)TJA7(^67Kueq#xp@rvlwsZc{X9G?N|Axs!S`D>L0<49_uZxPpHdwMA^mSWB z7A>5*t8}4~Qz5>9$r{I9hgS1pZgmhK(>*R!yc(TbY-kbuXT4UqAeppqM7ulldHlR)f!pX8k$L6INj>SB8DHtWHj`LH`S8U$ z#Lchtd9#>&#EuJ>rI&+c2! z{7Mq=VLtnjS^lG$UN zf#Ci=CAhMap@;MzTNNnZ*45RW?0qQrC2U9PX}2h2X<5^Ms&=er_Tn7}YAA75V$6PZ zS<#1tlykWkE)KjJFRY+{v#oslP8oB7Nl%EFv8pwqoZ=;C_x(U$9}O7pSttS^;2j(H z!)O5G*3ZA#z3%@T%>v>%hX%_uZWKRrr9hrow<#QDPX5j)$1w(0EhkzIb!I(L5F9`o zwA8q2cPPL^tPfN*$7#WA9^G>RCzCZ8x@Q6G3JTA(!*XXKtF|}6IfaGYwRHzxP6f8k z(wg}G^tz&tw}AB7nM-c_1*FWV*~NZW-lZ(2xg|@{;^%_@6-5ZT_X3xQh={0Mx!!~{ zZ{ECB@4owPecl&C00I!gJew?p`Ja#iLI6?-7y^I9q)rGXJ`3ua$s#P3JSu z{x6Q5{6*_gnQ_bkUKTsU!+&0Hd+wb7N1sZp=;+|7cp@SqDk~X1px%lgUayw<=!|s`4u(R z`Dgs&A9(19`mFhTRGG_o^(E(F#xV!rOH;pwzdimCzBKh~*#6GzxZ&n|t!Xd$`EPQs zmXw=+^i6B{>PybU`sY{L=KHtDAHo4&m}Hwb5fKqlx$u1rsH!O;00RP22-^=+>Nk9xG)#&@C__2|U9njd7%`O?&{S&!S_c|FGx5fKp)4P3qoP?73( zOc$YM!Dn@JBK>pKE2)q7W8=n+XliOgWo0GCjvb4Q8#ku%4PW`cudmOWzqEY`#*Nw2 zHg3~f+wkz8@5K>ghhX&n`(w)n?QZsZ0G;*dtT#J~>pMF$<~e%*{c*%w+i=6p<~;ED zLmBfYA|fIxN1h5$=e3q*;RmhoGkY9mx&*XNkHY|j)F$?5;>3yAYp=bqY11Yo`VtUA zSosHy9}fXw-MY1Afx7qJ*lo~mShIE=swyincJHyM+N}xzux|ajK>50x?)ZcKI?zt@ zKYQU>pYfU_#tsRbNkl|MG*IO)K&@U+sZMUg)~Bfzc4kqkZV1wfP!X*Dn>uwWMvfeb zk3ZgpZ+zqHc;JBtFn;`atXZ=L0C3*9=VI*Gv6wk?CidNTUoBm~bYu0ZB^a3>11DdKt%@O+3)N76yYZj$FJ3n^4epJ8F ziHL}Zs9fYIK+U34^>(T%PTl8|apMn=>ZMG*Ha(H=>puZt)v8W(cCG@1Vda108{bIh zrXDwKdJRAM$xp2OO`BfBb=O^I^}eQ;Keq#Wo6uR`40HmuHOJ);JoC&m0D#;7-~WRU0!JKi1Rw-1 zyYx~3zy%jvkTY>z&0^H9T@2Ki&)2`Z3!`eyj|TnCqMu;>^D9%+{Q$Mu=AjM$X3^?cNc(EVY?PsSL17C5D^g(4JfV!s38EUKITXQ!T=xv7zTutS}&yIb2#;0 zPpzxe@Ol2-5J1P%9S}m`YiG^SE;db{`oHI%dr-YcH70*~GUi`@J&ry0*whV4>XHHT zalwKGw(CdToP6X29K7FX+qi$c-enD|;&bT(H+x$C_0O-gUZY%g?kTqCt2b`JE>CkK zA|fIhSloL+Qw3Z4MkDjHHO=P+tSS)N33mO%;MG_I@Z0yPX0mut;X{6C(z@^dZ0N1sYOv+`9u`S(|CAFyAx#sF}?&UDhGBXcYn5fKs5z~owh3fq8L{24I6Stxzuk+AN5R}%|+ zEsA`_Up7(ae`dsR{Oi5#w&#HP4M>~b+J<9KI2v0vY{2OK_s5w14$nESw>G|DP5aF9 zzhK;$J@N3L*JsTjA|fIxHyH)!+_`fn7W;eH^?7@lCXW1LCw~!Z)^Ei41NO`4-7J#n_4e)EI_t#2s;fbH+Rj&IJs4*z;@dqz*C8n<)jN4D|R)qA+k zUrqm;ML)st&yBUl|LyUI@SEl9_+9WsL_}0}jJOw|l&Ru#`~mx6^N8O80BWkM0hk4+ z{!h1g#P6(YLV2p4h=_>D&i8l04@8^Z+LrNEnLxVta?SdU*av3-0D5=svQq zYCHgIoca!Vy~lIa>P@)vhMUDn09H(y5^DR1h=_!2#X0XOQ>Mt&Aa6ncyx28fDz*&*Fq5$K$N&Cj$URkG6mF5)ly*QMoAl9#Ajp z(TXhqw*7mm2Nb87!~YI!!&2<2o~Iu7eDgHxHAF;2L}bSTG=~GeFbR*`F)8)zNB}RS zhJU6F>(BK^^%?-kya{Q-gbCQPg(WHx5fPOi7NA-D>%Hx`X5k%0o0rqz!Gnu3Zz3Wh zqW*>jXcjfq)!1YAK}DMv5fKp)nOK14(D}m4=-s(9Z~>X?wGTi1FgiLq#1wuE6A=*+ zl^GVG9=Lt;Q7-CRk$UydVRGo;cfb=75mA|90jhcAu_tr>ypZp8-?Zi3)MtUN2|N!X zA|j%JfCZ@LntAi^*CqGk^|!a9{h9P#?p}L7-KbvBaic$rv7?6L%hSGrA6$BQ!OKcS dL`2kI{eO@NB=JH0%E15t002ovPDHLkV1mMiyW{`> literal 40522 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 delta 1054 zcmV+(1mXMc2Z#!gBmu6GB_e+;RzLu^005Z)0Du4hc>n;L004vl0DS-eYydYoLjZ9A zB_}XBJV`n|NkBkASXfvO4-ZI7Ts~K2H%(e%Vq!;1TSi7kQB-72O-*=scyDiSM@n1* z0|Z%aa5G0qCucqYyaNED0|1Nz0EPnqdjs%>9q@Sp*J=QoO#tOb16@f(K~#90?V1f&qCgmhVVnt9Q7dCNw8E5@%s$jq;Q#-z zeP<9EN9dp^=-KxHPgBQxy)+_t&uAKgoC$gY$>fy!8m$RvjltuJ53gV#4QmF?b~v)W z7XKm*LC-P`j-kJba{iE?Wf~OM*JuRj<01Sa54k?ept#t8X+r*T799 zpFSmk*)&a42|!r>0G(#1(@_Fs>r(=>OdjA?4nSBpe}L-_4{+DWr%wwYW`pY+*(R#dNP#BrQHh0WoRK~L2W zNS{l(T_fHp?I#9B^}@jF!zK)z-awhdL67GL1H*{-t*c8>JvZn-!?r#Ir#Bq6TV}J> zc1L#GY?*8Q=Jtx;VbLS%g#rH$KCcZN2dwQ3HpJZZ|5cV1COdf`TcDVypTqZif9}r?=m%E8Y8k9R zAFP6TCH4c@4lP|j;7`Zkutgat$N3QEC0ZQ!$Y?lWJtLq1B zF#}qRW~}@6+LM(z`(%&00000 z05LH!R8&*|W&m1VM*sf+GiCt)|1;pCe_;Rs00DGTPE!Ct<^tGeks%jp~v~CarpLr#^g!F|SMVs*UObB-;^6~UY4aoZcq4AAKTlz+im9sntZqayWe^8<$ZqNy#Ud? zb;3jO;Jv`6aCG33mxW^oMRPjPe+Sov<24q@503{=K3)f$*S{<%vt@%zKg2cqrqr}|U3(=NOGxxm;w)lU2K9y^$t_q5-U zdC3yjRg{r%St%H-;QexLb(w%=zypzZgW4*&oF z006-CqV4yY4`}=S8O;Ymf1ePS4>BKU)SsH24*&Lev%uIq)lU2KWIG(rN0<-z{Cj#n z#C*U!!*n}vSzu%??(e^LP$pOR`^*Ql{XX*nZNJZa00000006ERZNJZaK-=$+`2U5b znGax(`?}44eem)7h{q?}VeLHG4*yRc+F^g*{dn~qoK*)TUPI#kp7{Xtfr;npexLaO z000000Durx<^FCMg#CS0RmXo+A_WNhd$Z{03$_@60)+j&-S(FnTZ%{lvi|;PH~w@w zooyj91<3mQ4m=pH*@*k%G0N@(=02r>J Utv$4D!~g&Q07*qoM6N<$g4D3*9RL6T literal 1975 zcmb7Fc~Fz-8UFwS6d~YBaOE(p+gYF>u!chf6A&;eau(&V2o(jxksxwJC47Mjj=F46 zu#`(8)P*%73L;7%2_mQ5hZ0r@AZH*4isazSmon9vcDuDR{o{R~Kc1Q2Jip_a=bE1n zUPsGN3jhF}BZoZ#HY;cI(KXdK|4{SDu+7qWDKI$6Sa$m$xwKv0YMnrU^TScWSr}*mE#bBx9Wg5cP_Km3g_sy zTh2y9Q^JI2G-ru1_3PsDq`!V8>ak9hovJa{QuCY3kf;OXgMh1{Dlnu6r{UNE+}*AUcAhvMb28l0XLvG~z? zB#B5Yg3dwGFepbgBFaIL)|kk}APnfnK>T6J$m%+dpH>~0j z5qfV8jLUWfwujZeMn43QaDsYFD=9ByS%foYuF%F2jgwGrX(q2Ha}Eu<;dF;+sm6qw|0ek*6|J;h^fy4{Pk;C%nI>@9{R?V-sija6du=S~ zQp3l6K>!*`m#a+`teZJ&3S%hJbKi}A)tuOm+YZ)_(^<@e;Y}A?t$3{?z1JVh&&(i@z;*0+ok1rA0 zOwO-cFd)6B_${VhYm?pGVo+ySz0(CT{`Mj5*uB=>!&##@MUx%Sh&m7!9zWlzko+ zAV^*Qe=k2%|Cf*dhS`P8WQH2;y>5T+cXNsbfy^wg<^9tc319b-<7kF2vL}?UtG8Q( z<8B8T3YDfPx_y;=N1nfv+S6a|MlJCQ7I;y~i@9U`CTTt{xaBzOGLXA;@*Fqk1{numBa z8DfGjgol(qQ^?n7y$x76^25oD6L;9dTKPp_&&mQ1SHx{tSJ2ka%d(;g2mCELq?!|= zlg1j-(W{kMRwbKZhje|$Q}({%3kTX{_aZ4|{=3U^=Fy5Ux|jlsv%s_fmd>T~>9Vd5 zTe|32mPq}KhXA+|O)jH#II#AxQykf(ZMlxaOYNBU$FnEOSh4WiDil>*t*A&>=9xWz zk$099jq##vyDs5+Cxbu6X}gj=qx<9D&FM^^-7bkrL9ydeO*OIpl7*v!Fgl}r5tWRN z9i581AwlKv;gY*<+51Kis(QaZ4xd)M2vn(#dvvYh&sm7gvjrUS^znFjFe39G6b{8r diff --git a/icons/obj/structures/machinery/power.dmi b/icons/obj/structures/machinery/power.dmi index 76ca47047b63c426b663f2f2a57756751e61e43f..aae3f3d69c139671435d315f5507e7d6be1e5a1c 100644 GIT binary patch literal 29987 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

;w>~KJ)jbGz&?X!&H)=B@h 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 MSzW2@kxAhH0A)j}{r~^~ literal 30580 zcmbrlWmFwa)HQf5OgvKakMZ@$?#<$YcFLyv%l6s)%an zlM}kx*6EMERXzuvQJAv~%7#c$qamXa!d#HGmEb2+xpBN@qH6Lmv?ZeIr+}==KX}nv zzRHJCqv0qQ%Q!^Gk5-9g!zn8_3C?5?m63%t7}ZZcP4k?-G$$rWRaFFiBIt4?>r6B? zGQua+WOvG%Ln-VI!#+uUyj{_O->uLWDuvHc|8i|~9pSooqB)_FJrM0uRX<`tqbZo? zO5z~-vf)O!IBpBZ4?U>Yo*Jul|af_(g@Ju`_9&?quN*`kl>~ZkJU1gPizkkJ0 zd>ItYo?9)gAC?#705K6WrR!gIB9vjS%6)2TI{0-Kym>R310~SQ{DtA^Tv8I^46 z2gL5fHvBb`BlJ_$=YVLT7Ywm-^|&(QlzoeV$tO+*vDUz#Pq{-T%bacfC6IBwfxE5_ zWS-<7r1TIdpQ^x@G%a=x?lzZf;CG&feERDmOBs$s!4_ZmuwFA`Aw;6InLSpXv=PU38;*A?t=t``KZxo$jP#l+lwr0hkn2q1 zE|xk$7Ty8#Ah{Q^chW5WlZ;GyLMMr=W1(yGkH1{(JI;$WcU25{VD{T(FCkqvOhN z9O;6Jk#_njANWK^{p;Ei0qAo}2yRzZv^Z+)B<-u95oG69?#3$eZA$N3Zt|+^rA&5a z9p;!q(33Qa5W;@S_oqDrKb};5)ZK%Uc~|SKGl)uFE7zzFMp*R6q?uT>y)N)MxpxMC zr{I6f*MEoK0!FZ*00IOe14)aCsCs0cW_kNy?{&Tl)wg1P>HDN(But)P#=ci`(Y2IWefG_RYhP%Za5DHHvaoCq*By!b zqv-<8=TUvcz=iRy!HwX7Q>6cX6bnX9{r5#S;QwPww){Um1tr{!u`?#_5M8uTmJyV; zyz!ZWYs~H0ow7YcV6?cE^_e@xbN<~UA1^jNJzV5FER4YZQmygf=_!Yp|KsI0NXtt{ z$mg+!{Ml;+t%t?8G_x1s?kxcVODrt0<4!%szMoS=SDeT3X9=6d6d7Z?F+|sElb-WC z!LNP8BX(g=y!irtapkYqC(>%r6k4_2S_y*@ z`1Vjqccq(f6CoEB%O119>%E_C>z(gGr@K%03TtXEX+H$o2CXN%a~uR3ou<+~ z;PbvT&>h-SID`dt;Ot$85<_%9{*AcyGB&2H$`TZy#}j)NP-%1i*nWcMKjrfXC44lJ zbQ*Ot$-TQRWHOAtrmO@Zyy^qmK_1q4=e{}EnY3Octg2Q!7r5vkic*nuAr1_i2gfuD zZkx6nbFZwdfItKU1T7^N%42s)sd@fN(^Rj{t8Qvf`U1R&p=hKMJH*pjNpuHk=1Z5` z{f;*_)qdLAL`*qeaXz26(Uov+12s?$#-fZVc*Mmz>b604jO+^j?{DDY$;p^f8h>~v zsL#f8n)7eWCtb-g?8gu#967?zwOhcb(u*hc`NtTAjy^Kga`Ef8JPl>MwUvHisYB#V zw4R1)gm_SHfq2~)!YgUoyy}5so#hgJPYy?XHGA^`#X}4!>oXj4?!4Wcqux8-ipNnPr$-i&uii+Mf-QXIZQ5>+YrS)$HzrPsJ-oGc)N3}@rwoVYj) z20FR1Do8ZdH%&E>lU7^-F_Ru+686bg&{l07o66m&?3{)=n2yw^OD#yk`eVFbu5*Uc z8@nCn!vnX^jR3)uxtk*RNGRR_G0PA0#4(3_%c?bb(kLep>*mFt8U2Ze%qCHFkp{rh#N&x|oK) z+lkumm9-5P9#kM1GblXClA3)hDY*}&*56vtRSb$EIP=4d35 zMEheHkd+y}QNez+kTfpF_fVW#A%yg1DH+E1uBnv@=)NfF(Xs!(d|2+HX`fSAz6F#b zUAR%Mt8?{#-Fbzu8Dc<-pp&y2g1z=#p8`(QMiV++E-SSe>K+yp1_RFAM zW8M-?$Pn|tO!wn`vwnJm!X=JJRoo+1?R*cO3;IQ+CSvo05D?Ngn#Sab+pki0Xl86U= z$f0P$&^_)l_&+C%Tpn|Kn&~5o{LTcwJdB<=-Ij)ZC3e6sK2x-C{9B5+vgiY`{NU(sVMaE{||_lg@nJdb&9{ z;k7$kY0S&y5(Bfnk#DutJ`2oh-0}3=TC1Xk_b-9)QZ6t;6)6CgV zEpAH`yC0S2ier$ilIkDGZ0_PH4QU~SRxZ`d;z0~Qp_W`*^r}Z2W#GWTkm45;L<+~* zvreM#v+5t2ituS`4*&d2Pfs6ouHWipTJr1E`I+G4xu5(?WU<|}6ozox(H^OtcE3c_ z2b%YS)oy>Gkky46F}7{zh>4*<-yGw|mU<&?JG+i(uXkVZY+sY#hP|Z461i&PZSGai z?tiB*#?stWqmm6Q`lDgxrw)zr<=yPy#?d_{o2B@wdM|4!f zQIfP~-w`Bm)jltWxk=JxB$_a)W!tJRIsJ2|-K{j3bsxdUf3y zI+w!!M{&f#v`xBXh^~T24{#UW0BvdxQNT6^OX5MJr?&_mwokz8tIs?-UBMyUb<+5v z7Q#}vw~hTrC@v6XdF~EOz1&hWG2vl>?R1v}lto6=4jm0?0YC0#dhJM!%ONcLjG!v< z#`Lyt?cRLZi0dyEZ|}krJ)e+s3$e<;{I!71D@N~EJ?P82-}I17U*cZbj4ZU>KrZ54 zuP{=fPmm@(AqFlu4QZ#F-K2oAg};4ED@Fh|v*diRzglOcC3WXgt8WH9Br&(0&S}~A zaVo{aly61W&I8MX)aC0b^zW#6kN^Z5f2x$`&y2oxQ$2JNPm%(C{?l8$`^l>>k53{`l zd_70=-)6(Jf_kj`ADylv9CrrEKYoNW9?aTv=fA+;YX^tS9$zgI$Q0N?hoDI!Hl}mB z{{+#N1^db=S3gDTOtP>|cGIuoZAxjkW}Oh2_J!^v(kgG{{L-YFpJF#xe^$GI41ewC ziZWH$gyQI?+y+&LY;}70Ux|pQE1bXHM9=BzX>!RS=8j9q>o)E!jrmc{23e05TNJ*U3+G4z_hiTUjcKc$ z-8feL#s0ijNJ8xC2Hf7Nh!dPW0_#4dpr5TlWXbHNCL`sRoP2C_;~E9CiB>uL?sI5I zoz4e{UYHMXlymo!Qv2iUz(xm_b0E?O`^M&8+VK?0ZoeHL9`bZ% z^kRtar~QodQOnulyrw3uOqF{&--7boaoTQsHHY;)Qjio)rhr54@ltYfa>>z~>!9*> zHTegByXhyt)jIi;NH6HMr6v6F+0tpNhxu7=o>-~IR)yB!4{f80(~v#9sLh9&{RBx)cnP?sqGPpC6SlyGsJ=sF zg~Do-YQ#5{fh@n5jTZyB>~Bw0W##45Gcy!K&N&yzrqCz~tQgBj^Dg{6xxLc)oxlplOkFj(hDZiF1d;UAFkaZ#-O*{=9{%PU z(O>{#q`d^=TL`R0Oc&VW{;VRcp!e_?$U;a-zy5)z7xpF%<(hn5iF#hTqryB9`TLX&=5xnsf(@8*o#$EZyqs~-UoINc;)$Nz8ny@fw=zcY)e#^VzlZ}9iS>6I~ zqm3u&QO(5p-rkTms_-YwVhT=nPs%SFM`JBanj594Nun*0=P<-}Aq<^UF2T?k6#iMY zswMAC&&2H@Xzr;s>L8Qfcb6|aFYpu+mq+kPD$s=Amd^wFwZ|({qghriN&fl>>Z`%= zO(uzzHw9A|1i?dzj%hHPG>CoJN}207^MPiZ3@KzKHsnwVxjwasqgtMV67K<^l-Lq& z!HlM4&-B=7QSiZ^eFTZZ`_032W?@)abZC*_KpmJf0=)6npeV6YQx4fNoYYhXRkfrS zYK5P;sxWf@PKnG!@@jA&5i9s8T~bD`F1Lywp);k-@!?FC4b$ZR+~Suw$4G_8EnQd! zKDQx=wyF10XG-GBf44XcdO%mFDF-fG%wQ&lxMS*T3qvelYP2}m5x z`I*08KZ5Lg3?mmTuC9)oDgP1pt7<>zt!EAec<-VJ1`7u6{fx4@iV76SV=EADsv|gF z6df8vkROs0Qvkz(@vao*9~)hrW!D$f z^7D$-DoFF((~)H&Z1tjDLGeu@^B+WfdU`_t4U1b&4hhWBc3(zAUtVFM*douP<5fQC zQ~*qEU{O)&$AB19G3qcBWLo9%1_*7R43-$5r(74mGl_HqmK&Htk>jAxKV(zM!dlD+ zBMHcfH)m#o($fh|OilBOil`5HfDNTKH1NHv7(!2H>wDVY-^_xvECa!uQDf?;BnTO%eIr%}^aHn=BLuvUo#9;nCZ3mfLPBfhm)}dK zd@17ISu+Ex`Gi*Y2@;N77n;y(P1R10_c@QOANVdz_OZ_YErFQNO}5c?Dp$ng;d<2g zS~~+EPhyWc0v+y$FKQy}j!lYcYK*>$sxP>!71!U_505SEj=$c}(>{XS%Ewp9BlL5m z=cmht7mHhHglB!CJe0Qg`2cD(Sbj!~vf*g!yk96YR4FIfk|1rJW)FZ69dO0#&YIUr zWzDk9u-|cMm|sdgjl3#&fUy1!A?R?`q6tC<%_?-iaA<_f(C&9Fo1tk&jg3#hFJ4|Z znu>6r@`hEPD2`2GQ=H$h>NfQhpKL2P?elTyPV&0C^zK?KDv79zxsf zoGWEyV30}iBfHuAXGTBR4;2~>^H$;tXTO1`jj6I`NBjhiZ{9%EEKV=43O}}II%(IL z=Kpk*(8cs2Iy;8E@7Iv5=2~#;vfA>iw&w&x2Cq+tO ztDCdbO(xv})SEqM_IZOeV+w(05)%JcM^KMiO7+>cl=0;}v**btEhJs?6^t>RX6)`lzm7`l7Zq5q(ElBrjkjW&Pxl-->Dj%E{ZzyAYIZTTn1rOo zj(Lxc7srx&%z}F+^;t0<#dH_RqhM1rt$LORMnmsgbn|A_?{J*#s3xc2)opr`pF{BY zAR0YK0?-!sdn*X!Ac?fz7#?`Ku^Y%Rbh6!f|eHus%dkmI? zNF`$kkf*0-*`&nLM=NNHrmkfSi?}}+CCksgS+QoK%Hn;QpRKW?&8SW_&TNc;fuqPQ zBgh}Ss3Ek^hiv+4{47J?RAXLmlCwa)cBqFcyPr77_Le_)*o#PB4q;cg+||%C{0@r( zxkVZ%@3)r}%NKmwb~PAVMV=~X-tSxv0=?h0o0d&#E#jATVb)XDh%IvSLCSJ~kB_a! z=c4nnch0-tbsOdERWvK^M6;t6ql10(`&z<-)q+zhMD0Tu3dZnaLr`tkmQX>O9UhRN z(vj{Z9vHWB6ufFV(V(8U`&i0tAZMNE9N0Y0`{^{3I7V?0k~ zik=To!86Qsbb%YFc@mlZ$l#iNsASm|%`BLa-%_d8mS$s!1-x1cAq+j5H+z>Rgh0%3 z;Qh7bUhqKi>65NJ^S3?A8@2hb`0y7;6*y-St3H8`Hc%v=jX2KdSb{%_V+g%H7O*~> zi3emCSz_QHeN6PLNeee}jMh9sVhrMznWuujl<$V~pfv2!EKrUX+Mlk$M$lFx9xSvz zY4uet@5d36tQh&dJ&RbSS&PS@4$^KaEWdYm8H2lU7%;D4Gg|5WQ{6oQg0AqoFDfjA zPSJJyra3M2`5fQctgRpiC#ODIM(F&`I&Z;%u=E;nawczAe8 zmcoTk2cY`>4iAKaslV$F58&~epGIt;Fr-wJmzpduY+MPZzU>^M3)Oy#zS-l|;q#)t z3RPejE-;{ue}e3gm6&*FKS{R^{x^_YRO#^FK0Hr5LvZW*KGWiD$@gcgDAN}|rS1?Y zrZrogs6hclMkP5AzG^*z6sqjEl;Ht;3A8IRzM=GV1%p6nBP9HE?Yb$Is-L2lfcaa_ zW?$BOtl+6sK}NYF9C{g$MaWo*pXYJKB)O-^KTZ2I+zgyo$LiC6wMX#AJL zzl+O%+w`+(1N~rx2T=ZQ2CFX9d?>e&WBBMQIrJKP2cU^G;wQ)+HBOmjZR*k8l!)l) zCy$r2uVYKKW2y-(GXV%eQpjV`!s81uU!ljYWVDac7Fd$Mr6tC(ynmSRr0UQ9r?j!x zkKutf=&uNE0gs)^Q;!L_4pf@`!DnS4ULy~1^P=22Q(@E)JS%Y;2!A6c_L3;Jz>q88 zXgk(n?vS0w3sO@{^W_Ba&XqJr211J27-BcYye9dy zsgI9wNc6twGE_ug1QvgiV)P2zFhH<-xexi&Z4{*t6bALV>^ zJpZ^IN(ut?hoIcNL|1znRQ<>hBz+Npf?4)BUHy+JJx`6Ep zhsvGfIH#dCrkMWU2<>rOSYp-U&L1ul=~TY( z{`rn3c-U-viSu18r`z+6Xx_XMehJyPfWp8qL1A^}bg9WTPVgwS+<#KwA-M3aJ_jtT zC**dD|F8SC+m{U0p^7g1#?6Nb!I#rmmoItToBlH~L2t^WVAJQjA0b8LcM(Rd+mo{9 zS`?`Dl!^c_$!}Jyw5ZO?vtULYG$*oR?PB!cki&2w9X!ABOrz7lct|zt>804xJXRrM z5rLK*bt&hzL$(^+8AbHwFr=j13JyhPp}5`@AOu-HLz&I4}-lX^Kc+C@)SCA5x)E#W1ke0 zkdPRg0Qg$m;iH?80gNAyz(6Sa)2m)k zgo@28lw66~f?^s2#8S`PC!0#EjDsIn1D|hk{OqhtL^9o!!t0Yz;W`pq$HSMvk1Rt=?+xM zz*9gr;hzh{BKv=|x$>I8*X?3bDR1@()EDChtxpwCS4ArLx#$hd$2%RR~f6_4v>muV~*>VB}bZ+y%t~8Oj zo#-?)RD>27GBGq&!m;4Wu2pE~U^=3UWnxJ;m06gie|7N<%1~em2qB41j5ai~Q@v;> zn=k@7^umaX#JpUJ!hwQKf}U?ZpUjVV^{Ttfpcy$BQI1IYN2AV(-~fc3_Iwpg7CvT& z@;0TUY~wuKY6`PN9yY*;iG?UhI_BJ=Xc^s=5G;I(z1Q`S{s>!cb;hN8S$`&M_TlSH>|v)WRHw{U2OFfY3~El#!cr*zMnu_s~lp zMsY);X%j989lHIj73WwxzD-Fa0QR6Vcq#~HyM`L1;BJQRVfvgUPh0E&2l|{PEFuEo z(3>s#cQ6Mn+qzCfN*trxx2tI-h+ZHiwykA2B41qA5fAy^)YpROEVo(t`Z{p|CH zk3r!9BSt+7p|^mB9syv85i?C2=N`LH*AcHqd8BAGA4*>1{+>DPa*`_P!2EKix3ac| z0F92Xf`cZg$KhZbtBxMYJ9!Xtueq^;9+>Z-JXUc zJ9*#JfoT3-N}(jeXdvryJogae1C^v-{Z=wBlcs)g8UTB$0i*f9fntD$kX3uL8Zmh! zM{zGkWB>C9Sppm@@zQ|-&{hBjs$uclLZvn<03`nL@4B}-(N@rhx-PPCM%-t!f{snu zOya$IeN+QRnRAM3^4@jB zvfu(yUqI608Ar25xK!xduc~<1C7V|G>Q^f;r#0^OmWXW^QHUzdkGPw|BOz&KcI4c@w{KqT$1m0`VbnY!UOSGeq_g|; zHPgbzW)2JNc?EG*E(Gl!H;*0(i)r=Pe; zL`39xc6$_Z?AX680oeVpS)Tyr+E`l1>sEXR{C{YB<5|ZI;;yTbPHeQP&;Fhe*z=EZJotc^^rZU1(LRGwOGJxGH{6Y>{>x6IN9P^=G){ z8$HR8A2E1aErR_ZPZJiOkNy?Kq^`9aLXoK4&Tt{x(bk(!qJDlYtf^6ST`QK$$X`%T zJAC#f-bnsatL;C|hXw%xHVdfajxYM=vLEf`EMu_=^Q896n~sfk%&*DmH@}Xf8+gs1 zJ047f!MWYQ*0XzGdhwhiz5ko-oqhFUrwFw`h*$^U3mZ_tXygSn0APT1%g+jU9S$z8 ze1IE6}Sa}phs<&*_wne{&s{N>DZvmSRpz^OX+LVe-OyyL5TBsVa9{hX9r^W=xt;ys@} zE&DyE!`ir63C(=;Wxu;~GG0ziwS0>HG5+UIFFTg*^&8)P;V`jyBukFi;zhYmn{CEa zhsjT?3^Lr|hi}KwF#ifnF7NLf0ddf@(fTHy+KG9qql3R@QkWldA&BMb(OG~Sm)!(eu%6%x)A4@UY{pKZ|GdZ`5Nm*x19%xs15Ngs>dA&qEOJSi(#d>aMu- z*z)t0%%(d|!h|Xv1T&2Ct>lT>2koc|`rqE3z2L5|8#2m=0}%4@W|o%1a=K)m#cmDr zRnULeMiNQt5ZRnkK6=%2;QnE}T75RS4cXx+=$cTCN;ev90E<;j}T@eS)LZ(RVvZ8=hh&gc>`G?1DA#dfsUU+{XGYH*UBS5srN6ntp6jexANVC_UCBK!BQ(t$w^)jBo&gbw1`(*_|^C9p;@~y%rH! z;}L!HmAp!vWS79v%LL3=^G~D0y6Z>{x2~$5Z8P_*-@U@hp z{x$gnjReV))d@F%fhJ8bPQb}}zP__0|3fmx!f3IS_%C~)oG1`y&``eq2Kc84z(oI- zk^XPn9}B>=u-JdJ)vIQ?R7&Wxp?lvm;LpnPAX4mBac3nQW)y6Efpa$Gm(-@def#FX zn+5!}oVT6id&(6mJOkbOl2}2}$QGS`_pc`sS|V}F|Do7&_5I9G>t~e$da$P=5sM-H zL6!i-QK@vQmfEOt{3mqiQX0O}b`;1$SJ?gLZ2FeV`LK*0-st}EwHkQb7RDoV=v-~7 zp_ak!g4K8?-%wVUmNr)R6`o7*$H_bMj_cIzK~*g;@3kW=XhV|Q?l=}44Glb}k8+T! zSHvNxBOw{ARP72zlcf=H`@Dp=?P=$zpfpfGRiR(YR)+a>(i|FSN%$YFb2xdR_{M`ARfv*S+XoEKs)&c8QqP63Q?Ts)aPef6(DI7s3 ze8{ptXx9DjhaofF^&plgA4FUHQI;r?`@k^a*Cz@;a1jgCnN9ERs>O8Qr|jTh&F>|f z+lfG1ZtY61d!#i7bE~nZb{fRmiVysm1$J>R*sBR^LswU{?^H*bT*=WVG{h49=j(@N zc9|AJ2pSqG9YQ?PJ;OFTS|;%c9nDl#x9l@0vsCaDpWD1eZcNq$>Inv^`ZoZ8${WMQ zM&LfVB9ZDq`={sTIy^r+Cg~t>Z`KBereX8FJLZF7=^x0A_YN3>FL3eytZUg!-uhCQ z^Art!a|QJ*QdS{&O$4{mJh!khgLRv|CM-m7Y$X0mPMz@V}Nwy2t!W&(a}M{|F}gzev}Hblou;+ z1O;%UIdT+#hYa8o@`{6)ExK880`CXy0$BH2Q1bh5J}WV<5FQyMt)ivHiFftWpBp6U%yEk4oSLTA}Opuh@cxw)B z^`!?_*P~4|+Ba+U4?K_?`5t+)TALq<7lCC{IX?cm&9%I6bqzUX6b2+E*93wJ9OHnf zvdb;c$m1K)TUs8V8ZSJ5oFV1qX!`=|xEhXw3}RCTYUzRel0&PGg|#&l=t+;OUB?3I z5_UXD>=x21GQe{;BSizcd6n;~=0Y^pzFF&|C=a<)VH|C>TXKFkq~~8#>7j`6rcp9q z5>H$Z{z*YWk&xm-v;@@$sdoi`<<0laH}$sn>dq$kp=c2{Loq>igcu(M9vFNM_?EY4 zHIX~fu6LQD8+{i?x)8L)GSS%>(%z2)&AsvI$THg2F^h*^FJg8Jsa#xT_Tx?B%ADHQ zl{2g~z6wQ_`60irJ=ueV|D>7c??*7J9yl-(1@0%T*w$2$APZ3=NGV`UoyY62&#SDj z9_{3(2;Pgn9x=0sWJXSlL_HAc>xl;l(ppiKzG{zAX8%takjH z6?G$Bi60Fv>i-~rYpb}0qUc80TADu`uBSJzK;5fIdZe?Y4UqEg? zF9P8=3UE;Uf&HNnAY-6prFk`q%B=T5oceK{*)O`mkD%saHB=}uWyeFCNLg8V%guFb z!kP*71oy`m{$nA(=cAAl38a+KA7%=_Gybv~+4b3)>1jr$y$2U;SVE&0lZz>)7&Ger|O%zq4}$S$Me#Sa`4b)Ei2n^NKsk z?Q@(%%QM5E#?F1r!{3u?3?-^lqNiwLB-!-2dcTr~_YnX03|&7xjD^m6I7>QdhxT=gE{gg`zDop=q67aHiknpH43f*^y$4=4{ijE{v7ddUv7QW-uTG&6y_l;_jMS+ zAveu0{Jp*jzjT|=Vd0oU z*;}57YGIb_xgqsSEdtR)*+C5lc$25YGTynlmW;XgLLO~vYilEcG`oCw5^ub78q&R;xxH4y_Xn9|u$-F-7KNT_?6CT&7tbs>< zYHf9zXC3M*9I}pYhk9}HE3@naP1#EKw+yCC+e)k0D%5G#Tx>n0e&&VxqKw#Nvl*Q> zTWq+~e(_gKeX$%RM4t%w(LzVWqxc7Xt$ z9xIVu|KH3C0V-gAC15IcY|(5KW(vA=rBSt8aH~KFDIO!Zk5R$9{I+@G8%BKB_~65? z*N8rLz99eE`u34RdIMqtjr2z4Dp zAJR$R!?%Ni#v}N;`p~W4fhnN)@S8JTUTR@GI^ zy}g3!T+5z+6eIrN{x2Y_Y(JlL&PRJ$+Smlo9^Hxs<)v5SmAjJJG!=*47EKtT)=1)l zvfM)onZqMg=exEKWwPoDS^Jf}tNbvFUZth~SUhga07kGp7jiUU-dMXu)8RSc?dbfb zRpoyLlZ0SyZoaec*&U2jYQRa2&h!X6?WaTkYQ@6AM{qtN5C2OSW$-m82k6J+-P*vs z(+$VLT7?f+=(#!f8SgH4b7T3($xz`?k)Oh2x;_g~-p&G4Jd~v8CO^ToMepzLmz==0 zqf)OSM{)Rn@_l17Y7oTmjeqBKr5_y`QMT}Kw03eb+-;51)zfZFhT2M26& zYi&|M`*WpNlEMq@BYCWv6`(9?pbA{CZ|)z>nNjtgf6sowlJnIw+sxh)yC5eBSW6x% zeF6I<@;7U|bpR9+WCf1i;eWmCFY^^oLvbijbRGMrBaX?QUA$yJEOOm__XM2aoKd=+ zFG%yXA9CIt09^bkH(^ZRn{)kw=MErB=mh;~yW{p@Mfq|3x8JVOP;#87?bde`4Wy9W zio@q6{RCkEgr;NXnrnA=cf+~i`ncrN!3U^`&>ya)_h=9fXMa;z@;&l8GMT%!-LuKX zksv@gx^|JN1|s4qMBgXsdOlI@%oXrWot;bEl~-FGznd_ETynP(v0K0rP$)gep>`4j z$QRd1Lg0}L{$_nv5U2*c>!>O#*L$BZ7IOwW~jAtn7|WMXV6g zLv`=00_nn?E?_+#Na&WdqecJgu}aMYXE>ltogduLb@7r+3Oau^A{=P|%V4pOqDe8! zF|aDUeW>`ib4vJb>1I@B4W8bdEuuos&~nSC+htGAC7hJwJG#r;iOx1Mo^A2^J+b6}@JZn~cv%siy7uOW*?BG(m}( z=TT0?$jLsFz$|Bj>x*O?EoNseuJctFB8c^>rML9^`)wS4=|8mqUu#qUvulePbY`QR zua2Kz*ZzaHRs*F$=ktFeg26r1FUfWNY?M{YNF~i_B zxm%GP5>@q0J_QL^hAlom9)b#v13}N%tF9gj>so$bXw#1pO(;Fqy(}{fDt7FkoV06b z%kN0a$vwBTUFIgUusVl;-E8=T|9Ni34x8Ockoy=SY*;NFZd4g^C=r1Dc!vpMi zk307E-9P*+Ef1aAS!p{-nbndYQ(a~gvGV^>V zI`k)@<@%S9xMVxGuc@0Gm!Ie8rpBn$fKQGWC!d_PNj6ooc6r}BA|CgB6 zxFn|BA^`-^YR&vo{|6Mv;_SGP@@$)E8Q;#r!op#U6m{)#b**8GzB{PKt7n>h7R35h zgK@j>$#O%F9jpj>q#Rhd3VfRXm4Y9o_>iOXlf(5mb8~N%a@Sq%dOkCiEzQD?%*spT zGw*%OUhC(cgU{wt6ilS4yXJ-=4k-|)NXl__EqMR^(?E9}c+_bjI)deI-yW-fAWhHD z|8RFd|E-3nA8FgzxKw8hm(I89m|uyaF_|6JcD5R~(Ji#1kl8bLG&}A1H~4`t1O*D@ zqwU2E+p^lb0F|YyJAAxJT3IEp+SLRB^=vLtxT)!mSH~7VJ+tuR9Q1s{G$x!vWKi`u zw+MwLE&?e1rX$#%+ALU)Kn+|z?*|DPA#{nu7d^Q5*Y-^?DyYVE6nCC=dI6=7^bo(` z7GeuloanHerlB{zGUl6}uMJlT3O-2ibt>>X9A0UiL0-)ll7rSY^A9AORas%=i_Qai z18zjZVvrBc$@i~Qil9)-AgG|YyP zt;9-yGn@4MVpwl(^keFx+jNttrYaL|)5bunUK-(#^ygZ0G|hMza6-HiuP<-Y@)_{r zUt+l`A1~kZncGg{cK`JJR6s=qBcoOedg-T6!pfMu^4Y%wnm6wwKnWlhpBB=9M7pEn zc+6L$qwn|vHlOV}j_E7>Z{!-pbA_l|iT~i{7G;sQcQ?JIgtq_H(r13%o}?5kIs)~? zQ_C1x`3Vpc+4@#G+uK&T8{3bQ7~Pirv8^#XF|MaIaK4rQC4lO&%_f3w{%5)7 z_&8v-clS3kfT&x5khZ&ngoL!G8oaaGB!aDBVIne<6CMW?a69>JhQM0N9uIz-kr8GA z2L(YUJ(2Ja|2kN$(C)U|W;2{SE{Zgdjdx;@>955#mWX+_x)Xk14}^0dPcvlO?si7^$1E148vSF(AcGCr(GKaHh1G{ zTB8`}aGe~EE3-OyZ-4Uw2@?b;E15_X263$VeC}#Z-E?Tx%-=QY61l>>EhE^oRTRrr zNe&>fR(ZXCJ{6>&%^`ZR^U=pFO6~$6BmtLXZg}BMVK&I-jjx!BN~(f7YZ-z|X7p zi+A?l%_y(Gw5I;Fm_{n5Jl&bSx)avViFSO{&o;ChoSKXe2KX|EYeWCp`QRl4)Lw;L z5ZRW4H5Ows)onf1b{j)gkN(>|H`T|FFno=q%gf84fL`!(!TBLZCYuGk7T;>z@U#9W zt&-IMT_(IO)+OP34C+1;_@9xY*aT>x2-(M|mvp}=AW_`&dpw8@6ZUmH#Xdpy^YySs zWex+aH_SsJY0|KU$aWL@%%{`YHgRDslcfpI_-_ml}Nc=Nh zUEPhx!Y~fc-FAk5;%4&QyPWdWkkXMrIk~zU{!R7qdA-xXU#k|9KqU$}%kc?HG&y^a z9K^4yhb1drjpCX8wR3UN_5D797#;dg@LFW=c)(g9?gt(wvbekMcCcQ!DncKX%R!Mb z#l`Pi&eH{>aq5dJqO;KM!W;&v`P_I^ZnIuI=Uvkq zqg9ZuTx^23E`ZAMZ*B`9Pol~5x%v61-Ce5gh6uVpe-6)&CES(S+H{y&2)=_#E3soK zdZMFIE4;w(EVkDsnWu-r1M$#<_|PH&tLv4=N*RZMmYXUn1xUjZJwqO-JZBu5jM7U_ z1LmojLZ}HevH`x6B!$0<3=i;f$flJ{1Cov5^&bW$-%rVA4w;bOQeQlevU zvnXNTlRUyw!Xg6$i@cq4q0&}1sHHOg9q{j(jM)6v-CgX=%beAiTZEu6B$tPvd(-Qa z>T)mfi?;prRCQ+{O>_bjBiy?60ktsy3K{xB%W@HbZ+*}}mgE1mwfF$M$k`e0G@03u z1WS$IT2uD*d|O{%-#!=`NOpigd}b4c(@+S=|H>dbL!6XM)S)K*_hp!CneE!7TWZR} z2`r-v)T_{gMSj(IF&))B|_xTjweh~>7W)^f~ zB*BGB$7(gJ81 zlFpi#=gV{tezNKm9%r>mhe3nJDm2?t?DYacnt8dqJy4;SC1HLiJdtWxCR3ROZ0uDt z@Btw6IPZtlf#sc9LfK{3YTnN_O~&$T@sTAh!X>p+h((sHZeo?z#(|^mxH}=Hr$gVB zh>XNQN5Sy@LI!$3o&{$EbExO_cTm0+Ks7`Ewn*lqx~+M1GXG>* z+LQDwv1(48>xCI^c1tt!_MfErWxQxFJ-RqY2vh1+iIbMq9n=GCiw%P(m?oFoW1}x> z<&c4toIO$nzR<>|_;TP+7R9dhutu#H;EQHiSlRCLEhM68v^m-m8ALaV=DZDuXA zr|v;MZO8a6kTPP+#=P0Xp=;Xb&g&kF(r+0Bf7UPm)=;R!`|9yV99tpSzKLO2^mMUT z27Pv`O0$<;QhHqAykxmOnl=wdrNz zO4^6Vz{Y3%G0aJS2W51cLY84kZ`M!rMK%lFxG4cv+vn|_(ab+c22=UiWh}esS{I#RY45V{4Akbh(a$AKRamJ2QoKgWa-)1tvj#xi{|M+;=Uz5Y4wxGY%Wc=|apdKR5Ydet!+e#>M~u zG?C-d`b3;&xgU{;K<5hs7VI4z6DQ66an?CGvHM?3+PO2hnVeC1-oHSS`%YhbbX#l9)HDO|g%HEJ- z<`^7Vz0v@6vNr3{h#QCFA>XXZ-KVVnk*!Xt7HM0}4UHthudQ@wn zvo%<~%%h-^0EQW;f(as=ra4sDW7i2U_oijN_bq^yO1sg0@Lt9t_qPT4IIP^-X}#@vs@iiYE0B?mi2ik~ z%T@o{vf5u3JqI1IR1F46qe0UmQF!D-Ur~-XA8AAEgA$sq0#tL_5wtfs(n=eIN?9H( zARUXOre~uNF)YNI?Ahv=9sLCxV1G+tUdO>SM4xa#m4UM&-;-K@d^TE<=(X|=Eocjx zK={a05`gNt%q2kTeIrtueb4zvxY=6&0Sft-yN|SVKT@XJ1Foc;qU5hkuKiQmO{Ep+t zipngD2M_X;^&1!5PI_Hk%aMduk=zNUECC+Tx>y#X0#(`B&YR*uhfa%4%|)dzhuWqv zAM&+LMaJgXf3=8_S5&5-_dIQtA=tDP%aU&MPg|?I$%&TADEW%Fc;l9hg7PpwbEZ<|A z@)VNAz0T<#qL~vEZF*uJ6kpSC$*b?&)iXZhicazog%|&JxT#m;+_iOOM)WIXWRC3nLZ(0M?V=*^+}gJ7y&%z| zTq(44XNY5EWyRu8rQKUQyWeZzm1)anAXCg7SWN%TIZ({aL zo$R;REKteJy|r6VbLSkp^;KVqS?;N{;@6(0`>2Wv%o9$xw^YF5aom%YsQ$JC$zMmJ zv5-2PydIiD?iPhe64C#-((1w{fD3nV9yoPaEaO?BycO2}T{^$}Xw>)a z3CqLV;#?T)>h+lyYc3G#+g)iA$RUnd6A5B+=1Yyd5e^S`q|T#Mh!6+k$ptPaO!1<7 z+|E^)d|~^tjlAQvuGiz9wyW|pDI&EZRNL5t^-m8I=E(7Wr?naRNj`d4oe1Lq|E zgc!Gb*X}J!3qLUb2>iovE}bdCA?c?pPw(;`>YIDd6vnbnhk{@%JhhmPME7QX)V>sQFOyQk+D`AyzN`HN-)jnuFl&=TP0 zX383#o(>1i&~NX1?@D>^-`{jicF;AcenKye&d+O}~7h(7eD8S;>TvF504!{H7?8eekt%T+N7=JC{pKbuGMkI- zMGW9w_Cvp*9f2eO*PXGEb(<^>_Uo+Z@7wwe!0O=7E%yBltu009{^C$>ysYox+oAJ| zIF2h+(4qZM1t=0RIQYcZw;o2jAKJ*OlJC*1RmbM&w_1la3DQ}OUAzCu*k5jvCIYXi zvcgz+Hq7I2-b;*PClt=IW#PH#doOrBS2RH{DA28&sT#wgsH#d1)_nNSp9nCY#O9;W zhpqe}N>zhLcPFvlkN8gV-L`8(-fjy#*F@aEY4}gHdh9}Pa&xQ5CwbbEZv*oK**=|h zB8N)NA$9Xf0GeSA_WEY$9A-W`Dn)pEHe9B66?Fxq`h;By zRe0+?nGTLANR#{C)Wiw~(5b1bw>_=R3BpR`$N3A7t3L9>(^*isP{}=EyzjRVHmPrJ zd+H)}B3HE;aur-WTvEHcyZM@rz$eko6MDZwiyHcZlXmk$e$mKg(`=@dl#BW*`Ez=J;OWdqI>XYPP! z(_xlj(?<&qexpzVa6R_=`i?6@bXYea`726!wk`s-1c{WSlG1+6x_7M zqyg~8uXP&1zrOYpC6R@0TNah59H_an6&{-#9KdZ-N{4QXeOI(vf*frOXWx`^$vj&d z%>GG4Le{M$dQ1|+n-3nizArxk2fFSL<>&m}gmn(Tkyx+u17ufP7JE4n<8&!S2M{5* zt*mjEzf18la0%fX<@##*x(Lu;!DiX-Pc+=>uVzBd>`%q)@1$S_`n)?r;0|R=!f_d@ zhD~el>sBNnXNs+%Hv1BgUbRO8lC%FX z`cm_n(V4gj>G4;GJ<4^q?vX5_YOm9L{Nub%drRD*NuJ@ZXO zY@gdQIyAc6FH)8KY^iN>bY#RmHl53FMC;Z0{u+s71AWx=36EE6E6>4GpvB=pbA%V@ z`9$=|q4`4br=+C#v-(275#Z>M`L#a}Yv%h9gmz<7@MpQW)rFq_ez8^Lvu9i+H{!k7 zWJ75g_4;BmJn)Grmy1+*1uk$=P^~!exhkwz44m zR_xUUSCNjztSL$7AZ5Y*L0jMUaFg4YGm#}ntAL~L*}>?WMaq}v=H?Bd5bQ2ETBjk? zTSMm#4p^eiTZ^SxwcR!`&8jj7;eDxm6>^LdOV#HsA_whtFyseUtqlEfQVl& zn2+I#CaABzIL%NR1QtQ{^GcjgwbV`*(^*4e<99YTK7(#&ZQZtm2T(cMuovtg0by_2 zwx-i;VXyQViClz30Mm&HGr(_|4V~GW`#CnHe`T?HPIOFv@Xaej8u4>5ahSd4eQ^7< zV3CJRiTv9|05xj7oq}7-Ua7A1f@( zyb3sJe#irc?E6nz%SP7Mco#?zVo9sQe{n1V=N9c6@Y&6D1I4(}x{`kc&&$9(In*_7 zz}d-A{%>5HOa|W_B7Aj8Vpz+YGVr&X8U}9Z;5jt*>d$B?y_4P#nI@gjV99CvZI}-< z6c++v%)$?r4Ys>#&o0Q~bYF+%FZ!>=M@m=(dngs|~+JM`4lv1yv2sK`W-#TMH^DPV68yfz%IYeBZ zsRdZI#d2Ps+?)4XgX-gM(l?LCxC1Y#MTze`Q-E^K9UdMcHurFY8gO&nUxOM) zhYd2~n+OQ}yx?$N{4TP~i17^sGV9KUwl6VlNb-E}b$D3k(_@b7H*WlJglJ%Ry;P|2 zu)5M^_2vyMV*(VFGIll*{JR(Ki+$JI=-jX?X^!!^E};|9!%XdSM;yOqvI@E)w>A$m zghA?u(*RG+<$!PuD^^lI7gvNn9$OtS`X`96Hfyo2l_JJnfD>#{Cdxh9o!?@H54&4h zTHehw`3aqzITnH86cM(J6122&!NN6XCiP;npX^q3fR@B14nWOEwn#RD@U~v2Xz12! zidq_nNFh={mKizsD=bVFy_y757vPUUHU;{sO_o?1`CO;8XCnq!&>tT`Ta&+c}1WOd-8{{r=Kx1-%P4X-4t=-M%Te#;R2zC z%s}R%Hz_7zRYJ>Wd@a*_@;jZ}oL2?wj(a=YwtHE#k$eMf;K z?e>kO{^C#Ej0Fy^M%Tqn^A2-J%7O52>zTrNyWo^~x{zUoF*9?4KZ;=jV;rEBt$357TXBs>1Nw){=L+ zo|khZ?_P5`JETOcNM?GkajeMPgEpz5n8=aH)0kz}X>lB9)4|Ui+`i)+XO~<%ZC|-f5^5=7Yg>tF5I9|e4RlMKLSXrF@@i8QJRr`5Ha`lH>rCT2*?Za^cn&00W z^*3&X+)q=@#puKD#p7ho(T|mttLKhnR=s`J7nWn{?uRG=z1p6KLj}j|UL{XA|0Ja_ zTGSL(J$4B8nI6zoR+d)0_Zi-B5PPs)Y`ah0Ag`I$`LvJmD_=7Oga2J2B^#4~fvdrD zoLu!c)^euo^04;P;wdGQr~WwZfH1y}9cc_W^5Wnm_|9^0wz%+WdD0ZY$G8kw6s&?> z@Am9K&TEbFSx74W2j41XCFA-+eR^oxq>NAchA@TRdp}%Q*wvPo2rQC(p`cwTGDEeE z(_*{VU-tMxB4DO_uUbdcnS*M_u5)arH<6@Z3>5tN1!P=RzF?Da(d5rmq*;>5F&*cL z^CRW!K*f50TjvLb)(dg{+Tv7Dg1Ce8!pD&N^vGB?-|<7Ep{&{nJ&=61 z)n)DI_=^$tx6a#O&E5y1D`bq5HxvJJa57`c#+e1w?GJ}OV?5~0eX+Cqv+E_|{E}^m z(+)G)=jsyu)8m#5nn<{J?mpaEk90a^X<#K zyEUN2(#eyRs1 zdLLpARt7!yIUxMr+i7s{1o1DLM)K43*gAx2LOh^jqf-Ordmkq%+s95VDjvU-7)3Wd zY*CY84`TS~%U(DvmTF_=%MsHvxw*Fe95q=^bA@4E@?cdQ=ODP>VC+d4rLwlfPr)2| zP8N_sgj4EgcvHeQqJrRmmYvUmw%wDb)-xRfXzubWA~wSZYzCHp^rFy60W~>o^|_No z@v%bVmelA0+`6$I8E=YBf6h;k#qU)V68PQsZ~2av}!h{{`*+ z_nXgW>K5Yn9_%ji8Iti7j62<3aAs*++bW5UH=||8(4h2%E%kSU^;~MUyEwUtl%6i)`3SB zq&XQklweM(gJf@ncPk*;9}70)N-ov~mbTZ%bO?OD2a}Z*x}lODpai*^@HTU#9PtM3$tla%Y{P8`qA5$SWYSj|122BSk*@v$-r+XeH{E zKtv|M{S547K9#8*SqqN?((*adbYasLrx>2WM34T&)!UrC^i?H0@eEH88hfYXaHb%g zK;78M?T>6t52Li2G2YLJ2Avq)<*#4L6HtiWb2u!}0<&?B7#RH=_CE3C zssU$7h|2Q5IE@2aGXVrHo}1?tt|TmiXV)&Jb)gg}MB-R&2v)NIIf(+v@3pp5Q1Yhy z{5>Xlymv#+*`+vN81)f>l>Xx8(#6fcevPKBtj0>cu_m7euD<8E@vaFf=@bwYd{OT4 zxh)Y7D&@u;M5z1!km?MPdCV!?6MPg?G^vV_2Jr50gdm5b zB67nZ3>LjUOD;EitVY~rF<45|#!sW1(E~}iGisq`(*SP7`ZtFIu6xxrYeYcyyU4{Ic*RBZW~oOVU0Qym@Ao= z!m|WH(P6O0a{Zylv~!vF{DYGa3?e^98D8PaWF=(s9*_@Wu=%G2H0W$`+uRJY?~c1C zE|f?UBSPl7aWjDoQ728=y^Yo4qO(JIczP0pNwc?!faKJ)3x}mTn9wj`aKDmt$5!6B zW#t>>?lYOu&GWqqCCA1MA@vAas^9Qb(m2clj{orDb%UH413m~|o)6hqj z9IIY9S4oYO{c^$L05De<== zy^=VGD&Od^X6m2p+a+>y-C=WCTg$Q*4dgFsQWZQXG%=MdkSytF|I`pkY|1y zv0R7DDswL3RHV-Oz03o~=Y~0dHdv}?d#Oe)9-T1XF!1P`aCpcV^;aq7IpVCfCs}%v z*w%k(wZ#72p$DE5tgvSRjd6=-UF~3nsU0&`5V}M=_k-aOvMV&VQs8EX&@q#Mi|qm; z3h04c%jTMQ1^m}A1T?CK1iz;XA#Rm$&EY zRL;M4)RrEc^Jd;wAWt!kc;UAdH*X1lKD=Vbe!A=PJcD|2^gg%mx%g@>sl)qqhO0m` z;nMZl^#CCYG26WHtsLvLrvg)3?1I#A+!qoE;R;_jf`~$7l^ppYb!|?8)j9yBKty^Z zy*T%oPvNHNql}M%|G8j6lzaBto#OsgvI~J@>j9=ixQIL?4ejdv>Hv(+79|+GarqHv z)@@6o!3U(CH|1${w99~X`ijSWoEpjr`Uc>ah*&>?sQr~-3of^Xs*RWPDnDo^zR`PY z_$fRLeU(B4v}u8mbt2XOQr6@wvJkFpu7&vSoBlB&I>EI(MC=1hYN;Wh; zgW9;Sna7*8C??bbfXem`-Ca$ey*%MP3BQ35XW7)|VT~q8)~?^1j8$7TVRJ+f9Cy9s z`CXlm{v*^mf=_|uy{MzY0a5Ex>5_Yo6`erx+z(m#v5A=b(E_IHeV#RyY96|}AxN2% zlYN7i@y@3yDeOCEAsZ08y@=otBm(Y5rW)#-0wd}p7K~Kp>_vedQiF15smX|Z`O%tVyngXeq)x)98VBb~28s)Z^Bd@lHhbn1IyN zRM!w8E(BWKikC2mes8^jMKfqL$D-h{Z7t>a;3qE4-PWHmO(tZq}$%B6O3F-@dbIHb=qZA;M8nQ5GkM zo4LsG#(T|WNW}Y)JOObnp6!E%aQghP7k4lWg?BpMM47oEq-A z>2d#-yW$h1>#y8gGQ3|Q-!^*Z9JR;%$Wb?V_v4@O8QA-SXmI+<8OA7_2PufiwT>X7 zg)u3F--%^3^WJ@vQJHHW^a4UVy8=hD!j}@h9A4@FiwJmJ`k_-bx|A`Gn!e19u@ zuL$nU?YTRb$8yC{Vz%9v0;hS_G0 zU&x?|Wt|F6oxL>t+rA$WU`u*zu^Gjz)D&b% zX!Goau_R{KaWI;fIM;R7k&9|C*f|ecs`eG+ZoB&D)>$+M2le ztL8b9y2gi#kzpU(^oYzR$2N}MgWfRdWMLHf-sWbRToWQvS(&sQ?WE@9{L97*ndppz z;*MsB0O%2;aq!Aa$5}syh(VVVt)&*xaZUA!+!Xb?4M|cTPKi-iQ^V4=RQr1|lm;Ch zc4lQ1@Knh!qCfhMr;;5qEG$fLs-B7D*M@0b&+x?7o&e#^-p9T41--@$Ks6z#u^w|{rFh$-=82gOX(>i?h)&1EU z6t4It@m%D=laitq4H0t(e-%?wvWH|EU2SmhCEWkiVSkz@^_GHJugEr8)696;C@k1( zqG9uNzrRbm;##8N@Sl(p(sPWyzHV?#v%K}s2l&$bMa?Fh&7vC$eQp9(H68k+_tj8m zKgdi#B(0C;5F%92x?x+aq1>E^rEV6VCQjk@)hXW+fGdPCdUDAM2WZMRac7;JQW##c zmR4RR$6}IWS#DUwF@IQ#L`*U?J1{ELEv~;A)-@ijr4!y!vlxcB;yACi%qXM<=ha-h zD$oqPXa>SgPCv{Md+;;LL;Z*B&$oQ`{@6CJ%&c0SJHkRFJRQ6Dd6~ZoOF_M_nL3*G zBBu7gqT>f39!`>&bg8k4dlH0AA=<{$JAoxu>eL3?y;N3K$zFt-Gg|R!rq`TU(4#nZpV1L?au8uf@qz#d^=`X0t5YQx8OTkV zrXVKvadR{;Ek++xPr4`p&BCsl5_Q*L5y22)<4jyF-t67>#v@BpR)9}w*IV%9BYJ9^ zp%k|5TmV2_tOY+km@k)mSt4rgfEO;7z1hla^YU2#OnJ=yKTmLG&(szdT_8gtY z)Y@OE?SY=!zQGWI?{i8!BbXeLp5;yJ48(UlV4qar>Ufhxf4{$8*QnH2dXUwh{YhJP z(Bzp6Whm}328J(Uu)}S=YlI#PMuiBU<^NhlXCKs7Vtcwu?NRcpYHHa_xs=;we(QUc zK34CUWI=OGA6^NDN_{)~cAo!@S&Ml;^AX)&8MmZOdI#eB) zgJtf2fu6E{6_#AcKNd1Kr96vtK4`@h;c;Vm9JRPma2dJXg}%kCeXh^!?aafuDj*`gA78%99{f=l=ZRIl_F-q>Iq-bQ(WW{Wb<;ol&pgY45t zTt8!?a1EgK?V;l|X~WK7M@G$~RqIk2M|u3YA*eL?qBrhs-2SIHOtXwLgJVv?i)xIK z`EUpGh%ca~YHTCcP*&yw{)47KV_aF8xD=qLrM=Sf|NDl8_X94RO}~@1Z@kTg)>%e} zcSCc97D2VcI-nubG&%`h>_?a`NN1BnF?Y?M2h2EA}sNm8; zSI4dwT#jcc{%h&k5a_g$6SxP*4>*p1q>MDiE;$1R3qvkCQC9Y*dmQgyUK-w}a~Z(C z7hT|jgU8qENrGT_@}DYoAOF$Z=U@boGS`b89GO)2f3y`H;DSS2uXs;-$O7{PMmdKskmm%Ws*EocYymA=7xk&>2U}`fAJdfP4}(M%7=VrFzZ{%fT}`jnG4r;J8JCWxO)L8I1q;incQ z^&PtK#S3T@e(A#U1x;IhiZ00c86Fd42fqA4Y^?#2932$}ZXVfS-s>e70~`@g1iHIh zt@qIEhWRiIt`RQS474n(<62K`h;;%lwkk(mm3N9owR0{f#q;=tNb?<;k-hb0TAd6` zAwV4+OY%d7zU?lz*+3GwRK6%w`nd7kidC1Ble>#hfQ&x(UOn+>>mv79L;AjUpgBL{ zhdRC|Ir=jc6{vX$$3A3r#=lu9eVH#3V)HA-Ou$+C=!24 zALrJ{Ocxh^Q9cGz!yV5jAfN=Qf&k_`0u8OSbpgOjhpg6eRO6z{fDyMs)@)@Iz&e1* zq<{br-0({}8cK;xuM#lMD8s}`WT;a9L` z-(PVgf>-TD7T^mO?y?a*t3lYhKq(k4dy9(c7+Bi$;+gEL)Ieu zlOunP)a%Z{^qpu4eRwE#_eH|LRdnOa8_~8nGxvfzJ6aGRabl`gRt*dI+d)TG7U+da zW?oqTb3z|iqXFs&&+0NHIE0Cu-KTxD&x%YA)=dp6Dxb{q z!fS51&n@M3h+cz5lQ=dt{Y;ggo2c}=bEluTm*nC*xo!}XBOG@}hv5KWKgk#XF#hM; zg=^Fqd&GcAVg4nce`lK<=r?NQ6Tl@ZoWxxM&b4G|Ul1}9UHJJf1n?LK5As8c&b-TM zY$HwH+V((01aFv4kEK)qz{1{U+!!2g@Uo3l0|amMt8v1!1de%J&AX_Wm^WKvzktlM z<}GMO2NW(-l8Ir2Da6J_GmH8mG7{ET*EJF8+xGsevHo0hA5cvO_!$fsct+e(Lnu&v z=jdo{|J4DL2P`z3xAJa(^1G}w^XAK;gNA|sdD=`4(j1yZ_@pfVv$$9<0$$iyf2&P? zeWIz^{BCmz+~XQJyDt*PcPi{xeMs1R$VO9ho(%>H`m_*(swNCvLAM)^@yA_XhR$Y= zCzSp$88mlFfaupe80x zGK3pkaQyGyy>nSY>&jjfvaG&xsUeeM7#SORPTV4F;c$LEpnmd5U45GYY1L&XSY#YE z92o?*(YyatPDMeMQPk6L(%n%_KZA_9^pE zmjLYjCE#dQ`hYtpmoxv=sM@=SioqgFR;&z$y%nOw@eNEgxZKn8c+3+b>Q4b9JiH+OM|UU8JwV1e z`_t>b%v+X8zPAMaeSf$0N)|of{HAv=jY1xL?;u5y83#{!B)H3?`$1(Q>gO)8S{GMg z`x>Q3ic2Rfpa$DaAXL{GNnlXnbQ7l*h3o0m0YE)39h9Y373J4N}C`yw*M1jyrK*a(A8k&^Qi--`E zUW0`aBORm{O$arVgcbd44gRbb^IE5{Uj;d%pY`>$#f=rY6TJAp@Axs2JEmPjW4btG zj%$B%xHLIusLG$7p06Uj7x$EP*}Um5Ep61-Edl;SeT#>=(vsIiRn+voB|{%oQ;mfq zl&^^<=xDYEl?#|FAudU0zrt%|(-PtzYk|uXwb!zA(~N#9W$a<6nVF^!m34RoqIq?mG2XFe z_)+LnGPw2|OfCsu+dm(13_&lQz^nK#tIhV4*YJtS7ylCfWSGl+}EG`5?$ zbw2-FqnWdyYT6DIDp|JX?Cu@0FYTmvJdd!r!${cW!>86CXBjSVt&KZO=;euq=UFKd zSNYzTrfbW&@Vcg@Ic>1t&<6Ym2XG^a?5Nx^yv&WYmrm4f!fR@Y24NcK6A&241KO49 zRtE+hufc1>fV_gVt&jAv<_ASEjb;_ChM^6L$SNh+*(bg{1ykyk>nnFZ%Cmyn= z@E+jVD|g*zzWX}Wy)qWZ@t&k!nH&q)^vZ~|(0U2QypN)+71mY}*1A$JY}WFK{E!df z+8N(MoTpz_akOMfDOyiCP3jBlO*KQ6X%`UnDiU&zKB0C7ri0z)d;Eyd)S}@^kHqA< zkDFLCw8q3{UF~Mk-XB+OU!it~KmcsMIUN;Tc z@!E6n&Yj4)=SEluGEuPZ$mujz0BOyrnKMpIRO4&FM9lc7{%Eo$GSsV%@E*g&F%mN2 za}J#HuoSttp0=X>c^I|Nwic1KA{CTDEQEW2GHuh@D4eLIPxrI@Q zJ$q$0t#&D((cyaI(9rS*o}K2w8je&|R(jtv7n@m-RDf+?r!_68c71(duDB#*SC^|7 zjI7TeBdi#Oe?4RP($q!wulWR}Th-{VQfUi#jF@Tlmno1@PIDBdRKwZpENV(;Hq<=8C(OqhS!! z?ds|?!F)O9!Ag}XbMKdv`gPyON58~EF)1BV6#Z;*)$(VW*9OQvh&qQRfev4u3yBS#g|XxS6VZSyz~lcvNb~3Asl}` z1gLB^BEcRjK2mzu;L;F5VHc#{+t{R4egntZPzxZ_e0x856taJYA@1K$Pi5x5Zy7!a zjyUm>aO)+saw$*4OtGZocrvcHfAM*f!PAvK45ReS>$e{4;eCdC`Q7e&nzxJ4T2Jtt zSLV#hcX1nO?%fBvW_Lr)aDzQLzs9~WIx)f--m=dpl?g!yCTPR{c}IY2T(z+#lM;hK zG6jz;BAOKWry!5Zy%c<%^I7C(5<+sD5cn)sc%JAyW*)u3hKw$(lfvh3@hrvIjZR&x ziz0|`FCkbm61jJR#3ENrj)5NR&IkcF?BdxA(m#6}bWR7%9deNGDCp(22GH#%T)--U zbD*Q!ORnmT@d7|{wLvtL+U@YWuTaIg(7xi(I7w{u={ zZM39$VmJCS!`Ug0kg`c7f1gfQB$ZA&)*n?FwTugzU0T~0be2iBrv6lKkI7@6Cow3k zb_iNf6H*OL7lvSn76%sg?U#oHg{`#)@9jfT*_DaVgVqO?8O@QEj6P>%LX~?NU4A}! z^Qgzy8%n=qj=wm2Jo4-zl;8_}AP6qBhtA$>(-NJ)g@r6BH?0$qwJf8V(&ZvG-(PCZ zY$Yj%T0<0NJ+L9M4xx;*st$Fk%6fg3ssu5mT0)Y9-DGf9sTh-Q)!mEGDaZGWhzX--IrXg&P_gx%R~+n?hJ232$!7y>n5*j&%3kVrHAWw&t39 z#&*3oH_SWfA0-4m-76tEM>Zf=W%Ko;sB0l3->=+`C$Hm`4X{#uCeDVH`cgYe4@Bq* zMl@cKpj@Vl=UBM5esBAhNK8DuQv01>vOO6S(E<9biB?KAdKcnF>PwqVp0)M&!Yt%y zIIjBd(R}X)GWqZ(Daj$cF*8v^3szDhT{R!X%(if?nl4puj#1`VL%yLmrxCt&u z5Arg+`K`A97JxSkF`)-a$FEz+B2K=Kqjy|o)XZm|`q%631Z?1Rx#j_6f z#tHYytKE~>R>j$4@U(4xl&5B_Mfs~O<{jyhw^sFy!CoR?A}hTNxb8)9J=a$hG1MDw z8NM#cXxEkhqt_h~C^IqvLp&+=O8#fcUG1Fj0rR5|%2RqT2R49?ldxvrR7wI0rC^Vb z=*#l;_a96UZ)}Q@z5jXO2P*Z1fo@hz_!Y5m{Y+1>#ERr;Z+QMdta-joj+2F9UiSe1 z-FIL0BH})|(FOfl)ZDUwr=h(NKqMJ%6T$(|p(1oTd&a?-CCOoh* zY0t{>-Y_1;eEwpviE4LNvntJqJ{4&F;ihqct+i`w(j`0Ji2&4lM4pRyt~<>nDK({w z^7Tm+yW1@(^-V_sw_@U#E_J*N^9PwjsLPw!=K2M~^WrV~^RDUGuKd{5xeYkFzKs%h zfJ|6!M!ZRL`yc`;YeResCPHwC&b#~h_Zeb=*oM9MY6C>#v+VDfYRD*yIY&G6qGYhv zKf<&&nMn`twT8IWFe;;z&ZqPk*Xmj0U9XQNBWKo-Ti7!no*&9OJa`~kjn#r$nQy4s zphXHVJ0NuIWeUq=qZ96_v0ZxNlr?f&-t}(qr`77@jZODWLVdHGa&uQ$M);{cYMRLj zm@TTj>Z+9v_9*8YSz;gxsysHf6Ok_hLi-fby(T;&vTNr==|?QunSz3g8?tJsrK~W* z!Luc6=kfWDaf5xxuA364_bjUCyMJ*~IcQx{qL_qB>ioW3YCiqeDKC#wb-m8#*GYd@ zGxk#22kMP*{Lsy?<-MdO{QYp(*|MSDE{Y5J#_UD!hn9sjTGG*Dos{(_l*@!>Y9Pne&r;1#-LPZZ(3FPF zro5;fVv<*p7PBm!unOq}LZ-?%qIMZ8KAn3~?W0*O#;z>q-vEj&3Gsx_lT~2r07o(5 z?#!=n_qu=>%@ft>eVe8(>si_(i}|zw_7O;*5<#FzWOzLxa}nsKw>oDOrcY{N%98L; z07_#oG}^Mb$6r2Gcs=&XhJMEd6f*N}5aRIF%*S8NcXYZDxaKJI9S0C##?FaHJOnSi zbUxLApsJv2Sram%zo(VhZ5I8Ks;LDU&Pj|-C$1m_;ExpHI{i0*5{46&Kw4Sp|0aOO zMaG#qBcUQ>m)1=fWFNPQwmFW6f(f+gYoJ-OQYi*A9bxf#{!7FA@}d@ z|KD5_NA6!YFjKD?e|D?Sd!#lqeYknFZq`U*@-Fb8=+yx(cIV;tfWWn3E4seHsm+LY zPngjd$_K(CpHYXZ2fy-$u{}Sqy&Ut%`Aa@uR}kzi-)0O+@N1V_6@TThEW&u`N)ptI4I;Lx}WBj9z6#~aupKPl`T=;SUcu!WP7R=>t zvk5!)$kJm#yO$swW@Vvvv9BwkK9$B?4s<&Yia@4qH1JbOm3x z`YxMEhqok}5W1u=cnJ$9LT4E+CtPvjN$nKeQ+(@fI_I7l%yx_^`YJK8p-`d>UF?jYHuGaEv6*MG>Fo- zxV%r~y#+mPK^XTlgj=zDE^i94nN}uKIzIkCKZj)w3E5lET#EbHmXOW8xu!Zuu;vwa zOaSv;AXtKTzD5**zAUq1MD_zUil6teEZ<=9Lq_;K5+_m`whD4{|Dd4->b2+;_zLI} zFK9mh_OT(O9Tx}g!jIxo%Kz`$VCoiBQ&&^u6C>*mb#^uy|!8V$^dgYf$(^rFqlt?@m-rg#z8 z!H7T_YCz*E;^z=&*nDd_5BYtwW_XhtKlbeL3kegkSP~RPZ`E5Myvm`94bNnN3O#ei zqigmBqRT@Jn)Qza6|jkJY&#;|_AkEl#q&XU0^6{23?jiJ?eTtaa1gh7hQ6ECnkABxZMNQMm!1N%*Sz+)I3Jj-m-61cpt{P(5<8FaM zTZQp{v-Em1U+?$pN;;U8?q<3@#fZ4zf`nAJrTHw5;7Y9LY91^(bfUtTngmu*?7ye==KxbSNfLpr=NUz-8_`YoDIDEAnQG6G&a1T&AaK3SUL*SseJgUkWe13>sopV1mDiLlcc>zURlN zdd*~GiTB2t6E`QHeOn^yS=&H4Wi61TM>oGOJ#y^$jODE2&GLH!)8La*F)%xIlsUG? z{#uAO1tK}eyyLvZvQ{Hxa%mQ0@L5}dC@pgz8?hX|vwN8neCJx05_Ia_(fz-7#QX7A zcFLFY?n+<6Ex7F$cmBj>KPCU5P$C9ah@KUZfRP164;X3--p;spAwT*MZD0j1D|34l zbSFPAuX%cYewBraaGw%6TK>Fs(5tyFmkA`%S2?vQu2LY#={>q&_=Mpn5nn@e<@E-X zdaS5L+#Ko9{qKTx#m6Nm=l!*>x~~YFbZ|wMc7`Z8|9Q!EtqHK3=`* zbdAU97WPBn^zQLDE)ZpW_UykjQ2leA|6%6(y(GMCw{M@uv$|o@Z{Zmw|0uk(2gVe_ znJ&2>71eX0Mx3t5Y#(N)!0N?O9_|*CKQ6`m1xq?^=5k*>!>-0BnZlnk-`y~+8N;GZ zJ)dW-x~nc5_$F;}#GsX|@LbXT8bMzpd{O>YB)Iz<6q{M^6vO)Sp>CY*EV_5$m>*i@ z$8YUo5L>KF>F13nAUA&)=5y^mGX~MZXiTvhpJ+hm-luVjDQQrQ<|`J@o=QvbseVFV zC%aBnRJ!KS3Pa=`8hH2}=Fp2PK6O8sdOWrLr$j@VDmqTxE{v0H z(6?L?*by?A1^N=oRivn)q0wet{U@(Bc%RBUl&lUv#JjSCc}32XazV3SD3p7mDgqBe z1I}s{+>%}=D-aE&wFSp@2IS@CL+|z4fuGfZLIV!ObIJ8|cayz&`=NR~#$c}1vkecH z&4?O+*u}cwr+Jte4?eD4C7&2E8$>fS)~@0}E>|fPNCh~O8}#H5!eIA*H7x(D+HQ~B z=H8~2HS;QS6ZYt-(BRNik?`$~1eIgz1va#H9vorPhP#;)<9T_TEH9?1*s4whsBPZn-`expx#*fhrh4)yRGpKppX_n2y@ zKr!`G)w=v5OTX;w?B_oY3db5t#$6SU1zyII-0hHN)olSW+i>K33iz$R;$+*@_bSEE zWwTC!Cx{SsKn9tIlpgjUO5-`V>$(hiQ`3wkF9vv6Vg<~axZ4rNWsC^E%9MXVUf^#_ zYg2!7lO%ZiO)4jy4wzL`PH2$(eOcowsPm?f+&Ga)6s_QH(FLE`Ybdlxp=871@JFLU zFmp4r=!Q`^Zs6Z3Og4+6Xn@c>qjI`GPllJ|Gqpxb7gZ#B+;mP0s z5d`kvZ3~8zbuXt!T?_dM9CN6g)!OlbOW*DoVB$#p*OFNw;6~##jaD|g6SPaBKI+i_ zY<#CY0OGr!RLAPz-sIAN3T+o>^i8_aJlOZQQOn`f_>2D!B{hCjSVJ(2&49;WnbpJC zcY^~>=s6Eo%>GkE?``}o9FbE_n%bQ<$=p!UUAiUEh7 zqd4z*V6@02-ZNjrZIZW_XcC?j(vLXc5bnVA6uK37k~UVrjs0k}qiKW5FN4VdY)-fZ zemcRFf?gI}0B0@54gFCqR9^?&cbf0Ou4h=DVd%LN%RZEWzejB{*OMF|L-T5Ch8TVF z<)@9eEG!$eMSKl3&*4w;b;wwM#BA~4+68vJ5}V_Be*1dETUi0o&ri7YPXRmb=egy) zv)yb4$)SA!x&UzJY4^~OTirg;0mGn^5`PY-{vE&le~!31ResJ_PZlQxGBbErc>>Vq z03)Ua6|iauYuD`AkH_i?a+wlqA-tw*t^hrKXoGg7Ic!pvSO9a$d4>Lgzvsls(`iA; ztmd?f#Dr|Xoq$Q5u<|f~xh9cP#`YYnJLhVbvq!bwkS0o3)Fz=v;A_USXuqW*1&A*U z{g|4j?tukdlye=Hso`+LE#q4VfNF=)-_rH8j#n^1ZV_2aTW>a-+ivT<)cIT+(!M~wX*#Z5> zhI`@Hm^pmsp8sBXIJv^9?{VAq4DqFHgNZC9=xu6&1>FmR>#}Wq=l2FZo{>Oc>)l>KV8Ay(9Ja;%MUn}47uJ=k zHh*!Otx~Y+g>f-Srq(r?q(_&R7Y{;4dnYCo+{*4Ck4^w37k7%deaJ!uxJM#1#74lV8 zL<<#{@~B^E*-GH-4Yc;8EtD5@96{vD4VlC20=We3X#?9HdDY7wvK^^`n?CJ`ivFDi zSt3DJ2GI4(8{j)Xfu=&W>jXHtwSZwe!@APk$2`n+Mn*<*d7dv$&CGlp-SOmR=c&d1 zE0&n@;6R@duEss0d&7^fKEtr3VnskZLKYr@{+#?XIm8boG2EYc=YZb^fM9y2SBi9Q GKl)$ox>(Qv literal 5054 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 literal 13880 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 diff --git a/icons/turf/ground_map.dmi b/icons/turf/ground_map.dmi index 1970ad966106a7e58b8afd7bb7e091138b5e5326..944293c2c423c69eb337f1fe556fb236b868bf55 100644 GIT binary patch delta 85876 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 z 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[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

Gt30s# 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

Mt-)^e)X3E;9S#{prD~xjI;yKG`Pa78R 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

Screenshots & Videos I didnt test it
# Changelog :cl: balance: Xenos can slash reactors balance: Reactors that are damaged will still run until reaching weld damage or being manually de-activated balance: Reactors that are damaged will lose fuel (when applicable) and fail more often when fuel runs out, new cells need to be used to reset the fail rate balance: Reactors can be damaged by bullets or explosions code: Updated Power all ship reactors admin button code imageadd: Updated reactor sprites maptweak: Minor changes to reactors and surrounding areas /:cl: --- code/__DEFINES/dcs/signals/signals_global.dm | 2 +- code/controllers/subsystem/hijack.dm | 2 +- code/game/gamemodes/events/power_failure.dm | 21 +- ...ap_geothermal.dm => colony_floodlights.dm} | 203 - code/game/machinery/fuelcell_recycler.dm | 276 +- code/game/machinery/fusion_engine.dm | 780 +- code/game/objects/structures/props.dm | 2 +- code/modules/admin/tabs/event_tab.dm | 2 +- colonialmarines.dme | 2 +- icons/obj/structures/machinery/fusion_eng.dmi | Bin 2388 -> 14911 bytes icons/obj/structures/machinery/geothermal.dmi | Bin 1472 -> 10734 bytes maps/map_files/BigRed/BigRed.dmm | 6620 ++-- .../BigRed/sprinkles/15.reactor_meltdown.dmm | 5 +- .../BigRed/sprinkles/25.chapel_cult.dmm | 7 +- maps/map_files/CORSAT/Corsat.dmm | 338 +- maps/map_files/DesertDam/Desert_Dam.dmm | 354 +- .../DesertDam/purpleriver/newbridge.dmm | 5 - .../sprinkles/15.shipgone_northlz.dmm | 4 +- .../FOP_v2_Cellblocks/Prison_Station_FOP.dmm | 18 +- .../FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 304 +- .../map_files/Ice_Colony_v2/Ice_Colony_v2.dmm | 861 +- .../Ice_Colony_v3/Shivas_Snowball.dmm | 118 +- maps/map_files/Kutjevo/Kutjevo.dmm | 206 +- .../LV522_Chances_Claim.dmm | 1025 +- maps/map_files/LV624/LV624.dmm | 43 +- maps/map_files/New_Varadero/New_Varadero.dmm | 123 +- .../Sorokyne_Strata/Sorokyne_Strata.dmm | 444 +- maps/map_files/USS_Almayer/USS_Almayer.dmm | 33027 ++++++++-------- .../Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm | 296 +- maps/templates/Chinook.dmm | 308 +- maps/templates/baseone.dmm | 22 +- 31 files changed, 22726 insertions(+), 22692 deletions(-) rename code/game/machinery/{groundmap_geothermal.dm => colony_floodlights.dm} (50%) diff --git a/code/__DEFINES/dcs/signals/signals_global.dm b/code/__DEFINES/dcs/signals/signals_global.dm index 5569ded71586..905ff1246182 100644 --- a/code/__DEFINES/dcs/signals/signals_global.dm +++ b/code/__DEFINES/dcs/signals/signals_global.dm @@ -66,7 +66,7 @@ #define COMSIG_GLOB_RESEARCH_LOCKDOWN "!research_lockdown_closed" #define COMSIG_GLOB_RESEARCH_LIFT "!research_lockdown_opened" -/// From /obj/structure/machinery/power/fusion_engine/proc/set_overloading() : (set_overloading) +/// From /obj/structure/machinery/power/reactor/proc/set_overloading() : (set_overloading) #define COMSIG_GLOB_GENERATOR_SET_OVERLOADING "!generator_set_overloading" #define COMSIG_GLOB_HIJACK_IMPACTED "!hijack_impacted" diff --git a/code/controllers/subsystem/hijack.dm b/code/controllers/subsystem/hijack.dm index ed9eba2bc6c3..8ae313587038 100644 --- a/code/controllers/subsystem/hijack.dm +++ b/code/controllers/subsystem/hijack.dm @@ -299,7 +299,7 @@ SUBSYSTEM_DEF(hijack) sd_unlocked = TRUE marine_announcement("Fuel reserves full. Manual detonation of fuel reserves by overloading the on-board fusion reactors now possible.", HIJACK_ANNOUNCE) -/datum/controller/subsystem/hijack/proc/on_generator_overload(obj/structure/machinery/power/fusion_engine/source, new_overloading) +/datum/controller/subsystem/hijack/proc/on_generator_overload(obj/structure/machinery/power/reactor/source, new_overloading) SIGNAL_HANDLER if(!generator_ever_overloaded) diff --git a/code/game/gamemodes/events/power_failure.dm b/code/game/gamemodes/events/power_failure.dm index 5ebedd8fd26d..c8b80efe9b7f 100644 --- a/code/game/gamemodes/events/power_failure.dm +++ b/code/game/gamemodes/events/power_failure.dm @@ -74,16 +74,15 @@ if(announce) marine_announcement("Power has been restored. Reason: Unknown.", "Power Systems Nominal", 'sound/AI/poweron.ogg') -/proc/power_restore_ship_reactors(announce = 1) - for(var/obj/structure/machinery/power/fusion_engine/FE in GLOB.machines) - FE.buildstate = 0 - FE.is_on = 1 - FE.fusion_cell = new - FE.power_gen_percent = 98 - FE.update_icon() - FE.start_processing() - FE.power_change() +/proc/power_restore_ship_reactors(announce = TRUE) + for(var/obj/structure/machinery/power/reactor/reactor in GLOB.machines) + if(!is_mainship_level(reactor.z)) //Only ship reactors should be repaired + continue + reactor.buildstate = 0 + if(reactor.require_fusion_cell && !reactor.fusion_cell) + reactor.fusion_cell = new + reactor.power_gen_percent = 98 + reactor.start_functioning(TRUE) - sleep(100) if(announce) - marine_announcement("Power has been restored. Reason: Unknown.", "Power Systems Nominal", 'sound/AI/poweron.ogg') + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(marine_announcement), "Power has been restored. Reason: Unknown.", "Power Systems Nominal", 'sound/AI/poweron.ogg'), 10 SECONDS) diff --git a/code/game/machinery/groundmap_geothermal.dm b/code/game/machinery/colony_floodlights.dm similarity index 50% rename from code/game/machinery/groundmap_geothermal.dm rename to code/game/machinery/colony_floodlights.dm index 087facdbf5ee..eef05df3352e 100644 --- a/code/game/machinery/groundmap_geothermal.dm +++ b/code/game/machinery/colony_floodlights.dm @@ -1,206 +1,3 @@ -/obj/structure/machinery/power/geothermal - name = "\improper G-11 geothermal generator" - icon = 'icons/obj/structures/machinery/geothermal.dmi' - icon_state = "weld" - desc = "A thermoelectric generator sitting atop a plasma-filled borehole. This one is heavily damaged. Use a blowtorch, wirecutters, then wrench to repair it." - anchored = TRUE - density = TRUE - directwired = 0 //Requires a cable directly underneath - unslashable = TRUE - unacidable = TRUE //NOPE.jpg - var/power_gen_percent = 0 //100,000W at full capacity - var/power_generation_max = 100000 //Full capacity - var/powernet_connection_failed = 0 //Logic checking for powernets - var/buildstate = 1 //What state of building it are we on, 0-3, 1 is "broken", the default - var/is_on = 0 //Is this damn thing on or what? - var/fail_rate = 10 //% chance of failure each fail_tick check - var/fail_check_ticks = 100 //Check for failure every this many ticks - var/cur_tick = 0 //Tick updater - power_machine = TRUE - -//We don't want to cut/update the power overlays every single proc. Just when it actually changes. This should save on CPU cycles. Efficiency! -/obj/structure/machinery/power/geothermal/update_icon() - ..() - if(!buildstate && is_on) - desc = "A thermoelectric generator sitting atop a borehole dug deep in the planet's surface. It generates energy by boiling the plasma steam that rises from the well.\nIt is old technology and has a large failure rate, and must be repaired frequently.\nIt is currently on, and beeping randomly amid faint hisses of steam." - switch(power_gen_percent) - if(25) icon_state = "on[power_gen_percent]" - if(50) icon_state = "on[power_gen_percent]" - if(75) icon_state = "on[power_gen_percent]" - if(100) icon_state = "on[power_gen_percent]" - - - else if (!buildstate && !is_on) - icon_state = "off" - desc = "A thermoelectric generator sitting atop a borehole dug deep in the planet's surface. It generates energy by boiling the plasma steam that rises from the well.\nIt is old technology and has a large failure rate, and must be repaired frequently.\nIt is currently turned off and silent." - else - if(buildstate == 1) - icon_state = "weld" - desc = "A thermoelectric generator sitting atop a plasma-filled borehole. This one is heavily damaged. Use a blowtorch, wirecutters, then wrench to repair it." - else if(buildstate == 2) - icon_state = "wire" - desc = "A thermoelectric generator sitting atop a plasma-filled borehole. This one is damaged. Use a wirecutters, then wrench to repair it." - else - icon_state = "wrench" - desc = "A thermoelectric generator sitting atop a plasma-filled borehole. This one is lightly damaged. Use a wrench to repair it." - -/obj/structure/machinery/power/geothermal/Initialize(mapload, ...) - . = ..() - if(!connect_to_network()) //Should start with a cable piece underneath, if it doesn't, something's messed up in mapping - powernet_connection_failed = 1 - -/obj/structure/machinery/power/geothermal/power_change() - return - -/obj/structure/machinery/power/geothermal/process() - if(!is_on || buildstate || !anchored) //Default logic checking - return 0 - - if(!powernet && !powernet_connection_failed) //Powernet checking, make sure there's valid cables & powernets - if(!connect_to_network()) - powernet_connection_failed = 1 //God damn it, where'd our network go - is_on = 0 - stop_processing() - // Error! Check again in 15 seconds. Someone could have blown/acided or snipped a cable - addtimer(VARSET_CALLBACK(src, powernet_connection_failed, FALSE), 15 SECONDS) - else if(powernet) //All good! Let's fire it up! - if(!check_failure()) //Wait! Check to see if it breaks during processing - update_icon() - if(power_gen_percent < 100) power_gen_percent++ - switch(power_gen_percent) - if(10) visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] begins to whirr as it powers up.")]") - if(50) visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] begins to hum loudly as it reaches half capacity.")]") - if(99) visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] rumbles loudly as the combustion and thermal chambers reach full strength.")]") - add_avail(power_generation_max * (power_gen_percent / 100) ) //Nope, all good, just add the power - -/obj/structure/machinery/power/geothermal/proc/check_failure() - cur_tick++ - if(cur_tick < fail_check_ticks) //Nope, not time for it yet - return 0 - else if(cur_tick > fail_check_ticks) //Went past with no fail, reset the timer - cur_tick = 0 - if(rand(1,100) < fail_rate) //Oh snap, we failed! Shut it down! - if(rand(0,3) == 0) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] beeps wildly and a fuse blows! Use wirecutters, then a wrench to repair it.")]") - buildstate = 2 - icon_state = "wire" - else - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] beeps wildly and sprays random pieces everywhere! Use a wrench to repair it.")]") - buildstate = 3 - icon_state = "wrench" - is_on = 0 - power_gen_percent = 0 - update_icon() - cur_tick = 0 - stop_processing() - return 1 - return 0 //Nope, all fine - -/obj/structure/machinery/power/geothermal/attack_hand(mob/user as mob) - if(!anchored) return 0 //Shouldn't actually be possible - if(user.is_mob_incapacitated()) return 0 - if(!ishuman(user)) - to_chat(user, SPAN_DANGER("You have no idea how to use that.")) //No xenos or mankeys - return 0 - - add_fingerprint(user) - - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no clue how this thing works...")) - return 0 - - if(buildstate == 1) - to_chat(usr, SPAN_INFO("Use a blowtorch, then wirecutters, then wrench to repair it.")) - return 0 - else if (buildstate == 2) - to_chat(usr, SPAN_INFO("Use a wirecutters, then wrench to repair it.")) - return 0 - else if (buildstate == 3) - to_chat(usr, SPAN_INFO("Use a wrench to repair it.")) - return 0 - if(is_on) - visible_message("[icon2html(src, viewers(src))] [SPAN_WARNING("[src] beeps softly and the humming stops as [usr] shuts off the turbines.")]") - is_on = 0 - power_gen_percent = 0 - cur_tick = 0 - icon_state = "off" - stop_processing() - return 1 - visible_message("[icon2html(src, viewers(src))] [SPAN_WARNING("[src] beeps loudly as [usr] turns on the turbines and the generator begins spinning up.")]") - icon_state = "on10" - is_on = 1 - cur_tick = 0 - start_processing() - return 1 - -/obj/structure/machinery/power/geothermal/attackby(obj/item/O as obj, mob/user as mob) - if(iswelder(O)) - if(!HAS_TRAIT(O, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) - return - if(buildstate == 1 && !is_on) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no clue how to repair this thing.")) - return 0 - var/obj/item/tool/weldingtool/WT = O - if(WT.remove_fuel(1, user)) - - playsound(loc, 'sound/items/weldingtool_weld.ogg', 25) - user.visible_message(SPAN_NOTICE("[user] starts welding [src]'s internal damage."), - SPAN_NOTICE("You start welding [src]'s internal damage.")) - if(do_after(user, 200 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(buildstate != 1 || is_on || !WT.isOn()) - return FALSE - playsound(loc, 'sound/items/Welder2.ogg', 25, 1) - buildstate = 2 - user.visible_message(SPAN_NOTICE("[user] welds [src]'s internal damage."), - SPAN_NOTICE("You weld [src]'s internal damage.")) - update_icon() - return TRUE - else - to_chat(user, SPAN_WARNING("You need more welding fuel to complete this task.")) - return - else if(HAS_TRAIT(O, TRAIT_TOOL_WIRECUTTERS)) - if(buildstate == 2 && !is_on) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no clue how to repair this thing.")) - return 0 - playsound(loc, 'sound/items/Wirecutter.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts securing [src]'s wiring."), - SPAN_NOTICE("You start securing [src]'s wiring.")) - if(do_after(user, 120 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, numticks = 12)) - if(buildstate != 2 || is_on) - return FALSE - playsound(loc, 'sound/items/Wirecutter.ogg', 25, 1) - buildstate = 3 - user.visible_message(SPAN_NOTICE("[user] secures [src]'s wiring."), - SPAN_NOTICE("You secure [src]'s wiring.")) - update_icon() - return TRUE - else if(HAS_TRAIT(O, TRAIT_TOOL_WRENCH)) - if(buildstate == 3 && !is_on) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no clue how to repair this thing.")) - return 0 - playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts repairing [src]'s tubing and plating."), - SPAN_NOTICE("You start repairing [src]'s tubing and plating.")) - if(do_after(user, 150 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(buildstate != 3 || is_on) - return FALSE - playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) - buildstate = 0 - user.count_niche_stat(STATISTICS_NICHE_REPAIR_GENERATOR) - user.visible_message(SPAN_NOTICE("[user] repairs [src]'s tubing and plating."), - SPAN_NOTICE("You repair [src]'s tubing and plating.")) - update_icon() - return TRUE - else - return ..() //Deal with everything else, like hitting with stuff - -/obj/structure/machinery/power/geothermal/ex_act(severity, direction) - return FALSE //gameplay-wise these should really never go away - //Putting these here since it's power-related /obj/structure/machinery/colony_floodlight_switch name = "Colony Floodlight Switch" diff --git a/code/game/machinery/fuelcell_recycler.dm b/code/game/machinery/fuelcell_recycler.dm index 697d7385a012..52c01beaf6fe 100644 --- a/code/game/machinery/fuelcell_recycler.dm +++ b/code/game/machinery/fuelcell_recycler.dm @@ -1,144 +1,220 @@ /obj/structure/machinery/fuelcell_recycler - name = "fuel cell recycler" + name = "\improper fuel cell recycler" desc = "A large machine with whirring fans and two cylindrical holes in the top. Used to regenerate fuel cells." icon = 'icons/obj/structures/machinery/fusion_eng.dmi' icon_state = "recycler" - anchored = TRUE density = TRUE - idle_power_usage = 5 active_power_usage = 15000 - bound_height = 32 - bound_width = 32 - var/obj/item/fuelCell/cell_left = null - var/obj/item/fuelCell/cell_right = null unslashable = TRUE unacidable = TRUE + indestructible = TRUE -/obj/structure/machinery/fuelcell_recycler/attackby(obj/item/I, mob/user) - if(istype(I, /obj/item/fuelCell)) - if(!cell_left) - if(user.drop_inv_item_to_loc(I, src)) - cell_left = I - start_processing() - else if(!cell_right) - if(user.drop_inv_item_to_loc(I, src)) - cell_right = I - start_processing() - else - to_chat(user, SPAN_NOTICE("The recycler is full!")) - return - update_icon() - else - to_chat(user, SPAN_NOTICE("You can't see how you'd use [I] with [src]...")) + ///How much to recharge the cells per process + var/recharge_amount = 5 + ///A fuel cell in the recycler + var/obj/item/fuel_cell/cell_left + ///A fuel cell in the recycler + var/obj/item/fuel_cell/cell_right + +/obj/structure/machinery/fuelcell_recycler/Destroy() + . = ..() + QDEL_NULL(cell_left) + QDEL_NULL(cell_right) + +/obj/structure/machinery/fuelcell_recycler/get_examine_text(mob/user) + . = ..() + . += SPAN_INFO("It is [machine_processing ? "online" : "offline"].") + if(!ishuman(user)) + return + + if(cell_left) + . += SPAN_INFO("The left cell is at [cell_left.get_fuel_percent()]%.") + if(cell_right) + . += SPAN_INFO("The right cell is at [cell_right.get_fuel_percent()]%.") + +/obj/structure/machinery/fuelcell_recycler/attackby(obj/item/attacking_item, mob/user) + if(!istype(attacking_item, /obj/item/fuel_cell)) + to_chat(user, SPAN_NOTICE("[src] rejects [attacking_item]. It can only regenerate fuel cells.")) + return + var/obj/item/fuel_cell/cell = attacking_item + + if(cell_left && cell_right) + to_chat(user, SPAN_NOTICE("[src] cannot regenerate any more fuel cells. Remove [cell_left] or [cell_right] first.")) + return + + if(cell.get_fuel_percent() == 100) + to_chat(user, SPAN_NOTICE("[cell] is already full and does not need to be regenerated.")) return -/obj/structure/machinery/fuelcell_recycler/attack_hand(mob/M) - if(cell_left == null && cell_right == null) - to_chat(M, SPAN_NOTICE("The recycler is empty.")) + if(!user.drop_inv_item_to_loc(cell, src)) + to_chat(user, SPAN_WARNING("You fail to insert [cell] into [src].")) return - add_fingerprint(M) + add_fingerprint(user) + var/inserted_to_left = TRUE + if(!cell_left) + cell_left = cell + else if(!cell_right) + inserted_to_left = FALSE + cell_right = cell + + to_chat(user, SPAN_NOTICE("You insert [cell] into the [inserted_to_left ? "left" : "right"] fuel cell receptacle.")) + update_icon() + if(!machine_processing) + visible_message(SPAN_NOTICE("[src] starts whirring as it turns on.")) + update_use_power(USE_POWER_ACTIVE) + start_processing() + +/obj/structure/machinery/fuelcell_recycler/attack_hand(mob/user) + if(!cell_left && !cell_right) + to_chat(user, SPAN_NOTICE("[src] is empty.")) + return - if(cell_right == null) - cell_left.update_icon() - M.put_in_hands(cell_left) + add_fingerprint(user) + cell_left?.update_icon() + cell_right?.update_icon() + + if(cell_left && cell_right) + if(cell_left.get_fuel_percent() >= cell_right.get_fuel_percent()) + user.put_in_hands(cell_left) + cell_left = null + else + user.put_in_hands(cell_right) + cell_right = null + update_icon() + return + + if(cell_left) + user.put_in_hands(cell_left) cell_left = null update_icon() - else if(cell_left == null) - cell_right.update_icon() - M.put_in_hands(cell_right) + return + + if(cell_right) + user.put_in_hands(cell_right) cell_right = null update_icon() - else - if(cell_left.get_fuel_percent() > cell_right.get_fuel_percent()) - cell_left.update_icon() - M.put_in_hands(cell_left) - cell_left = null - update_icon() - else - cell_right.update_icon() - M.put_in_hands(cell_right) - cell_right = null - update_icon() /obj/structure/machinery/fuelcell_recycler/process() if(inoperable()) - update_use_power(USE_POWER_NONE) - update_icon() + turn_off() return + if(!cell_left && !cell_right) - update_use_power(USE_POWER_IDLE) - update_icon() - stop_processing() + balloon_alert_to_viewers("no cells detected.") + turn_off() return - else - var/active = FALSE - if(cell_left != null) - if(!cell_left.is_regenerated()) - active = TRUE - cell_left.give(active_power_usage*(CELLRATE * 0.1)) - if(cell_right != null) - if(!cell_right.is_regenerated()) - active = TRUE - cell_right.give(active_power_usage*(CELLRATE * 0.1)) - if(active) - update_use_power(USE_POWER_ACTIVE) - else - update_use_power(USE_POWER_IDLE) - stop_processing() - update_icon() + if((!cell_right && cell_left?.is_regenerated()) || (!cell_left && cell_right?.is_regenerated()) || (cell_left?.is_regenerated() && cell_right?.is_regenerated())) + balloon_alert_to_viewers("all cells charged.") + turn_off() + return + + if(cell_left && !cell_left.is_regenerated()) + recharge_cell(cell_left) + + if(cell_right && !cell_right.is_regenerated()) + recharge_cell(cell_right) + + update_icon() /obj/structure/machinery/fuelcell_recycler/power_change() ..() update_icon() /obj/structure/machinery/fuelcell_recycler/update_icon() - src.overlays.Cut() + overlays.Cut() + + if(cell_left) + overlays += "overlay_left_cell" + if(cell_right) + overlays += "overlay_right_cell" if(inoperable()) - icon_state = "recycler0" - if(cell_left != null) - src.overlays += "recycler-left-cell" - if(cell_right != null) - src.overlays += "recycler-right-cell" - return - else icon_state = "recycler" - - var/overlay_builder = "recycler-" - if(cell_left == null && cell_right == null) return - if(cell_right == null) + + if(cell_left) if(cell_left.is_regenerated()) - overlay_builder += "left-charged" + overlays += "overlay_left_charged" else - overlay_builder += "left-charging" + overlays += "overlay_left_charging" - src.overlays += overlay_builder - src.overlays += "recycler-left-cell" - return - else if(cell_left == null) + if(cell_right) if(cell_right.is_regenerated()) - overlay_builder += "right-charged" + overlays += "overlay_right_charged" else - overlay_builder += "right-charging" + overlays += "overlay_right_charging" - src.overlays += overlay_builder - src.overlays += "recycler-right-cell" + if(!machine_processing) + icon_state = "recycler" return - else // both left and right cells are there - if(cell_left.is_regenerated()) - overlay_builder += "left-charged" - else - overlay_builder += "left-charging" + icon_state = "recycler_on" - if(cell_right.is_regenerated()) - overlay_builder += "-right-charged" - else - overlay_builder += "-right-charging" - - src.overlays += overlay_builder - src.overlays += "recycler-left-cell" - src.overlays += "recycler-right-cell" +/obj/structure/machinery/fuelcell_recycler/ex_act(severity) + if(indestructible) return + . = ..() + +/obj/structure/machinery/fuelcell_recycler/proc/turn_off() + visible_message(SPAN_NOTICE("[src] stops whirring as it turns off.")) + stop_processing() + update_icon() + update_use_power(USE_POWER_NONE) + +/obj/structure/machinery/fuelcell_recycler/proc/recharge_cell(obj/item/fuel_cell/cell) + cell.modify_fuel(recharge_amount) + if(!cell.new_cell) + cell.new_cell = TRUE + +/obj/structure/machinery/fuelcell_recycler/full/Initialize(mapload, ...) + . = ..() + cell_left = new(src) + cell_right = new(src) + update_icon() + +//reactor full cells +/obj/item/fuel_cell + name = "\improper WL-6 universal fuel cell" + icon = 'icons/obj/structures/machinery/shuttle-parts.dmi' + icon_state = "cell-full" + desc = "A rechargeable fuel cell designed to work as a power source for the Cheyenne-Class transport or for Westingland S-52 Reactors." + ///How much fuel is in the reactor + var/fuel_amount = 100 + ///Max amount that the cell can hold + var/max_fuel_amount = 100 + ///If the fuel cell has been used since last recharge + var/new_cell = TRUE + +/obj/item/fuel_cell/update_icon() + switch(get_fuel_percent()) + if(-INFINITY to 0) + icon_state = "cell-empty" + if(0 to 25) + icon_state = "cell-low" + if(25 to 75) + icon_state = "cell-medium" + if(75 to 99) + icon_state = "cell-high" + if(100 to INFINITY) + icon_state = "cell-full" + +/obj/item/fuel_cell/get_examine_text(mob/user) + . = ..() + if(ishuman(user)) + . += "The fuel indicator reads: [get_fuel_percent()]%" + +///Percentage of fuel left in the cell +/obj/item/fuel_cell/proc/get_fuel_percent() + return round(100 * fuel_amount/max_fuel_amount) + +///Whether the fuel cell is full +/obj/item/fuel_cell/proc/is_regenerated() + return (fuel_amount == max_fuel_amount) + +/// increase or decrease fuel, making sure it cannot go above the max +/obj/item/fuel_cell/proc/modify_fuel(amount) + fuel_amount = clamp(fuel_amount + amount, 0, max_fuel_amount) + +/obj/item/fuel_cell/used + new_cell = FALSE diff --git a/code/game/machinery/fusion_engine.dm b/code/game/machinery/fusion_engine.dm index 0e5f8142c2be..a7dd033d09f9 100644 --- a/code/game/machinery/fusion_engine.dm +++ b/code/game/machinery/fusion_engine.dm @@ -1,417 +1,458 @@ -//Experimental engine for the Almayer. Should be fancier. I expect I'll eventually make it totally separate from the Geothermal as I don't like the procs... - Apop +//Reactor damage states +#define BUILDSTATE_FUNCTIONAL 0 +#define BUILDSTATE_DAMAGE_WRENCH 1 +#define BUILDSTATE_DAMAGE_WIRE 2 +#define BUILDSTATE_DAMAGE_WELD 3 +//How often it checks if the reactor has failed +#define REACTOR_FAIL_CHECK_TICKS 100 -#define FUSION_ENGINE_MAX_POWER_GEN 50000 //Full capacity - -#define FUSION_ENGINE_FAIL_CHECK_TICKS 100 //Check for failure every this many ticks - -/obj/structure/machinery/power/fusion_engine +/obj/structure/machinery/power/reactor name = "\improper S-52 fusion reactor" icon = 'icons/obj/structures/machinery/fusion_eng.dmi' - icon_state = "off-0" - desc = "A Westingland S-52 Fusion Reactor. Takes fuels cells and converts them to power for the ship. Also produces a large amount of heat." - directwired = 0 //Requires a cable directly underneath + icon_state = "off" + desc = "A Westingland S-52 Fusion Reactor." + directwired = FALSE //Requires a cable directly underneath unslashable = TRUE - unacidable = TRUE //NOPE.jpg + unacidable = TRUE anchored = TRUE density = TRUE power_machine = TRUE - - var/power_gen_percent = 0 //50,000W at full capacity - var/buildstate = 0 //What state of building it are we on, 0-3, 1 is "broken", the default - var/is_on = TRUE //Is this damn thing on or what? - var/fail_rate = FALSE //% chance of failure each fail_tick check + throwpass = FALSE + + ///Whether the reactor is functional + var/is_on = TRUE + ///Whether the reactor is on the ship + var/is_ship_reactor = FALSE + ///If the generator is overloaded + var/overloaded = FALSE //Only possible during hijack once fuel is at 100% + + ///How damaged the reactor is + var/buildstate = BUILDSTATE_FUNCTIONAL + + ///Original fail rate of the reactor + var/original_fail_rate = 0 + ///% chance of the reactor failing every check_failure + var/fail_rate = 0 + ///How often the reactor checks if it can fail + var/fail_check_ticks = REACTOR_FAIL_CHECK_TICKS + ///How many ticks since last fail check var/cur_tick = 0 //Tick updater - var/obj/item/fuelCell/fusion_cell = new //Starts with a fuel cell loaded in. Maybe replace with the plasma tanks in the future and have it consume plasma? Possibly remove this later if it's irrelevent... - var/fuel_rate = 0 //Rate at which fuel is used. Based mostly on how long the generator has been running. - /// If the generator is overloaded. Only possible during hijack once fuel is at 100%. - var/overloaded = FALSE + ///% of power produced, increases to 100% over time + var/power_gen_percent = 0 + ///How much the reactor will generate at max power_gen_percent + var/power_generation_max = 50000 //50,000W + ///All icon states split by power_gen_percent + var/list/power_percent_states = list(10, 25, 50, 75, 100) //Easier to add more icon states to one without also adding them to the other -/obj/structure/machinery/power/fusion_engine/Initialize(mapload, ...) + ///Whether the reactor requires a fusion cell + var/require_fusion_cell = TRUE + ///The reactors fuel cell, fail rate increases if empty + var/obj/item/fuel_cell/fusion_cell + +/obj/structure/machinery/power/reactor/Initialize(mapload, ...) . = ..() - fusion_cell.fuel_amount = 100 + if(is_mainship_level(z)) //Only ship reactors can overload + is_ship_reactor = TRUE + + if(!buildstate && is_ground_level(z)) //Colony reactors start damaged + switch(rand(1, 6)) + if(1 to 3) //50% + buildstate = BUILDSTATE_DAMAGE_WELD + if(4 to 5) //34% + buildstate = BUILDSTATE_DAMAGE_WIRE + if(6) //16% + buildstate = BUILDSTATE_DAMAGE_WRENCH + + if(require_fusion_cell) //Set up fuel cell if needed + fusion_cell = new /obj/item/fuel_cell/used(src) + fusion_cell.fuel_amount = fusion_cell.max_fuel_amount + + fail_rate = original_fail_rate update_icon() - connect_to_network() //Should start with a cable piece underneath, if it doesn't, something's messed up in mapping - start_processing() -/obj/structure/machinery/power/fusion_engine/Destroy() + if(is_on) + start_processing() + + return INITIALIZE_HINT_ROUNDSTART + +/obj/structure/machinery/power/reactor/LateInitialize() //Need to wait for powernets to start existing first + . = ..() + + if(!connect_to_network()) //Make sure its connected to a powernet + CRASH("[src] has failed to connect to a power network. Check that it has been mapped correctly.") + +/obj/structure/machinery/power/reactor/Destroy() QDEL_NULL(fusion_cell) return ..() -/obj/structure/machinery/power/fusion_engine/attack_alien(mob/living/carbon/xenomorph/xeno) - if(!overloaded) - to_chat(xeno, SPAN_WARNING("You see no reason to attack [src].")) - return XENO_NO_DELAY_ACTION +/obj/structure/machinery/power/reactor/get_examine_text(mob/user) + . = ..() - xeno.animation_attack_on(src) - playsound(src, 'sound/effects/metalhit.ogg', 25, 1) - xeno.visible_message(SPAN_DANGER("[xeno] [xeno.slashes_verb] [src], stopping its overload process!"), \ - SPAN_DANGER("You [xeno.slash_verb] [src], stopping its overload process!"), null, 5, CHAT_TYPE_XENO_COMBAT) - set_overloading(FALSE) - return XENO_ATTACK_ACTION + if(!is_on) + . += SPAN_INFO("It is offline.") + + if(!ishuman(user)) + return + if(is_on) + . += SPAN_INFO("The power gauge reads: [power_gen_percent]%") -/obj/structure/machinery/power/fusion_engine/power_change() + switch(buildstate) + if(BUILDSTATE_DAMAGE_WELD) + . += SPAN_INFO(SPAN_BOLD("Use a blowtorch to repair it.")) + if(BUILDSTATE_DAMAGE_WIRE) + . += SPAN_INFO(SPAN_BOLD("Use wirecutters to repair it.")) + if(BUILDSTATE_DAMAGE_WRENCH) + . += SPAN_INFO(SPAN_BOLD("Use a wrench to repair it.")) + + if(buildstate || require_fusion_cell && (!fusion_cell || fusion_cell.fuel_amount <= 0)) + if(is_on) + . += SPAN_INFO("The emergency shutdown button is visible.") + else + . += SPAN_INFO("The emergency start lever is visible.") + + if(!fusion_cell) + . += SPAN_INFO("There is no fuel cell in it.") + else + switch(fusion_cell.get_fuel_percent()) + if(-INFINITY to 0) + . += SPAN_INFO("[fusion_cell] is empty.") + if(1 to 9) + . += SPAN_INFO("[fusion_cell] is critically low.") + if(10 to 24) + . += SPAN_INFO("[fusion_cell] is low.") + if(25 to 49) + . += SPAN_INFO("[fusion_cell] is less than half full.") + if(50 to 74) + . += SPAN_INFO("[fusion_cell] is over half full.") + if(75 to 99) + . += SPAN_INFO("[fusion_cell] is nearly full.") + if(99 to INFINITY) + . += SPAN_INFO("[fusion_cell] is full.") + + if(is_ship_reactor && SShijack.sd_unlocked) + if(overloaded) + . += SPAN_INFO("It is overloaded.") + return + if(skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + . += SPAN_INFO("You could overload its safeties with a multitool.") + +/obj/structure/machinery/power/reactor/power_change() . = ..() if(overloaded) set_overloading(FALSE) - visible_message("[icon2html(src, viewers(src))] [src]'s overload suddenly ceases as primary power is lost.") + visible_message(SPAN_NOTICE("[src]'s overload suddenly ceases as primary power is lost.")) -/obj/structure/machinery/power/fusion_engine/process() - if(!is_on || buildstate || !anchored || !powernet || !fusion_cell) //Default logic checking - if(is_on) - is_on = FALSE - power_gen_percent = 0 - update_icon() - stop_processing() - return 0 - if (fusion_cell.fuel_amount <= 0) - visible_message("[icon2html(src, viewers(src))] [src] flashes that the fuel cell is empty as the engine seizes.") - fuel_rate = 0 - buildstate = 2 //No fuel really fucks it. - is_on = 0 - power_gen_percent = 0 - fail_rate+=2 //Each time the engine is allowed to seize up it's fail rate for the future increases because reasons. - update_icon() - stop_processing() - return FALSE +/obj/structure/machinery/power/reactor/process() + if(!is_on) //if off, turn off + start_functioning(FALSE) + return + + if(buildstate) + if(require_fusion_cell) //if broken and fuel cell, lose fuel + if(fusion_cell && fusion_cell.fuel_amount) + fusion_cell.modify_fuel(rand(-5, -20)) + visible_message(SPAN_DANGER("[src] hisses as fuel starts to pool around it.")) + else //Otherwise just start to break down faster + visible_message(SPAN_DANGER("[src] sparks and seizes.")) + fail_rate += 2.5 + + if(require_fusion_cell && (!fusion_cell || fusion_cell.fuel_amount <= 0)) //empty fuel + if(prob(20)) + visible_message(SPAN_DANGER("[src] flashes that the fuel cell is [fusion_cell ? "empty" : "missing"] as the engine seizes.")) + fail_rate += 2.5 if(overloaded && prob(1)) // up to 18 generators at 1% every 3.5 seconds means that every ~21 seconds or so, one generator will make noise assuming all are overloaded - switch(rand(1, 2)) - if(1) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] loudly hums.")]") - playsound(src, 'sound/machines/resource_node/node_idle.ogg', 60, TRUE) - if(2) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] makes a worrying hiss.")]") - playsound(src, 'sound/machines/hiss.ogg', 60, TRUE) - - if(!check_failure()) - if(power_gen_percent < 100) - power_gen_percent++ - - switch(power_gen_percent) //Flavor text! - if(10) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] begins to whirr as it powers up.")]") - fuel_rate = 0.025 - if(50) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] begins to hum loudly as it reaches half capacity.")]") - fuel_rate = 0.05 - if(99) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] rumbles loudly as the combustion and thermal chambers reach full strength.")]") - fuel_rate = 0.1 - - add_avail(FUSION_ENGINE_MAX_POWER_GEN * (power_gen_percent / 100) ) //Nope, all good, just add the power + if(prob(50)) + visible_message(SPAN_NOTICE("[src] loudly hums.")) + playsound(src, 'sound/machines/resource_node/node_idle.ogg', 60, TRUE) + else + visible_message(SPAN_NOTICE("[src] makes a worrying hiss.")) + playsound(src, 'sound/machines/hiss.ogg', 60, TRUE) - update_icon() + if(power_gen_percent < 100) + power_gen_percent = min(power_gen_percent + 1, 100) + add_avail(power_generation_max * (power_gen_percent / 100)) + check_failure(buildstate > BUILDSTATE_DAMAGE_WIRE || require_fusion_cell && (!fusion_cell || fusion_cell.fuel_amount <= 0)) + update_icon() -/obj/structure/machinery/power/fusion_engine/attack_hand(mob/user) - if(!ishuman(user)) - to_chat(user, SPAN_WARNING("You have no idea how to use that.")) //No ayylamos +/obj/structure/machinery/power/reactor/proc/check_failure(damaged_reactor = FALSE) + if(cur_tick < fail_check_ticks) //Nope, not time for it yet + cur_tick++ + if(damaged_reactor) + cur_tick += fail_check_ticks/5 //fail much faster if damaged + return + cur_tick = 0 //reset the timer + + fail_rate = clamp(fail_rate, 0, 100) + if(!prob(fail_rate)) //Oh snap, we failed! Shut it down! + return + + visible_message(SPAN_DANGER("[src] seizes and breaks down.")) + if(buildstate >= BUILDSTATE_DAMAGE_WELD) + start_functioning(FALSE) + buildstate = clamp(buildstate + 1, BUILDSTATE_FUNCTIONAL, BUILDSTATE_DAMAGE_WELD) + +/obj/structure/machinery/power/reactor/attack_hand(mob/user) + . = TRUE + if(overloaded) + to_chat(user, SPAN_DANGER("[src] is not responding to your attempt to shut the reactor down.")) return FALSE add_fingerprint(user) - switch(buildstate) - if(1) - to_chat(user, SPAN_INFO("Use a blowtorch, then wirecutters, then wrench to repair it.")) - return FALSE - if(2) - to_chat(user, SPAN_NOTICE("Use a wirecutters, then wrench to repair it.")) - return FALSE - if(3) - to_chat(user, SPAN_NOTICE("Use a wrench to repair it.")) + + if(buildstate || require_fusion_cell && (!fusion_cell || fusion_cell.fuel_amount <= 0)) + if(is_on) + to_chat(user, SPAN_NOTICE("You press [src]'s emergency shutdown button.")) + visible_message(SPAN_NOTICE("[user] presses [src]'s emergency shutdown button.")) + start_functioning(FALSE) + return + + visible_message(SPAN_NOTICE("[user] starts to hold [src]'s emergency start lever.")) + if(!do_after(user, 3 SECONDS, INTERRUPT_ALL, BUSY_ICON_BUILD, src)) + to_chat(user, SPAN_NOTICE("You let go of the emergency start lever.")) return FALSE + start_functioning(TRUE) + return + if(is_on) - if(overloaded) - to_chat(user, SPAN_WARNING("You can't shut off [src] while it's overloaded!")) - return + visible_message(SPAN_WARNING("[src] beeps softly and stops humming as [user] shuts off the generator.")) + start_functioning(FALSE) + return + + visible_message(SPAN_NOTICE("[src] beeps loudly as [user] starts the reactor.")) + start_functioning(TRUE) - visible_message("[icon2html(src, viewers(src))] [SPAN_WARNING("[src] beeps softly and the humming stops as [usr] shuts off the generator.")]") - is_on = 0 - power_gen_percent = 0 - cur_tick = 0 +/obj/structure/machinery/power/reactor/attack_alien(mob/living/carbon/xenomorph/xeno) + . = XENO_NONCOMBAT_ACTION + if(buildstate >= BUILDSTATE_DAMAGE_WELD) + to_chat(xeno, SPAN_WARNING("You see no reason to attack [src].")) + return + + if(xeno.action_busy) + to_chat(xeno, SPAN_WARNING("You cannot damage [src] while doing something else.")) + return + + if(overloaded) + xeno.animation_attack_on(src) + playsound(src, 'sound/effects/metalhit.ogg', 25, 1) + xeno.visible_message(SPAN_DANGER("[xeno] [xeno.slashes_verb] [src], stopping its overload process!"), \ + SPAN_DANGER("You [xeno.slash_verb] [src], stopping its overload process!"), null, 5, CHAT_TYPE_XENO_COMBAT) + set_overloading(FALSE) + return + + var/looping = FALSE + while(buildstate < BUILDSTATE_DAMAGE_WELD) + to_chat(xeno, SPAN_NOTICE("You [looping ? "continue damaging" : "start to damage"] [src].")) + if(!do_after(xeno, 10 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE, src)) + to_chat(xeno, SPAN_DANGER("You stop damaging [src].")) + break + xeno.animation_attack_on(src) + playsound(src, 'sound/effects/metalhit.ogg', 25, 1) + xeno.visible_message(SPAN_DANGER("[xeno] [xeno.slashes_verb] [src], [is_on ? "disabling" : "damaging"] it!")) + switch(buildstate) + if(BUILDSTATE_FUNCTIONAL) + visible_message(SPAN_DANGER("[src] starts to fall apart!")) + if(BUILDSTATE_DAMAGE_WRENCH) + visible_message(SPAN_DANGER("[src] sparks as wires fall out!")) + if(BUILDSTATE_DAMAGE_WIRE) + visible_message(SPAN_DANGER("[src] gets torn apart!")) + buildstate = clamp(buildstate + 1, BUILDSTATE_FUNCTIONAL, BUILDSTATE_DAMAGE_WELD) update_icon() - stop_processing() - return TRUE + looping = TRUE - if(!fusion_cell) - to_chat(user, SPAN_NOTICE("The reactor requires a fuel cell before you can turn it on.")) - return FALSE +/obj/structure/machinery/power/reactor/attackby(obj/item/attacking_item, mob/user) + //Fuel Cells + if(user.action_busy) + return - if(!powernet) - if(!connect_to_network()) - to_chat(user, SPAN_WARNING("Power network not found, make sure the engine is connected to a cable.")) - return FALSE + if(istype(attacking_item, /obj/item/fuel_cell)) + var/obj/item/fuel_cell/cell = attacking_item + if(fusion_cell) + to_chat(user, SPAN_WARNING("[src] already has [fusion_cell]. Before you can replace it with [cell] you need to remove it with a crowbar.")) + return - if(fusion_cell.fuel_amount <= 10) - to_chat(user, "[icon2html(src, user)] [SPAN_WARNING("[src]: Fuel levels critically low.")]") - visible_message("[icon2html(src, viewers(src))] [SPAN_WARNING("[src] beeps loudly as [user] turns the generator on and begins the process of fusion...")]") - fuel_rate = 0.01 - is_on = 1 - cur_tick = 0 - update_icon() - start_processing() - return TRUE + to_chat(user, SPAN_NOTICE("You start inserting [cell] into [src].")) + if(!do_after(user, 10 SECONDS * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL, BUSY_ICON_BUILD, src)) + return + if(!user.drop_inv_item_to_loc(cell, src)) + to_chat(user, SPAN_NOTICE("You fail to insert [cell] into [src].")) + return + to_chat(user, SPAN_NOTICE("You insert [cell] into [src].")) + fusion_cell = cell + update_icon() + if(cell.new_cell) + fail_rate = original_fail_rate + cell.new_cell = FALSE + return -/obj/structure/machinery/power/fusion_engine/attackby(obj/item/O, mob/user) - if(istype(O, /obj/item/fuelCell)) - if(is_on) - to_chat(user, SPAN_WARNING("[src] needs to be turned off first.")) - return TRUE + if(HAS_TRAIT(attacking_item, TRAIT_TOOL_CROWBAR)) if(!fusion_cell) - if(user.drop_inv_item_to_loc(O, src)) - fusion_cell = O - update_icon() - to_chat(user, SPAN_NOTICE("You load [src] with [O].")) - return TRUE - else - to_chat(user, SPAN_WARNING("You need to remove the fuel cell from [src] first.")) - return TRUE - else if(iswelder(O)) - if(!HAS_TRAIT(O, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) + to_chat(user, SPAN_WARNING("There is no fuel cell to remove from [src].")) return - if(buildstate == 1) - var/obj/item/tool/weldingtool/WT = O - if(WT.remove_fuel(1, user)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - user.visible_message(SPAN_NOTICE("[user] fumbles around figuring out [src]'s internals."), - SPAN_NOTICE("You fumble around figuring out [src]'s internals.")) - var/fumbling_time = 50 - if(!do_after(user, fumbling_time, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) return - playsound(loc, 'sound/items/weldingtool_weld.ogg', 25) - user.visible_message(SPAN_NOTICE("[user] starts welding [src]'s internal damage."), - SPAN_NOTICE("You start welding [src]'s internal damage.")) - if(do_after(user, 200 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(buildstate != 1 || is_on || !WT.isOn()) - return FALSE - playsound(loc, 'sound/items/Welder2.ogg', 25, 1) - buildstate = 2 - user.visible_message(SPAN_NOTICE("[user] welds [src]'s internal damage."), - SPAN_NOTICE("You weld [src]'s internal damage.")) - update_icon() - return TRUE - else - to_chat(user, SPAN_WARNING("You need more welding fuel to complete this task.")) - return FALSE - else if(HAS_TRAIT(O, TRAIT_TOOL_WIRECUTTERS)) - if(buildstate == 2 && !is_on) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - user.visible_message(SPAN_NOTICE("[user] fumbles around figuring out [src]'s wiring."), - SPAN_NOTICE("You fumble around figuring out [src]'s wiring.")) - var/fumbling_time = 50 - if(!do_after(user, fumbling_time, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) return - playsound(loc, 'sound/items/Wirecutter.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts securing [src]'s wiring."), - SPAN_NOTICE("You start securing [src]'s wiring.")) - if(do_after(user, 120 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, numticks = 12)) - if(buildstate != 2 || is_on) - return FALSE - playsound(loc, 'sound/items/Wirecutter.ogg', 25, 1) - buildstate = 3 - user.visible_message(SPAN_NOTICE("[user] secures [src]'s wiring."), - SPAN_NOTICE("You secure [src]'s wiring.")) - update_icon() - return TRUE - else if(HAS_TRAIT(O, TRAIT_TOOL_WRENCH)) - if(buildstate == 3 && !is_on) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - user.visible_message(SPAN_NOTICE("[user] fumbles around figuring out [src]'s tubing and plating."), - SPAN_NOTICE("You fumble around figuring out [src]'s tubing and plating.")) - var/fumbling_time = 50 - if(!do_after(user, fumbling_time, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) return - playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts repairing [src]'s tubing and plating."), - SPAN_NOTICE("You start repairing [src]'s tubing and plating.")) - if(do_after(user, 150 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(buildstate != 3 || is_on) - return FALSE - playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) - buildstate = 0 - user.count_niche_stat(STATISTICS_NICHE_REPAIR_GENERATOR) - user.visible_message(SPAN_NOTICE("[user] repairs [src]'s tubing and plating."), - SPAN_NOTICE("You repair [src]'s tubing and plating.")) - update_icon() - return TRUE - else if(HAS_TRAIT(O, TRAIT_TOOL_CROWBAR)) - if(buildstate) - to_chat(user, SPAN_WARNING("You must repair the generator before working with its fuel cell.")) + + to_chat(user, SPAN_NOTICE("You start prying [fusion_cell] out of [src].")) + if(!do_after(user, 10 SECONDS * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL, BUSY_ICON_BUILD, src)) return - if(overloaded) - to_chat(user, SPAN_WARNING("You must restore the safeties on the generator before working with its fuel cell.")) + to_chat(user, SPAN_NOTICE("You remove [fusion_cell] from [src].")) + fusion_cell.update_icon() + user.put_in_hands(fusion_cell) + fusion_cell = null + update_icon() + return + + //Repairing + if(HAS_TRAIT(attacking_item, TRAIT_TOOL_BLOWTORCH)) + if(!attempt_repair(attacking_item, BUILDSTATE_DAMAGE_WELD, user)) return + var/obj/item/tool/weldingtool/welder = attacking_item + if(!welder.remove_fuel(1, user)) + return + playsound(loc, 'sound/items/Welder2.ogg', 25, 1) + buildstate = BUILDSTATE_DAMAGE_WIRE + update_icon() + return - if(is_on) - to_chat(user, SPAN_WARNING("You must turn off the generator before working with its fuel cell.")) + if(HAS_TRAIT(attacking_item, TRAIT_TOOL_WIRECUTTERS)) + if(!attempt_repair(attacking_item, BUILDSTATE_DAMAGE_WIRE, user)) return + playsound(loc, 'sound/items/Wirecutter.ogg', 25, 1) + buildstate = BUILDSTATE_DAMAGE_WRENCH + update_icon() + return - if(!fusion_cell) - to_chat(user, SPAN_WARNING("There is no cell to remove.")) + if(HAS_TRAIT(attacking_item, TRAIT_TOOL_WRENCH)) + if(!attempt_repair(attacking_item, BUILDSTATE_DAMAGE_WRENCH, user)) + return + playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) + buildstate = BUILDSTATE_FUNCTIONAL + update_icon() + return + + //Self Destruct + if(HAS_TRAIT(attacking_item, TRAIT_TOOL_MULTITOOL)) + if(!SShijack.sd_unlocked) + return + if(!is_ship_reactor) + return - else - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - user.visible_message(SPAN_WARNING("[user] fumbles around figuring out [src]'s fuel receptacle."), - SPAN_WARNING("You fumble around figuring out [src]'s fuel receptacle.")) - var/fumbling_time = 50 - if(!do_after(user, fumbling_time, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) return - playsound(loc, 'sound/items/Crowbar.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts prying [src]'s fuel receptacle open."), - SPAN_NOTICE("You start prying [src]'s fuel receptacle open.")) - if(do_after(user, 100 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(buildstate != 0 || is_on || !fusion_cell) - return FALSE - user.visible_message(SPAN_NOTICE("[user] pries [src]'s fuel receptacle open and removes the cell."), - SPAN_NOTICE("You pry [src]'s fuel receptacle open and remove the cell.")) - fusion_cell.update_icon() - user.put_in_hands(fusion_cell) - fusion_cell = null - update_icon() - return TRUE - - else if(HAS_TRAIT(O, TRAIT_TOOL_MULTITOOL)) if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no idea what to do with [src].")) return - if(!overloaded) - if(!SShijack.sd_unlocked) - to_chat(user, SPAN_WARNING("You consider overloading [src]'s safeties, but you decide against it.")) - return + to_chat(user, SPAN_WARNING("You start [overloaded ? "overloading" : "restoring"] the safeties on [src].")) + if(!do_after(user, 2 SECONDS, INTERRUPT_ALL, BUSY_ICON_BUILD)) + return - if(inoperable()) - to_chat(user, SPAN_WARNING("[src] needs to be working and have external power in order to overload it!")) - return + if(inoperable()) + to_chat(user, SPAN_WARNING("[src] needs to be working and have external power in order to be overloaded.")) + return - to_chat(user, SPAN_WARNING("You start overloading the safeties on [src]...")) - if(!do_after(user, 1.5 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - return + set_overloading(!overloaded) + to_chat(user, SPAN_WARNING("You finish [overloaded ? "overloading" : "restoring"] the safeties on [src].")) + log_game("[key_name(user)] has [overloaded ? "overloaded" : "restored the safeties of"] a generator.") + return - if(inoperable()) - return + . = ..() - to_chat(user, SPAN_WARNING("You finish overloading the safeties on [src].")) - set_overloading(TRUE) - log_game("[key_name(user)] has overloaded a generator.") +/obj/structure/machinery/power/reactor/update_icon() + switch(buildstate) + if(BUILDSTATE_DAMAGE_WELD) + icon_state = "weld" + if(BUILDSTATE_DAMAGE_WIRE) + icon_state = "wire" + if(BUILDSTATE_DAMAGE_WRENCH) + icon_state = "wrench" + if(buildstate) + return - else - to_chat(user, SPAN_WARNING("You start restoring the safeties on [src]...")) - if(!do_after(user, 1.5 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - return + if(!is_on) + icon_state = "off" + return - if(inoperable()) - return + if(require_fusion_cell && !fusion_cell) + icon_state = "cell_missing" + return - to_chat(user, SPAN_WARNING("You finish restoring the safeties on [src].")) - log_game("[key_name(user)] has restored the safeties of a generator.") - set_overloading(FALSE) + if(overloaded) + icon_state = "overloaded" + return - return TRUE + var/abs_percent = 100 + var/closest_percent + for(var/current_percent in power_percent_states) + if(abs(current_percent-power_gen_percent) >= abs_percent) + continue + abs_percent = abs(current_percent-power_gen_percent) + closest_percent = current_percent + if(!abs_percent) + break + icon_state = "on-[closest_percent]" + +/obj/structure/machinery/power/reactor/ex_act(severity) + . = FALSE + if(severity <= EXPLOSION_THRESHOLD_MLOW) + return - else - return ..() + var/datum/effect_system/spark_spread/sparks = new + sparks.set_up(7, FALSE, loc) + buildstate = clamp(buildstate + 1, BUILDSTATE_FUNCTIONAL, BUILDSTATE_DAMAGE_WELD) + sparks.start() + + if(!overloaded) + return + set_overloading(FALSE) -/obj/structure/machinery/power/fusion_engine/get_examine_text(mob/user) +/obj/structure/machinery/power/reactor/bullet_act(obj/projectile/bullet) . = ..() - if(isxeno(user)) - if(overloaded) - . += SPAN_INFO("You could attack this to stop the overload process.") - - else if(ishuman(user)) - if(buildstate) - . += SPAN_INFO("It's broken.") - switch(buildstate) - if(1) - . += SPAN_INFO("Use a blowtorch, then wirecutters, then wrench to repair it.") - if(2) - . += SPAN_INFO("Use a wirecutters, then wrench to repair it.") - if(3) - . += SPAN_INFO("Use a wrench to repair it.") - return FALSE + if(buildstate >= BUILDSTATE_DAMAGE_WELD) + return + if(!prob(5)) + return - if(SShijack.sd_unlocked && skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - if(!overloaded) - . += SPAN_INFO("You could overload this with a multitool.") - else - . += SPAN_INFO("You could restore its safeties with a multitool.") + var/datum/effect_system/spark_spread/sparks = new + sparks.set_up(7, FALSE, loc) + buildstate = clamp(buildstate + 1, BUILDSTATE_FUNCTIONAL, BUILDSTATE_DAMAGE_WELD) + sparks.start() - if(!is_on) - . += SPAN_INFO("It looks offline.") - else - . += SPAN_INFO("The power gauge reads: [power_gen_percent]%") - if(fusion_cell) - . += SPAN_INFO("You can see a fuel cell in the receptacle.") - if(skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - switch(fusion_cell.get_fuel_percent()) - if(0 to 10) - . += SPAN_DANGER("The fuel cell is critically low.") - if(10 to 25) - . += SPAN_WARNING("The fuel cell is running low.") - if(25 to 50) - . += SPAN_INFO("The fuel cell is a little under halfway.") - if(50 to 75) - . += SPAN_INFO("The fuel cell is a little above halfway.") - if(75 to INFINITY) - . += SPAN_INFO("The fuel cell is nearly full.") - else - . += SPAN_INFO("There is no fuel cell in the receptacle.") +/obj/structure/machinery/power/reactor/proc/start_functioning(enabling) + if(enabling) + is_on = TRUE + start_processing() + update_icon() + return + is_on = FALSE + power_gen_percent = 0 + cur_tick = 0 + set_overloading(FALSE) + update_icon() -/obj/structure/machinery/power/fusion_engine/ex_act(severity) - if(overloaded && severity >= EXPLOSION_THRESHOLD_MLOW) - set_overloading(FALSE) - return +/obj/structure/machinery/power/reactor/proc/attempt_repair(obj/item/tool, repair_type, mob/user) + if(!tool || !repair_type) + return + if(!buildstate) + to_chat(user, SPAN_NOTICE("[src] does not need repairs.")) + return + if(buildstate != repair_type) + to_chat(user, SPAN_WARNING("You need a different tool to repair [src].")) + return -/obj/structure/machinery/power/fusion_engine/update_icon() - switch(buildstate) - if(0) - if(fusion_cell) - if(overloaded) - icon_state = "overloaded" - else - var/pstatus = is_on ? "on" : "off" - switch(fusion_cell.get_fuel_percent()) - if(0 to 10) - icon_state = "[pstatus]-10" - if(10 to 25) - icon_state = "[pstatus]-25" - if(25 to 50) - icon_state = "[pstatus]-50" - if(50 to 75) - icon_state = "[pstatus]-75" - if(75 to INFINITY) - icon_state = "[pstatus]-100" - else - icon_state = "off" - - if(1) - icon_state = "weld" - if(2) - icon_state = "wire" - if(3) - icon_state = "wrench" + var/repair_time = 20 SECONDS + repair_time *= user.get_skill_duration_multiplier(SKILL_ENGINEER) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + repair_time += 5 SECONDS + to_chat(user, SPAN_NOTICE("You start repairing [src] with [tool].")) + if(!do_after(user, repair_time, INTERRUPT_ALL, BUSY_ICON_BUILD, src)) + return -/obj/structure/machinery/power/fusion_engine/proc/check_failure() - if(cur_tick < FUSION_ENGINE_FAIL_CHECK_TICKS) //Nope, not time for it yet - cur_tick++ - return 0 - cur_tick = 0 //reset the timer - if(rand(1,100) < fail_rate) //Oh snap, we failed! Shut it down! - if(prob(25)) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] beeps wildly and a fuse blows! Use wirecutters, then a wrench to repair it.")]") - buildstate = 2 - else - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] beeps wildly and sprays random pieces everywhere! Use a wrench to repair it.")]") - buildstate = 3 - is_on = 0 - power_gen_percent = 0 - update_icon() - stop_processing() - return 1 - else - return 0 + return TRUE -/obj/structure/machinery/power/fusion_engine/proc/set_overloading(new_overloading) +/obj/structure/machinery/power/reactor/proc/set_overloading(new_overloading) + if(!is_ship_reactor) + return if(overloaded == new_overloading) return @@ -419,42 +460,17 @@ SEND_GLOBAL_SIGNAL(COMSIG_GLOB_GENERATOR_SET_OVERLOADING, overloaded) update_icon() +/obj/structure/machinery/power/reactor/colony + name = "\improper G-11 geothermal generator" + icon = 'icons/obj/structures/machinery/geothermal.dmi' + desc = "A thermoelectric generator sitting atop a plasma-filled borehole." + is_on = FALSE + power_generation_max = 100000 //100,000W at full capacity + original_fail_rate = 10 -//FUEL CELL -/obj/item/fuelCell - name = "\improper WL-6 universal fuel cell" - icon = 'icons/obj/structures/machinery/shuttle-parts.dmi' - icon_state = "cell-full" - desc = "A rechargeable fuel cell designed to work as a power source for the Cheyenne-Class transport or for Westingland S-52 Reactors." - var/fuel_amount = 100 - var/max_fuel_amount = 100 - -/obj/item/fuelCell/update_icon() - switch(get_fuel_percent()) - if(-INFINITY to 0) - icon_state = "cell-empty" - if(0 to 25) - icon_state = "cell-low" - if(25 to 75) - icon_state = "cell-medium" - if(75 to 99) - icon_state = "cell-high" - else - icon_state = "cell-full" - -/obj/item/fuelCell/get_examine_text(mob/user) - . = ..() - if(ishuman(user)) - . += "The fuel indicator reads: [get_fuel_percent()]%" - -/obj/item/fuelCell/proc/get_fuel_percent() - return round(100*fuel_amount/max_fuel_amount) - -/obj/item/fuelCell/proc/is_regenerated() - return (fuel_amount == max_fuel_amount) - -/obj/item/fuelCell/proc/give(amount) - fuel_amount += amount - if(fuel_amount > max_fuel_amount) - fuel_amount = max_fuel_amount +#undef BUILDSTATE_FUNCTIONAL +#undef BUILDSTATE_DAMAGE_WELD +#undef BUILDSTATE_DAMAGE_WIRE +#undef BUILDSTATE_DAMAGE_WRENCH +#undef REACTOR_FAIL_CHECK_TICKS diff --git a/code/game/objects/structures/props.dm b/code/game/objects/structures/props.dm index 8aad7de3e04c..8c03a4dbd66c 100644 --- a/code/game/objects/structures/props.dm +++ b/code/game/objects/structures/props.dm @@ -926,7 +926,7 @@ name = "\improper S-52 fusion reactor" desc = "A Westingland S-52 Fusion Reactor. Takes fuels cells and converts them to power. Also produces a large amount of heat." icon = 'icons/obj/structures/machinery/fusion_eng.dmi' - icon_state = "off-0" + icon_state = "off" /obj/structure/prop/invuln/pipe_water name = "pipe water" diff --git a/code/modules/admin/tabs/event_tab.dm b/code/modules/admin/tabs/event_tab.dm index 5833428c7af6..801bdcc87e18 100644 --- a/code/modules/admin/tabs/event_tab.dm +++ b/code/modules/admin/tabs/event_tab.dm @@ -759,7 +759,7 @@ Power ship SMESs and APCs
Power ship SMESs
Power ALL SMESs and APCs everywhere
- Power all ship reactors
+ Repair and power all ship reactors

Events
Break all lights
diff --git a/colonialmarines.dme b/colonialmarines.dme index f3dc6f1f81d9..602e4fa9de30 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -824,6 +824,7 @@ #include "code\game\machinery\buttons.dm" #include "code\game\machinery\cell_charger.dm" #include "code\game\machinery\cloning.dm" +#include "code\game\machinery\colony_floodlights.dm" #include "code\game\machinery\constructable_frame.dm" #include "code\game\machinery\cryo.dm" #include "code\game\machinery\cryopod.dm" @@ -836,7 +837,6 @@ #include "code\game\machinery\fuelcell_recycler.dm" #include "code\game\machinery\fusion_engine.dm" #include "code\game\machinery\gear.dm" -#include "code\game\machinery\groundmap_geothermal.dm" #include "code\game\machinery\hologram.dm" #include "code\game\machinery\holosign.dm" #include "code\game\machinery\igniter.dm" diff --git a/icons/obj/structures/machinery/fusion_eng.dmi b/icons/obj/structures/machinery/fusion_eng.dmi index 4d42baac72556c79fcf7fbd7dcb738214fb6497b..9bd9024201511f88811f760dd06c18ef22441e8c 100644 GIT binary patch literal 14911 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 literal 2388 zcmYjTdpOgJ8(%4t44L>26Cshi3=x%Br?!Mib8VfFqE1uC zZ-*Gtc2;t~=9b)IE~k^riSTpI@ArFt=kq-8`#$gcJn!fEyzle=@!oVJI>ThuWFZg; z40qDOV=MM;*-IIzE#L5)(#BROadSE2SYKbStg3-VqkYewaU}X1o1QrDPM`<*SKLcy z#Q#9QlC7<+tpaGuE5fyOjZDn!9!N=9T3Vj4Ix4qYR&}p35{c|>ZABX&($dnxJKCX8 zsC_zz2+sCLOpLVmA)`V;trQLbfyh9iIuHl~P|@43Wq!m&@f>Xy0ufXM)9{KMq86D< zPDn@)gazyA>7A68#^dp@lhT_Ii25dE9RhJ6_<3~tG;9gp7UMxY4LLE{7qpeEC7dC} zI0Qz6KZIV435|?^K;jFYW)ox^QHp83?+sFhyhGQ0e%-_5w^=m>eb_~>OE@VC5HeFLW2;ab`E;o|)}t35W_yL{tiCd#(y zI2&cDN!o&p4BZPx-33~=+hE##SUUBYk%3EARvC*yP}L2$JAJ;rt1??F7`MmB;F{jf z=enCYLAC|?QCRE>Ok26P5t1zZXml@&U)4IMaC*qAD1gdc#68&Ir3DXn-ROsP{+aZm zYOl|Du!u4+;+UWpe;T2Dx&9ccbmfUJMt`b1sd&R2{`EV*_DZA0ur~K|aL+(J1OoNK zIoO?vFPO_?Vh7BDG_V}4lHHBb$@U@TrMqLV4UKHJFQ2N6$Wh*mQg$vqM!ec)ax4AL zVf_MQmB@3BZqY$_?C@cGb?pgq?#{<8jcz{CKei=6?b!h;;}x>@p1~ER6h^7|BB*`1 z9AoB|f%Y}hE5*dty*?80>m^K;6ZXOWc#~SUPzA>@D|={p)tR>U3k!LXgCyKK zOL0OfmsLKEh$WPT{nQmRBB{F2A4g%4XtOsQUIG1&#kr2V;jX5u%3Rs)u^KS6jkLR zOkMM|sR%dPq({9wr8SZ7=@q2@j?eePm{mY;rey)DNhXjTW)!%%wh zaAm>K2$L89k` zG+0Z!`cHqvbpT?^P*y+>*O%I?3e<$1?H$Tf_54pJ)=f-{u z;n!;K%v`iGe!=UWQK}hLzjqw`rMi}*A|+I-%Uylh|9s%l zZG6RO{^M51hKT#j4c|dFT3?yH3o&pKyhj1k3SvS^8c{=mIddCja#o^`y z5wTgRh9Pb;rc-nJ>N3GJVu&0#Kh0_Ww7rYGNdH->Cip(&1Y!E*qjt0=1t@WJIG}sC zFNxD0sv&eSJjA z@3qtKK|0TJJ7>~$V%vsnbvuwE2^TI&2V>i6vI7Jx2^Z%*ga$QVI$@wOA|9}=N){il zDA7zAlS4a496~p*j#4gQ6eK3tB3#(ym&_q-bLLv0+{4>@t9Zt+P0Ltnk^Jg!p(L1$ z4exhK>*>+a;Yy zXVV<7IE{9Wo8eHDkzOy-88f*i!!^4Ur}6zP*a8T@N!gxV5i_#*wJ5O4+lG;fEm<9t zVIb!7#L=su{L!?T8*s0*kFc4bn+rArAE zzii&zG7cTyF%h=Q0>62cVC~ON_S!r}%Rm^ne~0bQiON^DLJLE{ofgZ6HqwGW6uYE2 zi@j5}6ZGVaeiNAHjVTo7ypvN!+=1n$?HGkOzEoP#2E~d!Y!|`)fabz6_$y*Udz}kJGH*F`|FE_7jB@U$`*L!Z%YJ7uYaR=C9K&!H6Vw9h?S~E6m z<`4d(Q21bL0J$_tbnrp){qiM+aC@}_7n|*LMpwzv90X!FnLAZ$_-SXCkciV+jI`9tH)!_&F>D+e)_-ktr6ZV*{0}gaKA+R3$`8&2+on{@C@sp@^2n# BYmNW_ diff --git a/icons/obj/structures/machinery/geothermal.dmi b/icons/obj/structures/machinery/geothermal.dmi index a3cd64c37421e73181bcf52df18758a2d12e107d..6d3d5af4ef883f6b398e043c4f5d8e570abe70cb 100644 GIT binary patch literal 10734 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 BTwMSF literal 1472 zcmV;x1wZa~PN=A;aBy($?(X#T^h!lRoSd8t3knw%6wS@e08Yd)E-L^t003tH{{R4YcXuNr zBT7mD`Tzj>V=- z0C=2JR&a84_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex6#a*WNmI5Sc+(=$pSoZ^zi zl2jm5DL*YuiHkEOv#1!zGvwk-D@x2wg|HE7@(c}#P-J9Egd$U7Ofo0NBtrwjMwO@L zq!3n=S(HjxQBi7Mat1DC$_lQ2F5vJ70Ju16qxJl@w*UYHR!KxbRA_wa1r06oG$xbG7C8;&i!>%9AWHT`F&G8S9a#`w?N|&#_;&6{!2o4xJO&}DtQn5< zL{S*rMNgE=i6Sw{^5vK-PVw1*xjXG4CL+vzCgl zAh+sq%pT-+_H79R)^n5TYiTBGsy2+iPG+LMjHn11X|`;3NxN#zthaC5*X`P`x({R8 zcRDlow0Y_=y6WK!KpQcH)aq)fs^c)>g|(nLwfG~LAk_ScZ?Y#lZ484DzOo+KXRCNsI|L&|Ut0MYVG@MD69ZDiHlm1OjnR?39Br|2|D9nGJsbl2j-kCZ^ zUbdNyW)2`PQ?K9OyYq4%=5X*BV>Wj>>yww!P%~yChe1PvkdO#WI8e2?j6IkG%@A2QP;~^RR~C-N^vc4qm}q%AGBHYO#N}D&CaniHJDL4oj)RHYBa+v zd;*DQm4&5Q}E;dAOrbcSx&oH}6rUMjORI8iuvcQHxD zq*yfcQFz&8zd`OaYM5!nlY;C@HurC zgIgcXF3RkNci^V8BDo0fbF#2BE3dd_>|UM7ygd9YTl`U@tZxJ`dz6ny z0bSm!+3D!z-@Q diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index 9caf797b926d..cd01b5cb8040 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -8,11 +8,6 @@ icon_state = "pwall" }, /area/space) -"aac" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, -/area/bigredv2/outside/n) "aad" = ( /turf/open/mars_cave{ icon_state = "mars_cave_2" @@ -165,6 +160,12 @@ icon_state = "dark" }, /area/bigredv2/outside/space_port) +"aaB" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/n_cave) "aaC" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, @@ -571,23 +572,11 @@ icon_state = "darkgreen2" }, /area/bigredv2/outside/space_port) -"abL" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, -/area/bigredv2/outside/n) "abM" = ( /turf/open/mars_cave{ icon_state = "mars_cave_5" }, /area/bigredv2/caves_north) -"abN" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/n) "abO" = ( /turf/open/mars_cave, /area/bigredv2/caves_north) @@ -629,33 +618,21 @@ /obj/structure/window_frame/solaris, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"abU" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/outside/n) "abV" = ( /turf/open/mars_cave{ icon_state = "mars_cave_11" }, /area/bigredv2/caves_north) -"abW" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/n) -"abX" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/n) "abY" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, /turf/open/mars_cave{ icon_state = "mars_cave_7" }, -/area/bigredv2/outside/n) +/area/bigredv2/caves_north) "abZ" = ( /obj/structure/machinery/light{ dir = 1 @@ -671,11 +648,16 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"acc" = ( +"acb" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, /turf/open/mars_cave{ - icon_state = "mars_cave_15" + icon_state = "mars_cave_2" }, -/area/bigredv2/outside/n) +/area/bigredv2/caves_north) "acd" = ( /obj/effect/landmark/good_item, /turf/open/floor/plating, @@ -711,11 +693,6 @@ icon_state = "warnplate" }, /area/bigredv2/outside/space_port) -"ack" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/caves_lambda) "acl" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, @@ -818,12 +795,6 @@ icon_state = "white" }, /area/bigredv2/outside/marshal_office) -"acE" = ( -/obj/structure/machinery/botany, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) "acF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -831,11 +802,6 @@ icon_state = "white" }, /area/bigredv2/outside/marshal_office) -"acG" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/outside/n) "acH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -1289,22 +1255,6 @@ icon_state = "wood" }, /area/bigredv2/outside/marshal_office) -"adX" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"adY" = ( -/obj/structure/closet/secure_closet/detective, -/obj/item/weapon/gun/smg/fp9000, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) "adZ" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/lambda/xenobiology) @@ -3010,7 +2960,8 @@ /turf/open/floor, /area/bigredv2/outside/marshal_office) "aiN" = ( -/obj/structure/machinery/computer/prisoner, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/marshal_office) "aiO" = ( @@ -3308,11 +3259,6 @@ icon_state = "bcircuit" }, /area/bigredv2/outside/marshal_office) -"ajD" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/bigredv2/outside/n) "ajE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -3502,25 +3448,12 @@ icon_state = "bcircuit" }, /area/bigredv2/outside/marshal_office) -"akf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"akg" = ( -/obj/effect/landmark/static_comms/net_one, +"akh" = ( /turf/open/floor{ - icon_state = "bcircuit" + dir = 1; + icon_state = "asteroidfloor" }, -/area/bigredv2/outside/marshal_office) +/area/bigredv2/outside/telecomm/n_cave) "aki" = ( /obj/structure/surface/table, /obj/item/clothing/mask/gas, @@ -3577,8 +3510,7 @@ /turf/open/floor, /area/bigredv2/outside/marshal_office) "akr" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/computer/prisoner, /turf/open/floor, /area/bigredv2/outside/marshal_office) "aks" = ( @@ -3725,26 +3657,12 @@ icon_state = "dark" }, /area/bigredv2/outside/marshal_office) -"akN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +"akP" = ( /turf/open/floor{ - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"akO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 6; - icon_state = "red" + dir = 8; + icon_state = "asteroidwarning" }, -/area/bigredv2/outside/marshal_office) +/area/bigredv2/outside/telecomm/n_cave) "akQ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/southright, @@ -3820,6 +3738,14 @@ icon_state = "whitepurplefull" }, /area/bigredv2/caves/lambda/xenobiology) +"ald" = ( +/obj/structure/surface/table/reinforced, +/obj/item/book/manual/research_and_development, +/turf/open/floor{ + dir = 4; + icon_state = "whitepurple" + }, +/area/bigredv2/caves/lambda/xenobiology) "ale" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -3889,9 +3815,12 @@ }, /area/bigredv2/outside/nw) "alp" = ( -/obj/structure/machinery/light, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Evidence Room" + }, /turf/open/floor{ - icon_state = "bcircuit" + icon_state = "delivery" }, /area/bigredv2/outside/marshal_office) "alr" = ( @@ -3944,15 +3873,6 @@ }, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"aly" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) "alz" = ( /obj/structure/bed/chair{ dir = 4 @@ -4259,18 +4179,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"amv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) "amw" = ( /obj/structure/bed/chair{ dir = 4 @@ -4572,11 +4480,6 @@ /obj/effect/spawner/random/powercell, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"ann" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, -/area/bigredv2/outside/n) "ano" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Lambda Lab Maintenance Storage" @@ -4605,11 +4508,14 @@ }, /area/bigredv2/outside/medical) "ant" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Dormitories"; + name = "\improper Dormitories Shutters" }, -/area/bigredv2/outside/ne) +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) "anu" = ( /obj/structure/machinery/light{ dir = 4 @@ -4774,10 +4680,13 @@ /turf/closed/wall/solaris, /area/bigredv2/outside/hydroponics) "anU" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Greenhouse"; + name = "\improper Greenhouse Shutters" }, -/area/bigredv2/caves_lambda) +/turf/open/floor/plating, +/area/bigredv2/outside/hydroponics) "anV" = ( /obj/item/reagent_container/spray/pepper, /turf/open/floor{ @@ -4809,9 +4718,6 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/medical) -"aoa" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves_north) "aob" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/lambda/virology) @@ -4916,29 +4822,6 @@ }, /turf/open/floor, /area/bigredv2/outside/general_offices) -"aor" = ( -/obj/item/clothing/under/darkred, -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"aos" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"aot" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/brown, -/obj/structure/machinery/washing_machine{ - pixel_y = 13 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) "aou" = ( /turf/open/floor/plating, /area/bigredv2/outside/general_offices) @@ -5173,12 +5056,6 @@ icon_state = "freezerfloor" }, /area/bigredv2/outside/general_offices) -"apf" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) "apg" = ( /obj/item/clothing/under/lightbrown, /turf/open/floor{ @@ -5672,7 +5549,7 @@ }, /area/bigredv2/outside/medical) "aqv" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/bed, /turf/open/floor{ icon_state = "white" }, @@ -5690,20 +5567,6 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/library) -"aqy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = 32 - }, -/obj/structure/bed, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) "aqz" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -5712,15 +5575,6 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/bar) -"aqB" = ( -/obj/structure/machinery/computer/crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) "aqC" = ( /obj/structure/surface/table, /turf/open/floor{ @@ -5728,33 +5582,6 @@ icon_state = "whitebluefull" }, /area/bigredv2/outside/medical) -"aqE" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"aqF" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aqG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) "aqH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -5877,22 +5704,6 @@ icon_state = "elevatorshaft" }, /area/bigredv2/caves/lambda/breakroom) -"aqZ" = ( -/obj/structure/noticeboard{ - desc = "A board for pinning important items upon."; - dir = 1; - name = "trophy board"; - pixel_y = 30 - }, -/obj/item/XenoBio/Chitin{ - anchored = 1; - pixel_y = 27 - }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, -/area/bigredv2/caves/lambda/breakroom) "ara" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp{ @@ -5970,7 +5781,7 @@ }, /area/bigredv2/outside/medical) "ark" = ( -/obj/structure/bed, +/obj/structure/bed/roller, /turf/open/floor{ icon_state = "white" }, @@ -5986,15 +5797,6 @@ icon_state = "white" }, /area/bigredv2/outside/medical) -"arn" = ( -/obj/structure/machinery/computer/med_data{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) "arp" = ( /turf/open/mars{ icon_state = "mars_dirt_3" @@ -6006,36 +5808,12 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/outside/n) -"arr" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/n) "ars" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor, /area/bigredv2/outside/general_offices) -"art" = ( -/obj/structure/surface/table, -/obj/item/clothing/under/lightbrown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"aru" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"arv" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/bigredv2/outside/n) "arw" = ( /obj/structure/machinery/power/apc, /turf/open/floor/plating, @@ -6058,14 +5836,6 @@ icon_state = "dark" }, /area/bigredv2/outside/general_offices) -"arz" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_covered_bed" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves_lambda) "arA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/rack, @@ -6212,14 +5982,6 @@ icon_state = "white" }, /area/bigredv2/outside/medical) -"arV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) "arW" = ( /obj/structure/surface/table, /obj/structure/machinery/light{ @@ -6339,12 +6101,6 @@ /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/outside/virology) -"asm" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/ne) "asn" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/armor/vest, @@ -6489,13 +6245,6 @@ icon_state = "whitegreenfull" }, /area/bigredv2/outside/medical) -"asG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) "asH" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -6724,17 +6473,8 @@ icon_state = "whitepurplecorner" }, /area/bigredv2/outside/medical) -"atp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) "atq" = ( -/obj/structure/bed/roller, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor{ icon_state = "white" }, @@ -6745,42 +6485,6 @@ icon_state = "white" }, /area/bigredv2/outside/medical) -"ats" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/n) -"att" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"atu" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"atv" = ( -/obj/structure/morgue{ - dir = 2 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) "atw" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -6978,18 +6682,6 @@ icon_state = "delivery" }, /area/bigredv2/outside/medical) -"atW" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) "atX" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/blood{ @@ -7141,6 +6833,12 @@ icon_state = "dark" }, /area/bigredv2/caves/lambda/breakroom) +"aus" = ( +/turf/open/floor{ + dir = 10; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/n_cave) "aut" = ( /turf/open/floor{ dir = 4; @@ -7269,13 +6967,6 @@ icon_state = "whitepurplecorner" }, /area/bigredv2/outside/medical) -"auJ" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) "auK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -7305,51 +6996,12 @@ icon_state = "whitegreen" }, /area/bigredv2/outside/medical) -"auO" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) "auP" = ( /turf/open/floor{ dir = 9; icon_state = "whiteblue" }, /area/bigredv2/outside/medical) -"auR" = ( -/obj/structure/morgue{ - dir = 2 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"auS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/morgue{ - dir = 2 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"auT" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) "auU" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -7370,12 +7022,6 @@ "auW" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/outside/c) -"auX" = ( -/obj/structure/barricade/handrail, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) "auY" = ( /turf/open/floor/carpet, /area/bigredv2/caves/lambda/breakroom) @@ -7648,11 +7294,6 @@ }, /turf/open/floor, /area/bigredv2/outside/general_offices) -"avK" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, -/area/bigredv2/outside/n) "avM" = ( /obj/structure/machinery/light{ dir = 8 @@ -7792,11 +7433,6 @@ icon_state = "purple" }, /area/bigredv2/caves/lambda/research) -"awf" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/caves_lambda) "awg" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ @@ -7824,14 +7460,6 @@ icon_state = "white" }, /area/bigredv2/outside/medical) -"awj" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "\improper Medical Clinic Morgue" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) "awk" = ( /obj/structure/machinery/medical_pod/sleeper, /turf/open/floor{ @@ -7844,13 +7472,6 @@ icon_state = "white" }, /area/bigredv2/outside/medical) -"awm" = ( -/obj/structure/machinery/optable, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) "awn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, @@ -7915,19 +7536,6 @@ /obj/effect/landmark/crap_item, /turf/open/floor, /area/bigredv2/outside/general_offices) -"awx" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/n) -"awy" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/ne) "awz" = ( /obj/item/ashtray/bronze{ pixel_x = -7 @@ -8146,12 +7754,6 @@ icon_state = "grimy" }, /area/bigredv2/outside/dorms) -"axf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) "axg" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -8189,12 +7791,6 @@ /obj/structure/barricade/wooden, /turf/open/floor, /area/bigredv2/outside/general_offices) -"axm" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, -/area/bigredv2/outside/n) "axn" = ( /obj/structure/window/reinforced/toughened{ dir = 1; @@ -8315,20 +7911,6 @@ icon_state = "whitegreen" }, /area/bigredv2/outside/medical) -"axD" = ( -/obj/structure/morgue{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"axE" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) "axF" = ( /obj/structure/barricade/wooden, /obj/structure/barricade/wooden, @@ -8644,11 +8226,6 @@ icon_state = "wood" }, /area/bigredv2/outside/general_offices) -"ayz" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/bigredv2/outside/ne) "ayA" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light, @@ -8810,12 +8387,6 @@ "ayV" = ( /turf/open/floor/plating, /area/bigredv2/outside/medical) -"ayW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) "ayX" = ( /obj/effect/landmark/good_item, /turf/open/floor, @@ -8856,16 +8427,6 @@ icon_state = "wood" }, /area/bigredv2/outside/general_offices) -"aze" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/ne) "azf" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -9066,11 +8627,13 @@ /turf/open/floor/plating, /area/bigredv2/outside/engineering) "azF" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, /turf/open/mars_cave{ - icon_state = "mars_dirt_4" + icon_state = "mars_cave_2" }, -/area/bigredv2/outside/n) +/area/bigredv2/caves_lambda) "azG" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -9120,9 +8683,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/dorms) -"azR" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/w) "azS" = ( /obj/structure/machinery/vending/snack{ icon_state = "snack-broken"; @@ -9162,10 +8722,6 @@ }, /turf/open/floor, /area/bigredv2/outside/dorms) -"azX" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor, -/area/bigredv2/outside/dorms) "azY" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -9193,32 +8749,6 @@ }, /turf/open/floor, /area/bigredv2/outside/dorms) -"aAc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Bar Maintenance" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/bar) -"aAd" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Evidence Room" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"aAe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) "aAf" = ( /obj/structure/machinery/light{ dir = 1 @@ -9228,11 +8758,6 @@ "aAg" = ( /turf/open/floor/plating, /area/bigredv2/outside/bar) -"aAh" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/outside/ne) "aAi" = ( /turf/open/floor{ dir = 8; @@ -9369,12 +8894,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/dorms) -"aAD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) "aAE" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; @@ -9384,16 +8903,6 @@ icon_state = "delivery" }, /area/bigredv2/outside/dorms) -"aAF" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"aAG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) "aAH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9696,13 +9205,6 @@ /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/caves/eta/research) -"aBx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/ne) "aBy" = ( /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, @@ -9849,24 +9351,6 @@ /obj/item/trash/candy, /turf/open/floor, /area/bigredv2/outside/dorms) -"aBV" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) "aBW" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -9882,12 +9366,6 @@ icon_state = "freezerfloor" }, /area/bigredv2/outside/dorms) -"aBY" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/ne) "aBZ" = ( /obj/structure/bed/stool, /turf/open/floor{ @@ -9910,28 +9388,17 @@ }, /area/bigredv2/outside/ne) "aCd" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/turf/open/mars{ + icon_state = "mars_dirt_3" }, /area/bigredv2/outside/ne) "aCe" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/eta/xenobiology) "aCf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) -"aCg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Greenhouse Storage" - }, +/obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/floor{ - icon_state = "delivery" + icon_state = "whitegreenfull" }, /area/bigredv2/outside/hydroponics) "aCh" = ( @@ -10181,12 +9648,6 @@ icon_state = "wood" }, /area/bigredv2/outside/bar) -"aCQ" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) "aCR" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" @@ -10218,22 +9679,11 @@ icon_state = "delivery" }, /area/bigredv2/outside/bar) -"aCV" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"aCW" = ( +/turf/open/mars{ + icon_state = "mars_dirt_8" }, /area/bigredv2/outside/ne) -"aCX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/hydroponics) "aCY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -10355,11 +9805,6 @@ icon_state = "darkpurple2" }, /area/bigredv2/caves/lambda/research) -"aDo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel, -/turf/open/floor, -/area/bigredv2/outside/cargo) "aDp" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, @@ -10588,16 +10033,6 @@ }, /turf/open/floor, /area/bigredv2/outside/dorms) -"aDR" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, -/area/bigredv2/outside/ne) -"aDT" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/outside/ne) "aDU" = ( /obj/structure/closet/athletic_mixed, /obj/structure/machinery/light{ @@ -10668,19 +10103,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, /area/bigredv2/outside/hydroponics) -"aEe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_north) -"aEf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) "aEg" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/popcorn, @@ -10812,13 +10234,6 @@ icon_state = "whitegreen" }, /area/bigredv2/outside/medical) -"aEB" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/n) "aEC" = ( /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor{ @@ -10881,13 +10296,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor, /area/bigredv2/outside/dorms) -"aEL" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) "aEM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood{ @@ -10930,15 +10338,6 @@ icon_state = "wood" }, /area/bigredv2/outside/bar) -"aES" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/hydroponics) "aET" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/shovel/spade, @@ -10954,13 +10353,6 @@ }, /turf/open/floor, /area/bigredv2/outside/hydroponics) -"aEV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) "aEW" = ( /obj/item/tool/hatchet, /obj/effect/decal/cleanable/dirt, @@ -11278,29 +10670,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/dorms) -"aFQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/recharge_station, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aFR" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aFS" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, -/area/bigredv2/outside/ne) "aFT" = ( /obj/structure/surface/table/woodentable, /obj/item/device/radio, @@ -11354,16 +10723,6 @@ icon_state = "wood" }, /area/bigredv2/outside/bar) -"aFZ" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda"; - name = "Lambda Lockdown" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves_north) "aGa" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -11657,13 +11016,6 @@ icon_state = "wood" }, /area/bigredv2/outside/bar) -"aGK" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/hydroponics) "aGL" = ( /obj/structure/machinery/biogenerator, /turf/open/floor, @@ -13052,16 +12404,6 @@ icon_state = "wood" }, /area/bigredv2/outside/bar) -"aKA" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/outside/ne) -"aKB" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/ne) "aKC" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -13332,14 +12674,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor, /area/bigredv2/outside/cargo) -"aLn" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) "aLo" = ( /obj/structure/surface/table, /obj/item/device/radio, @@ -17495,6 +16829,17 @@ icon_state = "warnwhite" }, /area/bigredv2/outside/virology) +"aWj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 10; + icon_state = "red" + }, +/area/bigredv2/outside/marshal_office) "aWk" = ( /turf/open/floor{ dir = 8; @@ -17557,6 +16902,11 @@ icon_state = "whitebluefull" }, /area/bigredv2/outside/general_store) +"aWy" = ( +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/n_cave) "aWz" = ( /obj/structure/showcase{ icon_state = "bus" @@ -17949,14 +17299,6 @@ "aXH" = ( /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"aXJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper General Store Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) "aXL" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -18058,18 +17400,6 @@ /obj/structure/machinery/light, /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"aYe" = ( -/obj/structure/window/framed/solaris, -/obj/structure/curtain, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"aYf" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) "aYh" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -18437,27 +17767,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor, /area/bigredv2/outside/cargo) -"aZp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"aZq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) "aZr" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, @@ -18585,18 +17894,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/cargo) -"aZP" = ( -/obj/structure/machinery/camera/autoname, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) "aZQ" = ( /obj/structure/surface/table, /obj/item/tool/lighter/random, @@ -18808,10 +18105,6 @@ icon_state = "chapel" }, /area/bigredv2/outside/chapel) -"bax" = ( -/obj/structure/closet/emcloset, -/turf/open/floor, -/area/bigredv2/outside/cargo) "bay" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -19425,13 +18718,6 @@ icon_state = "white" }, /area/bigredv2/outside/virology) -"bcp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) "bcq" = ( /obj/effect/landmark/crap_item, /turf/open/floor{ @@ -19439,21 +18725,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/w) -"bcr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/space_port_lz2) -"bcs" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) "bct" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; @@ -19675,6 +18946,10 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) +"bcW" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) "bcX" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, @@ -19708,14 +18983,6 @@ icon_state = "rampbottom" }, /area/bigredv2/outside/chapel) -"bdf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "loadingarea" - }, -/area/bigredv2/outside/cargo) "bdg" = ( /turf/open/floor{ icon_state = "delivery" @@ -19956,19 +19223,6 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/w) -"beb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/w) "bec" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor, @@ -19978,9 +19232,9 @@ /turf/open/floor, /area/bigredv2/outside/cargo) "bee" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) +/obj/structure/closet/emcloset, +/turf/open/floor, +/area/bigredv2/outside/cargo) "bef" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, @@ -20081,22 +19335,12 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/w) -"bew" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) "bex" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor, /area/bigredv2/outside/cargo) -"bey" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) "bez" = ( /obj/structure/machinery/autolathe, /turf/open/floor, @@ -20207,19 +19451,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/w) -"beR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"beS" = ( -/obj/structure/lz_sign/solaris_sign, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) "beT" = ( /obj/structure/machinery/light{ dir = 8 @@ -20295,34 +19526,6 @@ icon_state = "dark" }, /area/bigredv2/outside/office_complex) -"bff" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bfg" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper General Store Maintenance" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"bfh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) "bfi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -20446,15 +19649,6 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"bfA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) "bfB" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -20522,8 +19716,8 @@ }, /area/bigredv2/outside/office_complex) "bfK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/floor{ icon_state = "dark" @@ -20578,18 +19772,6 @@ icon_state = "whiteyellowfull" }, /area/bigredv2/outside/office_complex) -"bfT" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/space_port_lz2) -"bfU" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/space_port_lz2) "bfV" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -20598,13 +19780,6 @@ icon_state = "bot" }, /area/bigredv2/outside/cargo) -"bfW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) "bfX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/trashcart, @@ -20754,10 +19929,12 @@ }, /area/bigredv2/outside/office_complex) "bgq" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" +/obj/structure/closet/emcloset, +/turf/open/floor{ + dir = 1; + icon_state = "bot" }, -/area/bigredv2/outside/space_port_lz2) +/area/bigredv2/outside/cargo) "bgr" = ( /obj/structure/closet/secure_closet/security, /obj/effect/landmark/objective_landmark/close, @@ -20839,13 +20016,6 @@ icon_state = "whiteyellowfull" }, /area/bigredv2/outside/office_complex) -"bgC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) "bgD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, @@ -21016,31 +20186,17 @@ }, /area/bigredv2/caves/mining) "bhb" = ( -/obj/structure/machinery/light, /turf/open/floor{ - dir = 1; - icon_state = "bot" + icon_state = "floor4" }, /area/bigredv2/outside/cargo) -"bhc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bhd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +"bhe" = ( +/obj/structure/machinery/light, /turf/open/floor{ dir = 1; - icon_state = "asteroidfloor" + icon_state = "bot" }, -/area/bigredv2/outside/space_port_lz2) -"bhe" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) +/area/bigredv2/outside/cargo) "bhf" = ( /obj/structure/machinery/power/apc{ dir = 1 @@ -21157,9 +20313,11 @@ }, /area/bigredv2/outside/space_port_lz2) "bhD" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/bigredv2/outside/cargo) "bhE" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/light{ @@ -21167,16 +20325,6 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"bhH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) "bhI" = ( /obj/item/stack/sheet/metal/med_small_stack, /turf/open/mars_cave{ @@ -21189,28 +20337,6 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/outside/c) -"bhM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"bhN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 10; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) "bhO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -21239,15 +20365,6 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/c) -"bhS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) "bhT" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" @@ -21319,14 +20436,9 @@ dir = 4 }, /turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" + icon_state = "floor4" }, -/area/bigredv2/outside/space_port_lz2) -"bio" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) +/area/bigredv2/outside/cargo) "biq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -21488,10 +20600,6 @@ /obj/item/stack/cable_coil/cut, /turf/open/floor/plating, /area/bigredv2/outside/c) -"biX" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) "biY" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -21529,27 +20637,10 @@ /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/bigredv2/outside/space_port_lz2) -"bjh" = ( -/obj/item/reagent_container/spray/cleaner, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "floor4" - }, -/area/bigredv2/outside/cargo) "bji" = ( /obj/item/reagent_container/glass/bottle/tramadol, /turf/open/floor, /area/bigredv2/outside/cargo) -"bjj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/bigredv2/outside/telecomm/warehouse) "bjk" = ( /obj/effect/landmark/crap_item, /turf/open/floor{ @@ -21589,25 +20680,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/space_port_lz2) -"bjt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port_lz2) -"bjv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/bigredv2/outside/telecomm/warehouse) "bjw" = ( /turf/open/floor{ dir = 1; @@ -21685,11 +20757,14 @@ }, /area/bigredv2/outside/s) "bjJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" + dir = 4; + icon_state = "redcorner" }, -/area/bigredv2/caves_north) +/area/bigredv2/outside/office_complex) "bjK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -21728,13 +20803,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/space_port_lz2) -"bjP" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"bjQ" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/space_port_lz2) "bjR" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -21745,15 +20813,6 @@ icon_state = "delivery" }, /area/bigredv2/outside/cargo) -"bjX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/bigredv2/outside/telecomm/warehouse) "bjY" = ( /turf/open/floor{ icon_state = "asteroidwarning" @@ -21790,14 +20849,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/s) -"bke" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) "bkf" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_y = -32 @@ -21824,10 +20875,6 @@ icon_state = "mars_dirt_10" }, /area/bigredv2/outside/se) -"bkk" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) "bkl" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/science, @@ -22057,19 +21104,6 @@ icon_state = "white" }, /area/bigredv2/caves/lambda/xenobiology) -"blb" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"blc" = ( -/obj/structure/surface/table, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) "bld" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, @@ -23131,14 +22165,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"boD" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port_lz2) "boG" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/almayer{ @@ -23389,13 +22415,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/space_port_lz2) -"bpv" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port_lz2) "bpx" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_4" @@ -23630,11 +22649,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/space_port_lz2) -"bqe" = ( -/turf/open/floor{ - icon_state = "floor4" - }, -/area/bigredv2/outside/cargo) "bqf" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -23644,17 +22658,6 @@ icon_state = "test_floor4" }, /area/bigredv2/outside/engineering) -"bqg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/bigredv2/outside/telecomm/warehouse) "bqk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/alarm{ @@ -23816,17 +22819,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/space_port_lz2) -"brc" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/outside/n) -"brd" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) "bre" = ( /obj/structure/bed/chair, /turf/open/floor{ @@ -23973,10 +22965,6 @@ "brE" = ( /turf/open/floor/greengrid, /area/bigredv2/outside/filtration_cave_cas) -"brG" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) "brI" = ( /obj/structure/sign/safety/galley{ pixel_x = -32 @@ -24390,12 +23378,6 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) -"btv" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) "btw" = ( /turf/open/floor/plating, /area/bigredv2/outside/lz2_south_cas) @@ -24504,13 +23486,6 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/s) -"bup" = ( -/obj/item/stack/sheet/wood, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_north) "buu" = ( /turf/open/mars_cave{ icon_state = "mars_cave_17" @@ -24541,11 +23516,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/s) -"buP" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/outside/n) "buQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave{ @@ -27654,6 +26624,11 @@ /obj/item/tool/hand_labeler, /turf/open/floor, /area/bigred/ground/garage_workshop) +"bGC" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_5" + }, +/area/bigredv2/outside/n) "bGL" = ( /turf/open/floor{ dir = 1; @@ -27678,6 +26653,11 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"bJQ" = ( +/turf/open/mars{ + icon_state = "mars_dirt_10" + }, +/area/bigredv2/outside/n) "bJS" = ( /obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, @@ -27733,6 +26713,14 @@ icon_state = "dark" }, /area/bigredv2/outside/marshal_office) +"bOZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/bigredv2/outside/medical) "bPy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, @@ -27749,11 +26737,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/admin_building) +"bQh" = ( +/turf/open/mars{ + icon_state = "mars_dirt_11" + }, +/area/bigredv2/outside/n) "bQi" = ( /turf/open/floor{ icon_state = "darkish" }, /area/bigredv2/caves/lambda/virology) +"bQG" = ( +/turf/open/mars_cave{ + icon_state = "mars_dirt_6" + }, +/area/bigredv2/caves_lambda) "bRd" = ( /obj/structure/cable{ icon_state = "1-4" @@ -27781,11 +26779,12 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"bSc" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" +"bRV" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor{ + icon_state = "white" }, -/area/bigredv2/outside/ne) +/area/bigredv2/outside/virology) "bSw" = ( /obj/structure/cable{ icon_state = "1-4" @@ -27798,6 +26797,15 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"bSy" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/c) "bTm" = ( /obj/structure/surface/table, /obj/item/folder/black_random, @@ -27814,6 +26822,17 @@ icon_state = "mars_cave_7" }, /area/bigredv2/caves_se) +"bVX" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_cave_13" + }, +/area/bigredv2/caves_north) "bWk" = ( /turf/open/floor{ dir = 1; @@ -27836,17 +26855,6 @@ /obj/item/reagent_container/spray/cleaner, /turf/open/floor, /area/bigredv2/outside/cargo) -"bYp" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/lz2_cave) "bYW" = ( /obj/structure/pipes/vents/pump, /turf/open/floor{ @@ -27887,6 +26895,21 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) +"ccI" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/plating{ + dir = 4; + icon_state = "warnplate" + }, +/area/bigredv2/outside/telecomm/warehouse) "ccP" = ( /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, @@ -27896,15 +26919,6 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/filtration_plant) -"ccU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Medical Clinic Power Station" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) "cdA" = ( /turf/open/mars_cave{ icon_state = "mars_cave_5" @@ -27931,18 +26945,17 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) -"cfS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) "cgt" = ( /turf/open/floor{ icon_state = "delivery" }, /area/bigredv2/outside/dorms) +"cgO" = ( +/turf/open/floor{ + dir = 5; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/n_cave) "chq" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -27950,9 +26963,10 @@ icon_state = "mars_cave_18" }, /area/bigredv2/caves_lambda) -"chy" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" +"ciG" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave{ + icon_state = "mars_cave_7" }, /area/bigredv2/outside/n) "ciY" = ( @@ -28022,18 +27036,15 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"cnO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/recharge_station, -/turf/open/floor{ - icon_state = "freezerfloor" +"cnG" = ( +/obj/structure/platform{ + dir = 1 }, -/area/bigredv2/outside/dorms) -"coc" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" }, -/area/bigredv2/outside/ne) +/area/bigredv2/outside/telecomm/n_cave) "coT" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor{ @@ -28047,6 +27058,14 @@ icon_state = "mars_cave_6" }, /area/bigredv2/caves_se) +"cpQ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/space_port_lz2) "cqj" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -28059,6 +27078,15 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"crl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/space_port_lz2) "crv" = ( /obj/structure/surface/table, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -28070,11 +27098,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"crO" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/outside/sw) "crQ" = ( /turf/open/mars_cave{ icon_state = "mars_cave_18" @@ -28126,15 +27149,6 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/xenobiology) -"cwk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port_lz2) "cxi" = ( /obj/structure/machinery/light{ dir = 4 @@ -28162,6 +27176,12 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) +"cAf" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/caves_north) "cAs" = ( /turf/open/floor{ dir = 1; @@ -28173,6 +27193,15 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"cBq" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/n) "cCr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave{ @@ -28195,6 +27224,22 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"cGc" = ( +/obj/structure/machinery/botany, +/turf/open/floor{ + icon_state = "white" + }, +/area/bigredv2/outside/marshal_office) +"cGi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "red" + }, +/area/bigredv2/outside/marshal_office) "cGQ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor{ @@ -28230,6 +27275,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/cargo) +"cHz" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/telecomm/lz2_cave) +"cHH" = ( +/turf/open/mars{ + icon_state = "mars_dirt_11" + }, +/area/bigredv2/outside/ne) "cHI" = ( /obj/structure/closet/crate, /obj/structure/machinery/light{ @@ -28296,6 +27357,15 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"cLq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "cLZ" = ( /obj/structure/closet/secure_closet/brig, /obj/effect/landmark/objective_landmark/close, @@ -28345,6 +27415,12 @@ icon_state = "delivery" }, /area/bigredv2/caves/eta/research) +"cPg" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/outside/n) "cPZ" = ( /obj/structure/window/framed/solaris/reinforced, /obj/effect/decal/cleanable/dirt, @@ -28362,6 +27438,20 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/c) +"cQO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"cRb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) "cRP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/splatter, @@ -28404,16 +27494,6 @@ icon_state = "mars_cave_11" }, /area/bigredv2/caves_se) -"cVT" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves_north) "cVY" = ( /turf/open/mars, /area/bigredv2/outside/space_port_lz2) @@ -28425,6 +27505,12 @@ icon_state = "wood" }, /area/bigredv2/outside/admin_building) +"cYy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) "cYI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -28485,6 +27571,11 @@ icon_state = "delivery" }, /area/bigredv2/outside/c) +"dgH" = ( +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/bigredv2/caves_north) "dhN" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/almayer{ @@ -28501,13 +27592,6 @@ icon_state = "mars_cave_15" }, /area/bigredv2/caves/mining) -"dhT" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) "dij" = ( /obj/structure/fence, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -28525,15 +27609,27 @@ icon_state = "podhatchfloor" }, /area/bigredv2/outside/admin_building) -"dlr" = ( +"dka" = ( +/obj/effect/landmark/crap_item, /turf/open/mars_cave{ - icon_state = "mars_cave_13" + icon_state = "mars_dirt_4" }, /area/bigredv2/outside/n) +"dkY" = ( +/obj/structure/platform, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/telecomm/n_cave) "dmB" = ( /obj/item/tool/pickaxe, /turf/open/mars, /area/bigredv2/outside/filtration_plant) +"dmO" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) "dnV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -28613,10 +27709,15 @@ }, /area/bigredv2/caves/lambda/research) "dtX" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, /turf/open/mars_cave{ icon_state = "mars_cave_14" }, -/area/bigredv2/outside/n) +/area/bigredv2/caves_north) "duo" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/plating, @@ -28627,14 +27728,6 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"duI" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) "dvB" = ( /obj/item/ore/coal{ pixel_x = 9; @@ -28651,19 +27744,17 @@ icon_state = "test_floor4" }, /area/bigredv2/outside/engineering) -"dwe" = ( -/obj/item/tool/warning_cone{ - pixel_x = 16; - pixel_y = 14 +"dws" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/mars, -/area/bigredv2/outside/n) -"dwg" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/plating{ + dir = 6; + icon_state = "warnplate" }, -/area/bigredv2/outside/space_port_lz2) +/area/bigredv2/outside/telecomm/warehouse) "dwL" = ( /obj/structure/bed/chair{ buckling_y = 5; @@ -28702,11 +27793,6 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) -"dzs" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/outside/n) "dzY" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -28717,6 +27803,11 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/bigredv2/outside/lz2_south_cas) +"dAX" = ( +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/space_port_lz2) "dBa" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 9 @@ -28783,6 +27874,10 @@ /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"dCU" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) "dEf" = ( /obj/structure/closet/toolcloset, /obj/structure/machinery/light, @@ -28857,6 +27952,15 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"dIH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/space_port_lz2) "dJc" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -28895,13 +27999,6 @@ icon_state = "mars_cave_5" }, /area/bigredv2/outside/lambda_cave_cas) -"dMT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/ne) "dNd" = ( /obj/item/stack/cable_coil/cut, /turf/open/mars_cave{ @@ -28926,11 +28023,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"dNH" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/outside/n) "dOu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -28943,6 +28035,12 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"dOZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave{ + icon_state = "mars_cave_16" + }, +/area/bigredv2/outside/n) "dPb" = ( /obj/item/tool/pickaxe/drill, /turf/open/mars_cave{ @@ -28966,6 +28064,9 @@ icon_state = "mars_cave_23" }, /area/bigredv2/caves/mining) +"dPJ" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/bigredv2/outside/c) "dQw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -28978,6 +28079,11 @@ icon_state = "mars_dirt_5" }, /area/bigredv2/caves/mining) +"dQR" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/outside/n) "dQZ" = ( /obj/structure/closet/toolcloset, /obj/effect/decal/cleanable/dirt, @@ -28994,12 +28100,12 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"dTa" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +"dTi" = ( +/obj/item/stack/sheet/wood, /turf/open/mars_cave{ icon_state = "mars_cave_9" }, -/area/bigredv2/outside/ne) +/area/bigredv2/caves_north) "dUj" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -8; @@ -29016,11 +28122,27 @@ icon_state = "mars_cave_6" }, /area/bigredv2/caves/mining) +"dVp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/space_port_lz2) "dVA" = ( /turf/open/mars_cave{ icon_state = "mars_cave_5" }, /area/bigredv2/outside/lz2_south_cas) +"dVM" = ( +/obj/structure/largecrate/supply/supplies, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/n) "dWd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -29029,11 +28151,6 @@ icon_state = "dark" }, /area/bigredv2/outside/engineering) -"dWg" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/outside/ne) "dWl" = ( /obj/structure/closet/toolcloset, /turf/open/floor{ @@ -29058,6 +28175,11 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/eta) +"dXK" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_13" + }, +/area/bigredv2/outside/n) "dZO" = ( /obj/effect/decal/cleanable/blood{ dir = 8; @@ -29130,6 +28252,15 @@ icon_state = "asteroidfloor" }, /area/bigred/ground/garage_workshop) +"efK" = ( +/obj/structure/machinery/computer/crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, +/area/bigredv2/outside/medical) "egI" = ( /obj/item/ore, /obj/item/ore{ @@ -29152,14 +28283,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"eiS" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/n) "eju" = ( /obj/item/ore{ pixel_x = 9; @@ -29187,6 +28310,11 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"elh" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_6" + }, +/area/bigredv2/outside/n) "els" = ( /obj/structure/ore_box, /turf/open/mars_cave{ @@ -29233,6 +28361,14 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"enJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ + name = "\improper Dormitories Restroom" + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/dorms) "eoU" = ( /turf/open/floor/almayer{ dir = 1; @@ -29250,14 +28386,14 @@ icon_state = "mars_cave_9" }, /area/bigredv2/caves/mining) -"erf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"eqr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ + dir = 1; + name = "\improper Dormitories Restroom" }, -/obj/structure/machinery/camera/autoname{ - dir = 1 +/turf/open/floor{ + icon_state = "delivery" }, -/turf/open/floor, /area/bigredv2/outside/dorms) "ers" = ( /obj/effect/landmark/nightmare{ @@ -29348,13 +28484,6 @@ icon_state = "asteroidwarning" }, /area/bigred/ground/garage_workshop) -"eyA" = ( -/obj/structure/largecrate/random/barrel/true_random, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/n) "ezQ" = ( /obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/plating{ @@ -29362,12 +28491,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"eAG" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, -/area/bigredv2/caves_north) "eAU" = ( /turf/open/floor{ dir = 4; @@ -29416,6 +28539,16 @@ icon_state = "mars_cave_5" }, /area/bigredv2/caves_lambda) +"eFr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "red" + }, +/area/bigredv2/outside/marshal_office) "eGa" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/mars_cave{ @@ -29452,15 +28585,6 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/xenobiology) -"eIB" = ( -/obj/item/tool/warning_cone{ - pixel_y = 20 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) "eIN" = ( /obj/structure/machinery/power/port_gen/pacman, /obj/effect/decal/cleanable/dirt, @@ -29486,6 +28610,13 @@ icon_state = "freezerfloor" }, /area/bigredv2/outside/general_offices) +"eKm" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/n) "eKU" = ( /obj/structure/machinery/door_control{ id = "filtration"; @@ -29524,6 +28655,13 @@ icon_state = "mars_cave_23" }, /area/bigredv2/caves_lambda) +"eNe" = ( +/obj/item/clothing/under/darkred, +/obj/structure/surface/rack, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/general_offices) "eNx" = ( /obj/effect/landmark/nightmare{ insert_tag = "lambda-cave-mushroom" @@ -29553,17 +28691,17 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_plant) +"eRe" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) "eRI" = ( /turf/open/floor{ icon_state = "delivery" }, /area/bigredv2/outside/c) -"eRW" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "crashlanding-eva" - }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/bar) "eSm" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -29626,9 +28764,11 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"eVZ" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" +"eVM" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" }, /area/bigredv2/outside/n) "eWd" = ( @@ -29641,12 +28781,36 @@ /obj/effect/decal/cleanable/dirt, /turf/open/mars, /area/bigredv2/outside/filtration_plant) +"eWv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 9; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/n_cave) "eWy" = ( /obj/effect/decal/cleanable/dirt, /obj/item/moneybag, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"eWB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/recharge_station, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/dorms) +"eWE" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/mars_cave{ + icon_state = "mars_cave_19" + }, +/area/bigredv2/caves_north) "eWG" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, @@ -29665,6 +28829,27 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) +"eYy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"eYH" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"eYK" = ( +/obj/item/reagent_container/spray/cleaner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/bigredv2/outside/cargo) "eZw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -29675,11 +28860,17 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"fbF" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" +"fbf" = ( +/turf/open/mars{ + icon_state = "mars_dirt_8" }, -/area/bigredv2/outside/n) +/area/bigredv2/outside/sw) +"fbB" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "crashlanding-eva" + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/bar) "fcG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset, @@ -29697,15 +28888,6 @@ "fdy" = ( /turf/open/floor, /area/bigredv2/caves/eta/living) -"fdC" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) "feN" = ( /turf/open/floor{ dir = 9; @@ -29805,6 +28987,14 @@ icon_state = "darkyellowcorners2" }, /area/bigredv2/caves/eta/living) +"fni" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Medical Clinic Morgue" + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/medical) "fnv" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/carpet, @@ -29814,14 +29004,6 @@ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) -"foj" = ( -/obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/n) "foB" = ( /turf/open/mars_cave{ icon_state = "mars_cave_22" @@ -29844,10 +29026,21 @@ }, /turf/closed/wall/wood, /area/bigredv2/caves/mining) -"fpt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/river, -/area/bigredv2/outside/c) +"fsT" = ( +/turf/open/mars_cave{ + icon_state = "mars_dirt_7" + }, +/area/bigredv2/outside/n) +"fsY" = ( +/turf/open/mars{ + icon_state = "mars_dirt_6" + }, +/area/bigredv2/outside/space_port_lz2) +"ftY" = ( +/turf/open/mars_cave{ + icon_state = "mars_dirt_7" + }, +/area/bigredv2/outside/sw) "fus" = ( /turf/open/mars_cave{ icon_state = "mars_cave_7" @@ -29922,6 +29115,12 @@ icon_state = "mars_cave_10" }, /area/bigredv2/outside/lz1_telecomm_cas) +"fxZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/caves_lambda) "fyp" = ( /obj/structure/machinery/power/apc, /turf/open/floor{ @@ -29955,15 +29154,18 @@ icon_state = "dark" }, /area/bigredv2/outside/filtration_plant) -"fBU" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/caves_north) "fCb" = ( /turf/open/floor, /area/bigredv2/outside/filtration_cave_cas) +"fDf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Greenhouse Storage" + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/hydroponics) "fDr" = ( /turf/open/floor{ dir = 1; @@ -29978,6 +29180,11 @@ icon_state = "delivery" }, /area/bigredv2/outside/engineering) +"fEE" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_15" + }, +/area/bigredv2/outside/ne) "fFG" = ( /obj/structure/largecrate/random/barrel, /turf/open/mars_cave{ @@ -29989,11 +29196,25 @@ icon_state = "mars_dirt_3" }, /area/bigredv2/outside/space_port_lz2) +"fGK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/mars_cave{ + icon_state = "mars_cave_16" + }, +/area/bigredv2/caves_north) "fGN" = ( /turf/open/mars_cave{ icon_state = "mars_cave_20" }, /area/bigredv2/caves_research) +"fHw" = ( +/obj/structure/barricade/handrail, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/c) "fHF" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood{ @@ -30011,6 +29232,17 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/eta) +"fKO" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_cave_5" + }, +/area/bigredv2/caves_north) "fKW" = ( /obj/structure/machinery/power/apc{ dir = 1 @@ -30079,11 +29311,6 @@ icon_state = "dark" }, /area/bigredv2/caves/lambda/xenobiology) -"fNh" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/caves_lambda) "fOc" = ( /turf/open/mars_cave{ icon_state = "mars_cave_3" @@ -30128,6 +29355,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"fPe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/n_cave) "fPB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -30181,6 +29415,17 @@ icon_state = "mars_cave_10" }, /area/bigredv2/outside/lz2_west_cas) +"fTg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/c) "fUk" = ( /obj/structure/surface/table, /obj/item/clothing/head/hardhat, @@ -30202,13 +29447,17 @@ icon_state = "delivery" }, /area/bigredv2/outside/engineering) -"fVm" = ( +"fVt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/n) +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) "fWw" = ( /turf/open/jungle{ bushes_spawn = 0; @@ -30225,6 +29474,13 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"fXR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, +/area/bigredv2/outside/hydroponics) "fYH" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) @@ -30269,10 +29525,11 @@ icon_state = "bcircuitoff" }, /area/bigredv2/caves/lambda/research) -"gbt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"gbA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" }, /area/bigredv2/outside/ne) "gcR" = ( @@ -30290,10 +29547,21 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"gdK" = ( +/turf/open/mars_cave{ + icon_state = "mars_dirt_6" + }, +/area/bigredv2/outside/n) "gdN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) +"gej" = ( +/turf/open/floor{ + dir = 6; + icon_state = "whiteblue" + }, +/area/bigredv2/outside/medical) "geC" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_6" @@ -30382,14 +29650,6 @@ icon_state = "mars_cave_18" }, /area/bigredv2/caves_lambda) -"gnk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ - name = "\improper Dormitories Restroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) "gnR" = ( /obj/structure/largecrate/random/barrel/red, /obj/effect/decal/cleanable/dirt, @@ -30416,6 +29676,14 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/c) +"gpA" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/space_port_lz2) "gpB" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_6" @@ -30455,17 +29723,18 @@ icon_state = "mars_dirt_4" }, /area/space) -"gtG" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 +"gts" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +/obj/structure/morgue{ + dir = 2 }, -/area/bigredv2/caves_north) +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/bigredv2/outside/medical) "gtX" = ( /turf/open/mars_cave, /area/bigredv2/caves_se) @@ -30502,11 +29771,6 @@ icon_state = "elevatorshaft" }, /area/bigredv2/caves/lambda/breakroom) -"gwb" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/ne) "gwg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -30553,11 +29817,20 @@ }, /area/bigredv2/caves/mining) "gAE" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" +/obj/structure/sink{ + dir = 1; + pixel_y = -9 }, +/turf/open/floor, /area/bigredv2/outside/hydroponics) +"gAX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/office_complex) "gCx" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -30599,13 +29872,6 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) -"gGC" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/n) "gGO" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -30636,11 +29902,22 @@ icon_state = "mars_cave_4" }, /area/bigredv2/caves_virology) -"gKG" = ( +"gMj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, /turf/open/floor{ - icon_state = "asteroidwarning" + dir = 1; + icon_state = "asteroidfloor" }, -/area/bigredv2/outside/telecomm/n_cave) +/area/bigredv2/outside/c) +"gMC" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) "gML" = ( /obj/structure/machinery/power/turbine, /turf/open/floor{ @@ -30658,10 +29935,6 @@ "gNH" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves) -"gOf" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) "gOr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -30669,6 +29942,12 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_research) +"gPc" = ( +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/n_cave) "gPh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -30686,14 +29965,10 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"gQP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/cargo) +"gQj" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) "gSg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -30757,6 +30032,9 @@ icon_state = "darkblue2" }, /area/bigredv2/caves/eta/research) +"gWD" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/space_port_lz2) "gWU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -30794,13 +30072,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_sw) -"gYM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/hydroponics) "gZc" = ( /obj/structure/machinery/light{ dir = 8 @@ -30813,6 +30084,14 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"hah" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "loadingarea" + }, +/area/bigredv2/outside/cargo) "haT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -30821,6 +30100,15 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/filtration_plant) +"hbx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/roller, +/turf/open/floor{ + icon_state = "white" + }, +/area/bigredv2/outside/medical) "hcb" = ( /obj/effect/landmark/hunter_secondary, /turf/open/mars_cave{ @@ -30845,12 +30133,6 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) -"hdJ" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/caves_north) "heG" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -30864,19 +30146,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"heI" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/outside/n) -"heU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "floor4" - }, -/area/bigredv2/outside/cargo) "hfB" = ( /obj/item/ore{ pixel_x = -5; @@ -30886,6 +30155,18 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) +"hgr" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_cave_16" + }, +/area/bigredv2/outside/ne) +"hgO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_cave_14" + }, +/area/bigredv2/outside/n) "hgT" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_7" @@ -30897,6 +30178,12 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"hhX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) "hiP" = ( /obj/structure/sign/safety/one{ pixel_x = 16 @@ -31006,13 +30293,11 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/filtration_plant) -"hul" = ( +"hto" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/tool/hatchet, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "hvQ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -31049,6 +30334,11 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) +"hyC" = ( +/turf/open/floor{ + icon_state = "bcircuit" + }, +/area/bigredv2/outside/telecomm/warehouse) "hzg" = ( /obj/structure/cable{ icon_state = "1-6" @@ -31101,6 +30391,14 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"hDK" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/n) "hEz" = ( /turf/open/mars_cave{ icon_state = "mars_cave_6" @@ -31122,6 +30420,15 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"hFv" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/telecomm/n_cave) "hFP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo, @@ -31130,10 +30437,40 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"hFV" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_cave_9" + }, +/area/bigredv2/outside/n) +"hGv" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/n) +"hHa" = ( +/obj/structure/fence, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/n) "hHb" = ( /obj/structure/sign/safety/ladder, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) +"hHG" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"hJH" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor{ + icon_state = "podhatchfloor" + }, +/area/bigredv2/outside/telecomm/n_cave) "hKl" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/drinks/bottle/goldschlager, @@ -31206,6 +30543,11 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_se) +"hQO" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_14" + }, +/area/bigredv2/outside/n) "hRy" = ( /obj/structure/surface/rack, /turf/open/floor/plating{ @@ -31243,6 +30585,15 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"hVP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + dir = 1; + icon_state = "bot" + }, +/area/bigredv2/outside/cargo) "hWa" = ( /turf/open/floor{ icon_state = "dark" @@ -31303,11 +30654,6 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"iaq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor, -/area/bigredv2/outside/general_offices) "iaC" = ( /obj/structure/platform, /turf/open/gm/river, @@ -31327,16 +30673,38 @@ "ibP" = ( /turf/open/floor/plating, /area/bigredv2/caves_research) +"ibV" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/dorms) "ibZ" = ( /turf/open/mars_cave{ icon_state = "mars_cave_16" }, /area/bigredv2/caves_sw) +"ice" = ( +/obj/structure/surface/table, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/space_port_lz2) "icQ" = ( /turf/open/mars_cave{ icon_state = "mars_cave_6" }, /area/bigredv2/caves_sw) +"idn" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/outside/n) "idM" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor{ @@ -31344,12 +30712,18 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) -"idO" = ( +"idT" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_9" + }, +/area/bigredv2/caves_lambda) +"ied" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/brown, /turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" + icon_state = "freezerfloor" }, -/area/bigredv2/outside/virology) +/area/bigredv2/outside/general_offices) "iep" = ( /obj/structure/surface/rack, /obj/item/clothing/head/hardhat/dblue{ @@ -31396,13 +30770,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"igi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) "igM" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 @@ -31430,6 +30797,15 @@ /obj/structure/window/framed/solaris, /turf/open/floor/plating, /area/bigredv2/outside/engineering) +"iis" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + icon_state = "red" + }, +/area/bigredv2/outside/marshal_office) "ijU" = ( /obj/structure/prop/almayer/cannon_cables{ name = "\improper Cables" @@ -31443,9 +30819,13 @@ icon_state = "floor1" }, /area/bigredv2/oob) -"ilN" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/n) +"ilH" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, +/area/bigredv2/outside/hydroponics) "ilO" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -31507,6 +30887,16 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"ipo" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/caves_north) "iqF" = ( /obj/structure/prop/invuln/minecart_tracks, /turf/open/mars_cave{ @@ -31523,18 +30913,6 @@ /obj/effect/spawner/random/technology_scanner, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"isk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/snack, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"isr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) "itL" = ( /obj/structure/closet/l3closet/virology, /obj/effect/landmark/objective_landmark/science, @@ -31547,6 +30925,11 @@ icon_state = "mars_cave_16" }, /area/bigredv2/outside/lz1_north_cas) +"ivW" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_9" + }, +/area/bigredv2/outside/ne) "iwG" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave{ @@ -31567,17 +30950,6 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/lambda_cave_cas) -"iyd" = ( -/obj/structure/machinery/computer/general_air_control{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "iyY" = ( /turf/open/mars_cave{ icon_state = "mars_cave_13" @@ -31625,6 +30997,19 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) +"iCu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/w) "iDJ" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood{ @@ -31685,6 +31070,19 @@ "iGK" = ( /turf/open/mars_cave, /area/bigredv2/caves_sw) +"iGY" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave{ + icon_state = "mars_cave_6" + }, +/area/bigredv2/caves_north) +"iHe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/space_port_lz2) "iIp" = ( /obj/effect/landmark/nightmare{ insert_tag = "chapel" @@ -31721,15 +31119,22 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"iNE" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor{ + icon_state = "bcircuit" + }, +/area/bigredv2/outside/telecomm/warehouse) "iNR" = ( /turf/open/gm/river, /area/bigredv2/outside/engineering) -"iOL" = ( +"iOR" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" }, -/area/bigredv2/outside/n) +/area/bigredv2/outside/ne) "iPE" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -31755,9 +31160,10 @@ }, /area/bigredv2/caves_research) "iRf" = ( +/obj/structure/fence, /turf/open/floor{ dir = 1; - icon_state = "asteroidwarning" + icon_state = "asteroidfloor" }, /area/bigredv2/outside/telecomm/n_cave) "iRw" = ( @@ -31775,11 +31181,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_research) -"iSc" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/n) "iSz" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -31789,6 +31190,17 @@ /obj/structure/barricade/handrail, /turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) +"iTN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/plating{ + dir = 10; + icon_state = "warnplate" + }, +/area/bigredv2/outside/telecomm/warehouse) "iUe" = ( /turf/open/floor{ dir = 6; @@ -31817,13 +31229,22 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_cave_cas) -"iXL" = ( -/obj/effect/decal/cleanable/dirt, +"iXs" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, /turf/open/floor{ dir = 1; icon_state = "asteroidfloor" }, /area/bigredv2/outside/telecomm/n_cave) +"iXx" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/n) "iXN" = ( /obj/item/ore{ pixel_x = -7; @@ -31856,12 +31277,6 @@ icon_state = "dark" }, /area/bigredv2/outside/admin_building) -"iZh" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) "iZi" = ( /obj/structure/machinery/light, /turf/open/floor{ @@ -31872,6 +31287,15 @@ /obj/structure/surface/rack, /turf/open/floor, /area/bigredv2/caves) +"jay" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, +/area/bigredv2/outside/hydroponics) "jbU" = ( /obj/effect/decal/cleanable/blood{ base_icon = 'icons/obj/items/weapons/grenade.dmi'; @@ -31916,17 +31340,11 @@ icon_state = "mars_dirt_3" }, /area/bigredv2/outside/s) -"jfn" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Engineering"; - name = "\improper Engineering Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"jeO" = ( +/turf/open/mars{ + icon_state = "mars_dirt_13" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/n) "jfr" = ( /turf/open/floor{ dir = 5; @@ -31990,14 +31408,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"jku" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/surgery/hemostat, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) "jkO" = ( /obj/item/explosive/grenade/high_explosive/frag, /turf/open/mars_cave, @@ -32009,11 +31419,17 @@ /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"jmY" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" +"jlS" = ( +/turf/open/floor{ + dir = 10; + icon_state = "asteroidwarning" }, -/area/bigredv2/outside/sw) +/area/bigredv2/outside/space_port_lz2) +"jmD" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_6" + }, +/area/bigredv2/outside/ne) "jna" = ( /obj/item/prop/alien/hugger, /turf/open/floor{ @@ -32050,12 +31466,15 @@ }, /turf/open/floor, /area/bigredv2/outside/dorms) -"joi" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - icon_state = "bcircuit" +"jph" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/telecomm/warehouse) +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) "jpT" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -32079,6 +31498,12 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_research) +"jrN" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor{ + icon_state = "asteroidplating" + }, +/area/bigredv2/outside/space_port_lz2) "jsL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -32094,17 +31519,6 @@ icon_state = "mars_cave_7" }, /area/bigredv2/caves/mining) -"jtX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/bigredv2/outside/telecomm/warehouse) "juo" = ( /obj/structure/machinery/light{ dir = 8 @@ -32114,17 +31528,6 @@ icon_state = "podhatch" }, /area/bigredv2/caves/lambda/research) -"jvh" = ( -/obj/structure/largecrate/supply, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/n) -"jvt" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) "jwj" = ( /obj/structure/platform/shiva{ dir = 8 @@ -32183,6 +31586,17 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"jAR" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor{ + icon_state = "wood" + }, +/area/bigredv2/outside/marshal_office) +"jAX" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_17" + }, +/area/bigredv2/caves_lambda) "jBq" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor{ @@ -32222,6 +31636,12 @@ icon_state = "mars_cave_10" }, /area/bigredv2/caves_virology) +"jDo" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/outside/space_port_lz2) "jDy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -32307,6 +31727,12 @@ icon_state = "mars_dirt_5" }, /area/bigredv2/caves/mining) +"jJO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_cave_13" + }, +/area/bigredv2/caves_north) "jKI" = ( /obj/structure/platform_decoration/shiva{ dir = 8 @@ -32337,11 +31763,15 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) -"jMB" = ( +"jNE" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 13 + }, /turf/open/floor{ - icon_state = "asteroidwarning" + icon_state = "freezerfloor" }, -/area/bigredv2/caves_north) +/area/bigredv2/outside/general_offices) "jOc" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; @@ -32352,6 +31782,14 @@ icon_state = "delivery" }, /area/bigredv2/outside/lz2_south_cas) +"jOj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/surgery/hemostat, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/dorms) "jOS" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/plasmacutter{ @@ -32373,6 +31811,11 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"jPQ" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_16" + }, +/area/bigredv2/outside/ne) "jPV" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -1; @@ -32395,16 +31838,6 @@ /obj/item/storage/firstaid/fire, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"jQe" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) "jQS" = ( /obj/structure/prop/almayer/cannon_cable_connector{ name = "\improper Cable connector" @@ -32442,6 +31875,32 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/filtration_plant) +"jRH" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + dir = 5; + icon_state = "whiteblue" + }, +/area/bigredv2/outside/medical) +"jSe" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave{ + icon_state = "mars_cave_20" + }, +/area/bigredv2/caves_north) +"jTa" = ( +/obj/structure/machinery/camera/autoname, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/floor{ + dir = 5; + icon_state = "red" + }, +/area/bigredv2/outside/marshal_office) "jTk" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/molten_item, @@ -32455,6 +31914,14 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/hydroponics) +"jUd" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper General Store Storage" + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/cargo) "jUM" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -32507,16 +31974,6 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) -"jWa" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/n_cave) "jWj" = ( /obj/effect/decal/cleanable/blood, /turf/open/mars_cave{ @@ -32540,6 +31997,17 @@ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) +"jWR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor{ + dir = 9; + icon_state = "red" + }, +/area/bigredv2/outside/marshal_office) "jXf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -32625,6 +32093,11 @@ /obj/item/weapon/broken_bottle, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"kcH" = ( +/turf/open/mars{ + icon_state = "mars_dirt_9" + }, +/area/bigredv2/outside/sw) "kcZ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/fence, @@ -32632,12 +32105,6 @@ icon_state = "mars_cave_17" }, /area/bigredv2/outside/filtration_cave_cas) -"kdd" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) "kdf" = ( /obj/item/tool/warning_cone{ pixel_y = 17 @@ -32694,6 +32161,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave, /area/bigredv2/caves_lambda) +"kfx" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_15" + }, +/area/bigredv2/outside/n) "kfY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, @@ -32745,6 +32217,21 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) +"khB" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_covered_bed" + }, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/caves_lambda) +"khK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/n) "khP" = ( /obj/structure/platform{ dir = 1 @@ -32774,6 +32261,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"kjH" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) "kjT" = ( /obj/item/ore{ pixel_x = 13; @@ -32831,11 +32325,6 @@ icon_state = "darkyellowcorners2" }, /area/bigredv2/outside/engineering) -"knF" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/outside/ne) "knN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -32850,30 +32339,11 @@ icon_state = "mars_cave_7" }, /area/bigredv2/outside/filtration_cave_cas) -"kos" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) "kpd" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/n_cave) -"kpf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, /turf/open/mars_cave{ - icon_state = "mars_cave_16" + icon_state = "mars_cave_14" }, -/area/bigredv2/caves_north) +/area/bigredv2/outside/ne) "kqS" = ( /turf/open/floor{ icon_state = "wood" @@ -32953,6 +32423,16 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"kwq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/ne) "kwQ" = ( /turf/open/floor{ dir = 10; @@ -32978,6 +32458,22 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/xenobiology) +"kzF" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/outside/ne) +"kAs" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/telecomm/n_cave) "kBn" = ( /turf/closed/wall/solaris, /area/bigredv2/caves) @@ -32999,11 +32495,19 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"kCm" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"kCR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/ne) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "red" + }, +/area/bigredv2/outside/marshal_office) "kDs" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -33014,12 +32518,6 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) -"kED" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/space_port_lz2) "kFe" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor{ @@ -33074,11 +32572,11 @@ icon_state = "darkred2" }, /area/bigredv2/caves/eta/research) -"kLW" = ( -/obj/effect/landmark/crap_item, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"kMk" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" }, /area/bigredv2/outside/ne) "kMs" = ( @@ -33137,6 +32635,12 @@ icon_state = "asteroidwarning" }, /area/bigredv2/caves_lambda) +"kOv" = ( +/obj/structure/largecrate/random, +/turf/open/floor{ + icon_state = "asteroidplating" + }, +/area/bigredv2/outside/space_port_lz2) "kPu" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -33161,11 +32665,12 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave, /area/bigredv2/caves_east) -"kRo" = ( -/turf/open/floor{ - icon_state = "bcircuit" +"kRy" = ( +/obj/structure/machinery/power/apc{ + dir = 1 }, -/area/bigredv2/outside/telecomm/warehouse) +/turf/open/floor/plating, +/area/bigredv2/outside/medical) "kRK" = ( /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, @@ -33207,13 +32712,14 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor, /area/bigredv2/outside/filtration_cave_cas) -"kTC" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/glass{ - amount = 30 +"kVR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/n) "kVS" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave{ @@ -33240,6 +32746,24 @@ icon_state = "mars_cave_6" }, /area/bigredv2/caves_se) +"kWW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/telecomm/lz2_cave) +"kXV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/bigredv2/outside/medical) "kYd" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/outside/e) @@ -33256,16 +32780,11 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_lambda) -"laX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 9; - pixel_y = -3 - }, -/turf/open/floor{ - icon_state = "white" +"lbh" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_17" }, -/area/bigredv2/outside/medical) +/area/bigredv2/outside/n) "lbZ" = ( /obj/item/frame/rack, /obj/effect/decal/cleanable/dirt, @@ -33308,6 +32827,13 @@ icon_state = "floor1" }, /area/bigredv2/oob) +"ldD" = ( +/obj/item/tool/warning_cone{ + pixel_x = 16; + pixel_y = 14 + }, +/turf/open/mars, +/area/bigredv2/outside/n) "lhh" = ( /obj/structure/fence, /obj/structure/disposalpipe/segment, @@ -33382,6 +32908,24 @@ icon_state = "dark" }, /area/bigredv2/outside/engineering) +"lqp" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/telecomm/n_cave) +"lrs" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations" + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/admin_building) "lrH" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave{ @@ -33417,6 +32961,17 @@ icon_state = "mars_cave_19" }, /area/bigredv2/outside/filtration_plant) +"ltK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "Dormitories"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) "luA" = ( /obj/item/tool/crowbar/red, /turf/open/floor/plating{ @@ -33465,6 +33020,18 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"lym" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "lyx" = ( /obj/structure/surface/table, /obj/structure/machinery/light{ @@ -33478,18 +33045,18 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves) +"lAC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/outside/ne) "lAF" = ( /obj/item/paper_bin, /obj/item/tool/pen, /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) -"lAK" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/bigredv2/outside/telecomm/lz2_cave) "lBc" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/c) @@ -33507,6 +33074,14 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"lCt" = ( +/obj/structure/machinery/power/reactor/colony{ + name = "Reactor Turbine" + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/engineering) "lCR" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/flask/vacuumflask{ @@ -33568,10 +33143,24 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"lID" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/c) "lIL" = ( /obj/structure/sign/safety/fire_haz, /turf/closed/wall/wood, /area/bigredv2/caves/mining) +"lIS" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_19" + }, +/area/bigredv2/outside/ne) "lKw" = ( /obj/item/paper/bigred/walls, /obj/structure/machinery/light/small{ @@ -33620,6 +33209,25 @@ icon_state = "asteroidwarning" }, /area/bigred/ground/garage_workshop) +"lNp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/office_complex) +"lOL" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_20" + }, +/area/bigredv2/outside/n) +"lPg" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/n) "lPh" = ( /obj/item/weapon/twohanded/folded_metal_chair{ pixel_x = 3; @@ -33650,16 +33258,22 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/virology) -"lRu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"lRC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8 }, /turf/open/floor{ - dir = 4; + dir = 8; icon_state = "asteroidwarning" }, -/area/bigredv2/outside/telecomm/lz2_cave) +/area/bigredv2/outside/c) +"lSb" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_cave_9" + }, +/area/bigredv2/outside/ne) "lSm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -33681,16 +33295,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"lSL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/lz2_cave) "lSS" = ( /obj/item/tool/warning_cone, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -33716,6 +33320,17 @@ icon_state = "darkyellowcorners2" }, /area/bigredv2/outside/engineering) +"lTV" = ( +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/space_port_lz2) +"lUa" = ( +/turf/open/mars{ + icon_state = "mars_dirt_8" + }, +/area/bigredv2/outside/n) "lUd" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -33729,11 +33344,10 @@ icon_state = "mars_cave_18" }, /area/bigredv2/caves_se) -"lVm" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/n) +"lUM" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) "lVr" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -33804,25 +33418,22 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) -"mcc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cola, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"mdU" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +"mbz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Bar Maintenance" }, /turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" + icon_state = "delivery" }, -/area/bigredv2/outside/telecomm/lz2_cave) +/area/bigredv2/outside/bar) +"mda" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_16" + }, +/area/bigredv2/caves_lambda) "meT" = ( /turf/open/mars, /area/bigredv2/outside/eta) @@ -33834,17 +33445,24 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) -"mhx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 +"mfG" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor{ + icon_state = "freezerfloor" }, -/obj/item/stack/sheet/glass{ - amount = 30 +/area/bigredv2/outside/general_offices) +"mfQ" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor{ + dir = 10; + icon_state = "darkyellow2" }, -/turf/open/floor, -/area/bigredv2/outside/cargo) +/area/bigredv2/outside/engineering) "mhF" = ( /obj/structure/machinery/light{ dir = 4 @@ -33862,6 +33480,13 @@ }, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) +"mhV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/telecomm/n_cave) "mhZ" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor{ @@ -33891,6 +33516,10 @@ }, /turf/open/floor, /area/bigred/ground/garage_workshop) +"mkt" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) "mlV" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -33912,18 +33541,24 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"mnv" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor{ + icon_state = "grimy" + }, +/area/bigredv2/outside/dorms) +"mnY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/ne) "moE" = ( /turf/open/mars_cave{ icon_state = "mars_cave_9" }, /area/bigredv2/caves_research) -"mpn" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) "mqf" = ( /obj/structure/bed/chair{ dir = 8; @@ -33998,6 +33633,23 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"mtM" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/weapon/gun/smg/fp9000, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "wood" + }, +/area/bigredv2/outside/marshal_office) +"mtS" = ( +/obj/structure/fence, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/n) "muP" = ( /turf/closed/wall/wood, /area/bigredv2/caves_research) @@ -34040,6 +33692,20 @@ "mzV" = ( /turf/open/mars, /area/bigredv2/outside/filtration_plant) +"mAY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/space_port_lz2) +"mBc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/hatchet, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/dorms) "mBo" = ( /obj/item/weapon/twohanded/folded_metal_chair{ pixel_x = -7; @@ -34061,11 +33727,24 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/filtration_cave_cas) +"mDt" = ( +/turf/open/floor{ + icon_state = "asteroidplating" + }, +/area/bigredv2/outside/space_port_lz2) "mDN" = ( /turf/open/mars_cave{ icon_state = "mars_cave_15" }, /area/bigredv2/outside/lz1_north_cas) +"mEC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_north) "mEH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -34090,12 +33769,6 @@ icon_state = "mars_cave_17" }, /area/bigredv2/outside/lz1_north_cas) -"mGS" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/outside/admin_building) "mHp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -34104,6 +33777,12 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_se) +"mIc" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor{ + icon_state = "podhatchfloor" + }, +/area/bigredv2/outside/admin_building) "mIr" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_7" @@ -34126,12 +33805,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_plant) -"mJH" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/space_port_lz2) "mKM" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 6 @@ -34143,6 +33816,15 @@ icon_state = "mars_dirt_11" }, /area/bigredv2/outside/space_port_lz2) +"mOc" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper General Store Maintenance" + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/cargo) "mOW" = ( /obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/plating{ @@ -34240,14 +33922,6 @@ icon_state = "mars_dirt_5" }, /area/bigredv2/caves/mining) -"mWI" = ( -/turf/open/mars_cave, -/area/bigredv2/outside/n) -"mWJ" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/bigredv2/outside/sw) "mXw" = ( /obj/item/storage/toolbox/mechanical, /turf/open/mars_cave{ @@ -34285,6 +33959,10 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_research) +"nbu" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) "ncv" = ( /obj/effect/landmark/corpsespawner/ua_riot, /obj/effect/decal/cleanable/blood{ @@ -34380,6 +34058,11 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) +"nlB" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_16" + }, +/area/bigredv2/outside/n) "nlJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -34406,6 +34089,11 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves_research) +"nnz" = ( +/turf/open/mars_cave{ + icon_state = "mars_dirt_5" + }, +/area/bigredv2/outside/n) "nnK" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -34448,6 +34136,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"nra" = ( +/turf/open/mars{ + icon_state = "mars_dirt_13" + }, +/area/bigredv2/outside/sw) "nrj" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -1; @@ -34516,6 +34209,16 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"nvn" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/c) "nwB" = ( /turf/open/floor{ dir = 8; @@ -34539,6 +34242,17 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) +"nzB" = ( +/obj/structure/machinery/computer/general_air_control{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/surface/table, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "nzN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -34578,6 +34292,11 @@ icon_state = "mars_cave_13" }, /area/bigredv2/outside/lz2_south_cas) +"nEH" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_10" + }, +/area/bigredv2/outside/n) "nEJ" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_5" @@ -34630,20 +34349,6 @@ }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/admin_building) -"nGU" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"nHb" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/bigredv2/outside/telecomm/lz2_cave) "nHQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -34664,14 +34369,6 @@ icon_state = "test_floor4" }, /area/bigredv2/outside/engineering) -"nIs" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Greenhouse"; - name = "\improper Greenhouse Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/hydroponics) "nKL" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "An exchange valve"; @@ -34710,6 +34407,14 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"nOe" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/dorms) "nPz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -34778,12 +34483,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_cave_cas) -"nVa" = ( -/obj/structure/fence, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) "nVq" = ( /turf/open/floor{ icon_state = "dark" @@ -34808,6 +34507,15 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"nWG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, +/area/bigredv2/outside/hydroponics) "nXh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/human, @@ -34841,6 +34549,13 @@ /obj/item/tool/warning_cone, /turf/open/mars, /area/bigredv2/outside/s) +"nZB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/n_cave) "nZD" = ( /obj/structure/platform_decoration{ dir = 8 @@ -34912,12 +34627,6 @@ icon_state = "dark" }, /area/bigredv2/caves/lambda/breakroom) -"oeT" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves_north) "ofn" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris, @@ -34973,11 +34682,15 @@ /obj/structure/cargo_container/hd/left/alt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"oip" = ( -/turf/open/mars{ - icon_state = "mars_dirt_6" +"oji" = ( +/obj/structure/morgue{ + dir = 2 }, -/area/bigredv2/outside/space_port_lz2) +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/bigredv2/outside/medical) "ojD" = ( /obj/structure/platform_decoration{ dir = 4 @@ -35002,6 +34715,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"okt" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/space_port_lz2) "ole" = ( /turf/open/floor/almayer{ dir = 1; @@ -35083,17 +34803,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_cave_cas) -"ooP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "Dormitories"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) "opz" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave{ @@ -35167,6 +34876,12 @@ icon_state = "mars_cave_2" }, /area/bigredv2/outside/lz2_west_cas) +"ovQ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/outside/ne) "ovZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -35223,6 +34938,15 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/bigredv2/caves_virology) +"ozO" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/dorms) "ozQ" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -35253,12 +34977,23 @@ icon_state = "darkred2" }, /area/bigredv2/outside/admin_building) -"oEJ" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "asteroidplating" +"oFj" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/area/bigredv2/outside/space_port_lz2) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_north) +"oFx" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/outside/ne) "oFY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/prop/alien/hugger, @@ -35338,6 +35073,14 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) +"oMf" = ( +/obj/structure/fence, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/telecomm/n_cave) "oNu" = ( /turf/open/mars_cave{ icon_state = "mars_cave_11" @@ -35357,20 +35100,10 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"oOt" = ( +"oOw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) -"oOM" = ( -/obj/structure/surface/table, -/obj/item/clothing/under/brown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) +/turf/open/gm/river, +/area/bigredv2/outside/c) "oQz" = ( /obj/structure/machinery/light/double{ dir = 1 @@ -35399,12 +35132,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"oSN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) "oTf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/handrail{ @@ -35454,6 +35181,16 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) +"oUY" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/telecomm/n_cave) "oWc" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -35475,6 +35212,16 @@ icon_state = "darkblue2" }, /area/bigredv2/outside/admin_building) +"oWk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/lz2_cave) "oWp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/handrail, @@ -35495,12 +35242,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"oWM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/bigredv2/outside/ne) "oXr" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -35632,6 +35373,11 @@ /obj/structure/window_frame/solaris, /turf/open/floor/plating, /area/bigredv2/outside/dorms) +"pgh" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_17" + }, +/area/bigredv2/outside/ne) "pgi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, @@ -35654,6 +35400,12 @@ icon_state = "mars_cave_2" }, /area/bigredv2/outside/filtration_cave_cas) +"pgP" = ( +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/general_offices) "phi" = ( /turf/open/mars_cave{ icon_state = "mars_cave_6" @@ -35724,15 +35476,15 @@ /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "pri" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +/turf/open/mars_cave{ + icon_state = "mars_cave_15" }, -/area/bigredv2/outside/c) +/area/bigredv2/caves_north) "psE" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ @@ -35745,16 +35497,6 @@ }, /turf/open/floor, /area/bigredv2/caves/eta/living) -"ptV" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, -/area/bigredv2/caves_north) "puU" = ( /obj/item/paper/bigred/witness, /turf/open/mars_cave{ @@ -35768,6 +35510,10 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/xenobiology) +"pvj" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor, +/area/bigredv2/outside/dorms) "pvk" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "Righty tighty, lefty loosey!"; @@ -35831,12 +35577,11 @@ icon_state = "dark" }, /area/bigredv2/outside/admin_building) -"pBh" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) +"pzC" = ( +/obj/structure/window/framed/solaris, +/obj/structure/curtain, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) "pBv" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -35874,20 +35619,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"pEp" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/n_cave) -"pGN" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) "pGP" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -35897,13 +35628,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_plant) -"pGS" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) "pHb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -35911,12 +35635,15 @@ icon_state = "mars_cave_7" }, /area/bigredv2/caves_sw) -"pIh" = ( -/obj/structure/machinery/power/geothermal, +"pIl" = ( +/obj/structure/morgue{ + dir = 2 + }, /turf/open/floor{ - icon_state = "white" + dir = 9; + icon_state = "whiteblue" }, -/area/bigredv2/outside/virology) +/area/bigredv2/outside/medical) "pIN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -35924,6 +35651,19 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_lambda) +"pJn" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/outside/ne) +"pJt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/n_cave) "pJS" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -4; @@ -35954,6 +35694,11 @@ icon_state = "mars_cave_19" }, /area/bigredv2/caves/mining) +"pLH" = ( +/turf/open/mars_cave{ + icon_state = "mars_dirt_6" + }, +/area/bigredv2/outside/ne) "pMi" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/extinguisher, @@ -36003,12 +35748,28 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"pOt" = ( +/obj/structure/machinery/optable, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/bigredv2/outside/medical) "pOL" = ( /obj/structure/closet/crate/miningcar/yellow, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"pPh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/bigredv2/outside/telecomm/warehouse) "pPo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, @@ -36049,6 +35810,20 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"pTo" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/lz2_cave) "pTA" = ( /obj/structure/platform_decoration/shiva{ dir = 1 @@ -36180,11 +35955,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"qap" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/outside/space_port_lz2) "qaK" = ( /obj/structure/largecrate, /turf/open/floor{ @@ -36196,14 +35966,16 @@ /obj/vehicle/powerloader/ft, /turf/open/floor/plating, /area/bigredv2/outside/nw/ceiling) -"qez" = ( -/obj/structure/fence, -/obj/effect/decal/cleanable/dirt, +"qby" = ( /turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" + icon_state = "bcircuit" }, -/area/bigredv2/outside/telecomm/n_cave) +/area/bigredv2/outside/telecomm/lz2_cave) +"qcQ" = ( +/turf/open/mars_cave{ + icon_state = "mars_dirt_7" + }, +/area/bigredv2/outside/space_port_lz2) "qeK" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, @@ -36267,16 +36039,6 @@ icon_state = "mars_cave_6" }, /area/bigredv2/caves/mining) -"qhS" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_north) "qiA" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -36325,14 +36087,6 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor, /area/bigred/ground/garage_workshop) -"qlT" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) "qmm" = ( /obj/structure/cargo_container/hd/right/alt, /turf/open/floor/plating, @@ -36348,12 +36102,6 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) -"qmY" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/outside/n) "qoj" = ( /turf/open/mars_cave{ icon_state = "mars_cave_23" @@ -36374,6 +36122,15 @@ icon_state = "dark" }, /area/bigredv2/outside/admin_building) +"qoQ" = ( +/obj/structure/morgue{ + dir = 1 + }, +/turf/open/floor{ + dir = 10; + icon_state = "whiteblue" + }, +/area/bigredv2/outside/medical) "qpn" = ( /obj/item/tool/warning_cone{ pixel_x = -6 @@ -36395,15 +36152,26 @@ /obj/item/storage/firstaid/fire, /turf/open/floor, /area/bigred/ground/garage_workshop) +"qsd" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"qse" = ( +/obj/structure/largecrate/supply, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/n) "qsE" = ( /turf/closed/wall/solaris/reinforced, /area/bigred/ground/garage_workshop) -"qtx" = ( +"qus" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" + icon_state = "delivery" }, -/area/bigredv2/caves_north) +/area/bigredv2/outside/dorms) "qux" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 @@ -36420,6 +36188,17 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"quX" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Engineering"; + name = "\improper Engineering Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "qvA" = ( /obj/effect/landmark/xeno_spawn, /turf/open/mars_cave{ @@ -36432,6 +36211,11 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) +"qwm" = ( +/turf/open/mars{ + icon_state = "mars_dirt_12" + }, +/area/bigredv2/outside/n) "qwx" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -36460,17 +36244,6 @@ icon_state = "darkredcorners2" }, /area/bigredv2/outside/admin_building) -"qyq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) "qzO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -36495,6 +36268,11 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/lz2_south_cas) +"qDZ" = ( +/turf/open/floor{ + icon_state = "podhatchfloor" + }, +/area/bigredv2/outside/telecomm/n_cave) "qEs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave{ @@ -36575,13 +36353,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/cargo) -"qJL" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) "qJV" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -5; @@ -36592,12 +36363,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"qKx" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "prison" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/marshal_office) "qLk" = ( /obj/item/device/flashlight/lantern, /turf/open/mars_cave{ @@ -36611,6 +36376,11 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/eta) +"qMS" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_18" + }, +/area/bigredv2/outside/n) "qNu" = ( /obj/structure/surface/table, /obj/structure/machinery/light/small{ @@ -36621,21 +36391,27 @@ icon_state = "dark" }, /area/bigredv2/caves/lambda/xenobiology) +"qNH" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor{ + icon_state = "asteroidplating" + }, +/area/bigredv2/outside/space_port_lz2) "qNP" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor, /area/bigred/ground/garage_workshop) -"qNT" = ( -/obj/structure/platform{ - dir = 4 +"qNU" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + dir = 1 }, /turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" + icon_state = "asteroidwarning" }, -/area/bigredv2/outside/telecomm/n_cave) +/area/bigredv2/landing/console2) "qOM" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -9; @@ -36656,6 +36432,12 @@ "qPT" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/eta) +"qQl" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor{ + icon_state = "bcircuit" + }, +/area/bigredv2/outside/marshal_office) "qQn" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -36663,6 +36445,13 @@ icon_state = "mars_cave_6" }, /area/bigredv2/caves_lambda) +"qQr" = ( +/obj/item/stack/sheet/wood, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_cave_7" + }, +/area/bigredv2/caves_north) "qSj" = ( /obj/structure/cargo_container/hd/mid/alt, /turf/open/floor/plating, @@ -36706,6 +36495,12 @@ /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"qVw" = ( +/turf/open/floor{ + dir = 5; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/virology) "qVB" = ( /obj/item/weapon/shield/riot, /obj/effect/decal/cleanable/blood/drip{ @@ -36723,6 +36518,24 @@ icon_state = "wood" }, /area/bigredv2/outside/admin_building) +"qYB" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/dorms) "qYY" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -36756,6 +36569,12 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"rat" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "bcircuit" + }, +/area/bigredv2/outside/marshal_office) "raQ" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -36764,6 +36583,17 @@ icon_state = "mars_cave_9" }, /area/bigredv2/outside/telecomm/lz2_cave) +"raU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "red" + }, +/area/bigredv2/outside/marshal_office) "rbD" = ( /obj/structure/largecrate/random, /turf/open/floor/plating{ @@ -36771,6 +36601,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"rbV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/n) "rcc" = ( /obj/structure/prop/almayer/missile_tube{ desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; @@ -36838,27 +36675,22 @@ icon_state = "mars_cave_2" }, /area/space) +"rfX" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/bigredv2/outside/medical) "rgp" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/outside/lz1_north_cas) -"rhx" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/bigredv2/outside/telecomm/warehouse) "rhP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -36901,12 +36733,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"rmk" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/outside/telecomm/n_cave) "rml" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor, @@ -36975,14 +36801,16 @@ icon_state = "mars_cave_2" }, /area/bigredv2/outside/s) +"rrF" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_13" + }, +/area/bigredv2/outside/ne) "rsv" = ( /turf/open/mars_cave{ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) -"rsQ" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/bigredv2/outside/c) "rtL" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -37018,14 +36846,6 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) -"ruF" = ( -/obj/structure/largecrate/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/n) "ruS" = ( /obj/structure/bed/chair{ dir = 8; @@ -37066,6 +36886,12 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) +"rzR" = ( +/turf/open/floor{ + dir = 6; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/ne) "rzT" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/solaris/reinforced, @@ -37178,6 +37004,15 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"rKy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/recharge_station, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/dorms) "rKP" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/floor/plating{ @@ -37185,6 +37020,11 @@ icon_state = "warnplate" }, /area/bigredv2/oob) +"rLM" = ( +/turf/open/mars{ + icon_state = "mars_dirt_12" + }, +/area/bigredv2/outside/ne) "rLR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -37234,6 +37074,11 @@ /obj/item/weapon/harpoon, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"rNd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) "rOK" = ( /obj/effect/landmark/corpsespawner/ua_riot, /obj/item/weapon/baton/loaded, @@ -37290,16 +37135,6 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/storage) -"rTr" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, -/area/bigredv2/caves_north) "rTN" = ( /obj/structure/fence, /turf/open/floor{ @@ -37350,12 +37185,18 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) -"rVx" = ( +"rVE" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave{ + icon_state = "mars_cave_19" + }, +/area/bigredv2/outside/n) +"rVT" = ( +/obj/structure/fence, /turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" + icon_state = "asteroidwarning" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/n) "rWF" = ( /obj/item/stack/cable_coil/cut{ pixel_x = 6; @@ -37419,14 +37260,17 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"rZi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" +"rYS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/medical) +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"rZn" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/w) "rZQ" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/csandwich, @@ -37437,6 +37281,13 @@ icon_state = "mars_cave_15" }, /area/bigredv2/caves/mining) +"rZU" = ( +/obj/structure/fence, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/n) "sap" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -37447,17 +37298,6 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) -"saH" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/n_cave) "saX" = ( /obj/structure/machinery/power/turbine, /turf/open/floor{ @@ -37472,6 +37312,14 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"sbm" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/space_port_lz2) "sbz" = ( /obj/structure/platform/kutjevo/rock{ dir = 8 @@ -37500,6 +37348,15 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/living) +"scK" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/telecomm/n_cave) "sdP" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating, @@ -37537,24 +37394,12 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"shf" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"shm" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" +"shK" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" }, -/area/bigredv2/outside/dorms) +/area/bigredv2/outside/space_port_lz2) "shV" = ( /turf/open/floor{ icon_state = "asteroidwarning" @@ -37661,17 +37506,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"som" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/caves_north) "sqc" = ( /obj/effect/decal/cleanable/blood{ base_icon = 'icons/obj/items/weapons/grenade.dmi'; @@ -37689,6 +37523,13 @@ icon_state = "mars_cave_10" }, /area/bigredv2/caves_research) +"sqt" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/ne) "sqQ" = ( /obj/item/paper/bigred/them, /turf/open/floor/plating{ @@ -37718,12 +37559,12 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"stJ" = ( +"stZ" = ( +/obj/effect/landmark/static_comms/net_two, /turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" + icon_state = "bcircuit" }, -/area/bigredv2/outside/telecomm/n_cave) +/area/bigredv2/outside/telecomm/lz2_cave) "sus" = ( /turf/open/mars_cave{ icon_state = "mars_cave_23" @@ -37769,11 +37610,15 @@ icon_state = "delivery" }, /area/bigred/ground/garage_workshop) -"svp" = ( +"swk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor{ - icon_state = "asteroidplating" + dir = 8; + icon_state = "asteroidwarning" }, -/area/bigredv2/outside/space_port_lz2) +/area/bigredv2/outside/w) "swJ" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, @@ -37810,13 +37655,6 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves/mining) -"szg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) "szi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37838,6 +37676,15 @@ icon_state = "darkyellowcorners2" }, /area/bigredv2/outside/engineering) +"szZ" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/dorms) "sAG" = ( /obj/effect/landmark/hunter_primary, /turf/open/mars_cave{ @@ -37869,12 +37716,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_east) -"sBF" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/space_port_lz2) "sCj" = ( /obj/item/stack/cable_coil/cut, /turf/open/mars_cave{ @@ -37926,6 +37767,12 @@ icon_state = "darkgreencorners2" }, /area/bigredv2/caves/eta/research) +"sFv" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/bigredv2/caves_north) "sFW" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/mars_cave{ @@ -38053,28 +37900,14 @@ icon_state = "mars_cave_19" }, /area/bigredv2/outside/lz2_south_cas) -"sTf" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/landing/console2) "sUQ" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) -"sVY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/clothing/under/darkred, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) +"sVB" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) "sWa" = ( /obj/item/ore{ pixel_x = 12; @@ -38084,6 +37917,17 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) +"sWh" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/telecomm/n_cave) "sWS" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating{ @@ -38146,6 +37990,22 @@ icon_state = "podhatchfloor" }, /area/bigredv2/outside/admin_building) +"taV" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/n) +"tbS" = ( +/obj/structure/morgue{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "whiteblue" + }, +/area/bigredv2/outside/medical) "tcb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/pizzabox/meat, @@ -38178,6 +38038,12 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves/mining) +"tdz" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor{ + icon_state = "grimy" + }, +/area/bigredv2/outside/dorms) "tdB" = ( /obj/structure/tunnel{ id = "hole1" @@ -38255,12 +38121,11 @@ /obj/effect/decal/cleanable/ash, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"tgk" = ( +"tgf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "floor4" - }, -/area/bigredv2/outside/cargo) +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "tgF" = ( /obj/effect/spawner/random/tool, /turf/open/shuttle/escapepod{ @@ -38294,6 +38159,11 @@ icon_state = "freezerfloor" }, /area/bigredv2/outside/engineering) +"tjX" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_7" + }, +/area/bigredv2/outside/n) "tkN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -38302,11 +38172,22 @@ icon_state = "darkpurple2" }, /area/bigredv2/caves/lambda/research) -"tlj" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +"tkY" = ( +/obj/structure/noticeboard{ + desc = "A board for pinning important items upon."; + dir = 1; + name = "trophy board"; + pixel_y = 30 }, -/area/bigredv2/outside/n) +/obj/item/XenoBio/Chitin{ + anchored = 1; + pixel_y = 27 + }, +/turf/open/floor{ + dir = 1; + icon_state = "elevatorshaft" + }, +/area/bigredv2/caves/lambda/breakroom) "tlP" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/light{ @@ -38332,11 +38213,12 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves_research) -"tng" = ( +"tnG" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ - icon_state = "mars_dirt_4" + icon_state = "mars_cave_2" }, -/area/bigredv2/caves_lambda) +/area/bigredv2/outside/n) "toA" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/alien/hugger, @@ -38353,11 +38235,25 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"tpU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, +/area/bigredv2/outside/hydroponics) +"tpY" = ( +/obj/structure/lz_sign/solaris_sign, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) "tqi" = ( /turf/open/mars_cave{ icon_state = "mars_cave_19" }, /area/bigredv2/caves/mining) +"tqS" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves_north) "trk" = ( /turf/open/mars_cave{ icon_state = "mars_cave_13" @@ -38464,22 +38360,6 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) -"twS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/lz2_cave) -"tyH" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/caves_north) "tzJ" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Engine Reactor Control" @@ -38574,11 +38454,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"tCQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/bigredv2/caves_lambda) "tDk" = ( /obj/structure/machinery/light/double{ dir = 1 @@ -38604,6 +38479,13 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves_research) +"tFt" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/general_offices) "tFO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -38612,17 +38494,21 @@ icon_state = "delivery" }, /area/bigredv2/caves/lambda/breakroom) -"tGJ" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/outside/telecomm/n_cave) "tHl" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/mars{ icon_state = "mars_dirt_10" }, /area/bigredv2/outside/c) +"tHB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/c) "tIq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave{ @@ -38665,12 +38551,6 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) -"tJH" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) "tKr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ @@ -38699,12 +38579,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"tKE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/ne) "tKR" = ( /turf/open/floor{ icon_state = "delivery" @@ -38715,6 +38589,23 @@ icon_state = "mars_cave_14" }, /area/bigredv2/caves_north) +"tLO" = ( +/obj/structure/machinery/computer/med_data{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/bigredv2/outside/medical) +"tMa" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/space_port_lz2) "tNz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -38730,13 +38621,15 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"tPr" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"tQg" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"tQj" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_20" }, -/area/bigredv2/outside/ne) +/area/bigredv2/caves_lambda) "tQo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ore/uranium{ @@ -38754,17 +38647,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_lambda) -"tQY" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_north) "tRd" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A pipe."; @@ -38823,12 +38705,15 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"tVm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"tUY" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves_lambda) +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/space_port_lz2) "tVn" = ( /obj/item/tool/lighter/zippo, /turf/open/floor, @@ -38846,12 +38731,24 @@ icon_state = "mars_cave_15" }, /area/bigredv2/caves/mining) +"tWf" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/outside/space_port_lz2) "tWS" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo, /turf/open/mars_cave{ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) +"tYM" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "prison" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/marshal_office) "tZU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -38884,6 +38781,10 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"ucl" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) "ucH" = ( /turf/open/mars_cave, /area/bigredv2/caves_virology) @@ -38892,15 +38793,6 @@ icon_state = "mars_cave_4" }, /area/bigredv2/caves_se) -"uey" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Dormitories"; - name = "\improper Dormitories Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) "ueL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/window/framed/solaris, @@ -38908,10 +38800,11 @@ icon_state = "panelscorched" }, /area/bigredv2/outside/engineering) -"ueW" = ( -/obj/structure/closet/crate/trashcart, +"ufc" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor{ - icon_state = "asteroidplating" + dir = 4; + icon_state = "asteroidwarning" }, /area/bigredv2/outside/space_port_lz2) "ufu" = ( @@ -38929,10 +38822,9 @@ icon_state = "darkgreencorners2" }, /area/bigredv2/caves/eta/research) -"ufD" = ( +"ugc" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, +/obj/structure/largecrate/random/barrel, /turf/open/floor, /area/bigredv2/outside/cargo) "ugW" = ( @@ -38957,6 +38849,13 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"ujq" = ( +/obj/structure/bed/roller, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, +/area/bigredv2/outside/medical) "ujC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -38985,6 +38884,16 @@ icon_state = "floor5" }, /area/bigredv2/oob) +"ukv" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_15" + }, +/area/bigredv2/caves_lambda) +"ukW" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_20" + }, +/area/bigredv2/outside/ne) "ulk" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -39003,6 +38912,20 @@ /obj/item/device/flashlight/on, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"ume" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = 32 + }, +/obj/structure/bed, +/turf/open/floor{ + icon_state = "white" + }, +/area/bigredv2/outside/medical) "umK" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -8; @@ -39059,26 +38982,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"usF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) "usG" = ( /turf/open/mars_cave{ icon_state = "mars_cave_18" }, /area/bigredv2/caves_east) -"utg" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, -/area/bigredv2/outside/sw) "uuo" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -39112,10 +39020,24 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/outside/filtration_plant) +"uwV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/general_offices) "uxx" = ( /obj/structure/machinery/door/poddoor/almayer/closed, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"uyd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/lz2_cave) "uyk" = ( /turf/open/mars_cave{ icon_state = "mars_cave_7" @@ -39144,6 +39066,10 @@ icon_state = "dark" }, /area/bigredv2/outside/engineering) +"uBP" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) "uCa" = ( /obj/effect/landmark/corpsespawner/miner, /turf/open/floor/plating{ @@ -39164,6 +39090,16 @@ }, /turf/closed/wall/wood, /area/bigredv2/caves/mining) +"uDt" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/bigredv2/outside/medical) "uDA" = ( /obj/item/stack/sheet/glass, /turf/open/floor{ @@ -39233,13 +39169,6 @@ icon_state = "darkredcorners2" }, /area/bigredv2/caves/eta/xenobiology) -"uHx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/hydroponics) "uHE" = ( /obj/item/tool/warning_cone{ pixel_y = 19 @@ -39260,6 +39189,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"uIz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 6; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/n_cave) "uIB" = ( /obj/effect/vehicle_spawner/van/decrepit, /obj/effect/decal/cleanable/blood/oil, @@ -39350,10 +39286,6 @@ icon_state = "bcircuitoff" }, /area/bigredv2/caves/lambda/research) -"uQY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/general_offices) "uRE" = ( /obj/effect/landmark/nightmare{ insert_tag = "medbay-passage" @@ -39365,17 +39297,6 @@ icon_state = "floor1" }, /area/bigredv2/oob) -"uSp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) "uSt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -39389,6 +39310,15 @@ icon_state = "mars_dirt_10" }, /area/bigredv2/outside/space_port_lz2) +"uST" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Medical Clinic Power Station" + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/medical) "uTO" = ( /obj/structure/machinery/pipedispenser, /turf/open/floor{ @@ -39406,6 +39336,13 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_cave_cas) +"uVi" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/lightbrown, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/general_offices) "uVn" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -39419,13 +39356,6 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/living) -"uXO" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -9 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) "uXW" = ( /turf/open/mars_cave{ icon_state = "mars_cave_8" @@ -39509,6 +39439,16 @@ "vex" = ( /turf/closed/wall/wood, /area/bigredv2/outside/lz2_south_cas) +"vfo" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 9; + pixel_y = -3 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/bigredv2/outside/medical) "vfI" = ( /turf/open/mars{ icon_state = "mars_dirt_13" @@ -39521,6 +39461,13 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) +"vgE" = ( +/obj/structure/fence, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/n) "vgZ" = ( /obj/structure/platform/shiva, /obj/structure/platform/shiva{ @@ -39530,6 +39477,12 @@ icon_state = "bcircuitoff" }, /area/bigredv2/caves/lambda/research) +"vhw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) "vhF" = ( /obj/item/device/flashlight/lantern, /turf/open/mars_cave{ @@ -39544,11 +39497,6 @@ icon_state = "dark" }, /area/bigredv2/outside/filtration_plant) -"vis" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/outside/ne) "viN" = ( /obj/structure/machinery/door_control{ id = "workshop_br_g"; @@ -39573,6 +39521,25 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/filtration_plant) +"vkf" = ( +/obj/effect/landmark/crap_item, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/outside/ne) +"vkv" = ( +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"vkF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) "vld" = ( /obj/item/tool/warning_cone, /turf/open/mars_cave{ @@ -39682,6 +39649,13 @@ icon_state = "mars_dirt_14" }, /area/bigredv2/outside/eta) +"vsi" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/space_port_lz2) "vti" = ( /obj/structure/closet/crate, /obj/effect/landmark/objective_landmark/close, @@ -39743,13 +39717,17 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"vwP" = ( -/obj/structure/fence, +"vxv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/surface/table, +/obj/structure/machinery/light, /turf/open/floor{ dir = 1; icon_state = "asteroidfloor" }, -/area/bigredv2/outside/telecomm/n_cave) +/area/bigredv2/outside/n) "vxQ" = ( /obj/item/tool/pickaxe/gold, /turf/open/floor/plating, @@ -39758,12 +39736,6 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"vzk" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/space_port_lz2) "vzL" = ( /obj/item/weapon/gun/boltaction, /turf/open/floor/plating{ @@ -39775,23 +39747,17 @@ /obj/structure/window/framed/solaris/reinforced/tinted, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"vAy" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/n_cave) "vBy" = ( /obj/item/ammo_magazine/shotgun/beanbag/riot, /turf/open/mars_cave{ icon_state = "mars_cave_17" }, /area/bigredv2/caves_research) +"vBI" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_9" + }, +/area/bigredv2/outside/n) "vBT" = ( /obj/structure/surface/table/reinforced, /obj/structure/transmitter/colony_net/rotary{ @@ -39850,9 +39816,41 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/living) +"vGE" = ( +/turf/open/floor{ + dir = 6; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/space_port_lz2) +"vGN" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/medical) "vHw" = ( /turf/closed/wall/wood, /area/bigredv2/caves/mining) +"vHU" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/outside/n) +"vIQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/c) "vKv" = ( /turf/open/floor{ dir = 8; @@ -39862,16 +39860,6 @@ "vLd" = ( /turf/open/floor, /area/bigred/ground/garage_workshop) -"vMb" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_north) "vMj" = ( /turf/open/mars_cave{ icon_state = "mars_cave_6" @@ -39928,12 +39916,6 @@ icon_state = "white" }, /area/bigredv2/outside/marshal_office) -"vQe" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) "vQZ" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" @@ -39946,15 +39928,6 @@ /obj/structure/sign/safety/high_voltage, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"vRJ" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/n_cave) "vRK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -39982,6 +39955,12 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"vUy" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/outside/space_port_lz2) "vVl" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Dormitories Toilet" @@ -39991,20 +39970,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"vVz" = ( -/obj/structure/machinery/power/geothermal{ - name = "Reactor Turbine"; - power_generation_max = 100000 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/engineering) -"vVB" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/bigredv2/caves_lambda) "vVF" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -5; @@ -40031,12 +39996,26 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/nw) +"vXJ" = ( +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/caves_lambda) "vYw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"vZh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/clothing/under/darkred, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/general_offices) "waJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -40072,6 +40051,18 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"wbD" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/outside/space_port_lz2) +"wbY" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/outside/n) "wcs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -40165,12 +40156,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_cave_cas) -"whv" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/ne) "whE" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/objective_landmark/close, @@ -40230,16 +40215,39 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"wmN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/n_cave) "wni" = ( /turf/open/floor{ icon_state = "darkredcorners2" }, /area/bigredv2/caves/eta/xenobiology) +"woe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/outside/space_port_lz2) "wog" = ( /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/caves_sw) +"woK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 6; + icon_state = "red" + }, +/area/bigredv2/outside/marshal_office) "wpf" = ( /turf/open/mars_cave{ icon_state = "mars_cave_19" @@ -40251,17 +40259,6 @@ icon_state = "delivery" }, /area/bigredv2/outside/engineering) -"wpP" = ( -/obj/structure/platform, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/n_cave) -"wpT" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) "wry" = ( /obj/structure/surface/table, /obj/structure/transmitter/colony_net/rotary{ @@ -40286,6 +40283,15 @@ /obj/structure/plasticflaps, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"wss" = ( +/obj/item/tool/warning_cone{ + pixel_y = 20 + }, +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/telecomm/n_cave) "wtj" = ( /turf/open/floor/plating, /area/bigredv2/caves/mining) @@ -40375,13 +40381,12 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) -"wzc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 +"wyP" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) +/area/bigredv2/outside/space_port_lz2) "wBi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -40396,6 +40401,16 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"wBu" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/c) "wCo" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_4" @@ -40417,19 +40432,6 @@ icon_state = "mars_cave_17" }, /area/bigredv2/caves/mining) -"wDK" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/n_cave) "wFL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/safety/hazard{ @@ -40480,15 +40482,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/se) -"wGP" = ( -/obj/structure/morgue{ - dir = 1 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) "wGV" = ( /obj/item/tool/wrench, /turf/open/floor{ @@ -40531,15 +40524,6 @@ icon_state = "mars_cave_17" }, /area/bigredv2/outside/lz1_north_cas) -"wLg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ - dir = 1; - name = "\improper Dormitories Restroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) "wLD" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating{ @@ -40622,28 +40606,11 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves/mining) -"wQu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/book/manual/research_and_development, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) "wQC" = ( /turf/open/mars_cave{ icon_state = "mars_cave_7" }, /area/bigredv2/caves_lambda) -"wQD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) "wRH" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/flashlight, @@ -40699,6 +40666,11 @@ icon_state = "mars_cave_17" }, /area/bigredv2/caves/mining) +"wWE" = ( +/turf/open/mars_cave{ + icon_state = "mars_cave_19" + }, +/area/bigredv2/outside/n) "wWK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave{ @@ -40718,6 +40690,11 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/outside/lz1_north_cas) +"wXv" = ( +/turf/open/mars{ + icon_state = "mars_dirt_14" + }, +/area/bigredv2/outside/space_port_lz2) "wXz" = ( /turf/open/floor/plating, /area/bigredv2/caves/eta/research) @@ -40739,19 +40716,24 @@ icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"wZv" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/c) "wZC" = ( /turf/open/mars{ icon_state = "mars_dirt_11" }, /area/bigredv2/outside/eta) -"xah" = ( -/obj/structure/largecrate/supply/supplies, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"wZP" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" }, -/area/bigredv2/outside/n) +/area/bigredv2/outside/space_port_lz2) "xaH" = ( /turf/closed/wall/wood, /area/bigredv2/caves_sw) @@ -40781,6 +40763,17 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) +"xcz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/plating{ + dir = 4; + icon_state = "warnplate" + }, +/area/bigredv2/outside/telecomm/warehouse) "xej" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -40796,11 +40789,6 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/outside/filtration_plant) -"xeV" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor, -/area/bigredv2/outside/cargo) "xfx" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -40846,6 +40834,12 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) +"xgm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/ne) "xgw" = ( /turf/open/mars_cave{ icon_state = "mars_cave_9" @@ -40875,6 +40869,10 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"xjU" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) "xkq" = ( /turf/open/mars_cave{ icon_state = "mars_cave_3" @@ -40956,15 +40954,6 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"xrN" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 13 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) "xrO" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; @@ -41062,15 +41051,6 @@ icon_state = "vault" }, /area/bigredv2/outside/marshal_office) -"xyw" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/n_cave) "xyz" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -41079,6 +41059,12 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"xzb" = ( +/obj/structure/surface/rack, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/general_offices) "xzi" = ( /obj/effect/decal/remains/xeno, /turf/open/floor/plating{ @@ -41153,22 +41139,6 @@ "xFZ" = ( /turf/open/mars_cave, /area/bigredv2/caves_lambda) -"xGT" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/bigredv2/outside/space_port_lz2) -"xHQ" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/bigredv2/caves_north) "xIo" = ( /obj/structure/window/framed/solaris/reinforced/hull, /turf/open/floor/plating{ @@ -41285,6 +41255,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/cargo) +"xQd" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/n) "xRl" = ( /obj/item/weapon/gun/pistol/b92fs{ pixel_x = 13; @@ -41294,6 +41272,12 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"xRn" = ( +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/caves_north) "xSa" = ( /obj/structure/prop/dam/crane, /turf/open/mars_cave{ @@ -41317,6 +41301,16 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"xWl" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda"; + name = "Lambda Lockdown" + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/caves_north) "xWm" = ( /turf/open/floor{ icon_state = "whitepurplefull" @@ -41355,12 +41349,16 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves/mining) -"xWI" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +"xWR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/bigredv2/outside/n) +/turf/open/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/bigredv2/outside/telecomm/warehouse) "xWV" = ( /obj/structure/machinery/power/apc{ dir = 1 @@ -41398,6 +41396,11 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_sw) +"xXT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "xYc" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -41488,6 +41491,15 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/outside/eta) +"yej" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/n) "yfe" = ( /obj/effect/landmark/nightmare{ insert_tag = "eta" @@ -41523,6 +41535,16 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"ygN" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/under/brown, +/obj/structure/machinery/washing_machine{ + pixel_y = 13 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/general_offices) "ygP" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -46068,11 +46090,11 @@ aao aao aao ayf -wpT +bcW cVY ayf cVY -bhD +uBP ayf cVY cVY @@ -46289,10 +46311,10 @@ cVY cVY cVY cVY -bio -bkk -brG -jvt +ucl +gQj +dCU +tQg cVY cVY bjN @@ -46506,7 +46528,7 @@ ayf cVY cVY cVY -bjP +xjU cVY cVY cVY @@ -46719,10 +46741,10 @@ aao aao aao ayf -bee +qsd cVY cVY -bhe +nbu cVY cVY cVY @@ -46936,7 +46958,7 @@ aao aao aao ayf -bew +mkt cVY cVY hpg @@ -46955,7 +46977,7 @@ ayf bsa ayf ayf -qap +qcQ tVp fFO cVY @@ -47144,8 +47166,8 @@ aXw aXw aZl aoD -pIh -pIh +bRV +bRV aoD aoD aoD @@ -47182,7 +47204,7 @@ vKv vKv vKv vKv -btv +jlS tVp ayf ayf @@ -47343,7 +47365,7 @@ aIb lQU aFt aFu -idO +qVw aoD aNg aNc @@ -47399,7 +47421,7 @@ eWd eWd eWd eWd -brd +dAX tVp tVp ayf @@ -47616,8 +47638,8 @@ bjn bid bsa eWd -brd -kED +dAX +vUy tVp ayf aao @@ -47833,8 +47855,8 @@ bje bie bsb eWd -brd -sBF +dAX +wyP tVp ayf aao @@ -48021,7 +48043,7 @@ aoD aao aao ayf -beS +tpY cVY uSC tVp @@ -48050,7 +48072,7 @@ bie bie bsc eWd -brd +dAX tVp tVp ayf @@ -48267,7 +48289,7 @@ bie bie bsd eWd -brd +dAX tVp tVp ayf @@ -48457,7 +48479,7 @@ aao ayf ayf cVY -bgq +wXv tVp bgX bhx @@ -48484,7 +48506,7 @@ bie bie bse eWd -brd +dAX tVp tVp ayf @@ -48701,7 +48723,7 @@ bie bie bsb eWd -brd +dAX tVp tVp ayf @@ -48918,7 +48940,7 @@ bie bie bsc eWd -brd +dAX tVp tVp ayf @@ -49103,7 +49125,7 @@ aSB aoD aSB aSB -azR +rZn aSB tVp mMf @@ -49135,7 +49157,7 @@ bie bie bsd eWd -brd +dAX tVp tVp ayf @@ -49352,7 +49374,7 @@ bie bie bse eWd -brd +dAX tVp tVp ayf @@ -49539,8 +49561,8 @@ aWk aVI aWk aWk -bcp -bcp +iHe +iHe vKv vKv vKv @@ -49569,7 +49591,7 @@ bie bjo bsb eWd -brd +dAX tVp tVp ayf @@ -49757,7 +49779,7 @@ bdZ bdZ bdZ bmN -bfW +ufc bmN bmN bmN @@ -49786,7 +49808,7 @@ bie bie bsc eWd -brd +dAX tVp tVp ayf @@ -49973,7 +49995,7 @@ bdZ bdZ bdZ beu -bcr +woe tVp tVp tVp @@ -50003,9 +50025,9 @@ bje bie bsd eWd -brd +dAX tVp -mJH +tWf ayf aao aao @@ -50145,9 +50167,9 @@ ahR aln ajy bFw -bjj -bjj -jtX +xWR +xWR +iTN axZ avT azo @@ -50190,9 +50212,9 @@ bdZ aUQ bdZ bev -bcr +woe tVp -bfT +wbD tVp tVp bgX @@ -50220,9 +50242,9 @@ brb bpu bsa eWd -brd +dAX tVp -dwg +wZP ayf aao aao @@ -50362,9 +50384,9 @@ akK aln ajy bFw -kRo -joi -bjX +hyC +iNE +pPh axZ avT avT @@ -50397,7 +50419,7 @@ asj aoH aoH asK -aXJ +jUd asK beQ aYF @@ -50407,7 +50429,7 @@ bdZ aUQ bdZ bev -bcr +woe tVp tVp tVp @@ -50437,9 +50459,9 @@ eWd eWd eWd eWd -brd +dAX tVp -vzk +shK ayf aao aao @@ -50579,9 +50601,9 @@ ahR aln ajy bFw -kRo -kRo -bjX +hyC +hyC +pPh axZ avT avT @@ -50630,7 +50652,7 @@ aao tVp tVp bgX -boD +sbm kHK kHK bmN @@ -50654,7 +50676,7 @@ eWd bmN bmN bmN -tJH +vGE tVp ayf ayf @@ -50796,9 +50818,9 @@ atm aln ajy bFw -rhx -bjv -bqg +ccI +xcz +dws aya avT azo @@ -50847,29 +50869,29 @@ aao aao tVp bgX -boD +sbm eWd -brd -oEJ -xGT -svp +dAX +kOv +qNH +mDt bgX eWd -qlT +cpQ ayf ayf bsa ayf ayf -qap +qcQ tVp tVp tVp bgX eWd -brd +dAX tVp -qap +qcQ tVp tVp tVp @@ -51060,7 +51082,7 @@ bdZ bev tVp tVp -bfU +jDo tVp tVp bgX @@ -51072,7 +51094,7 @@ vKv vKv eWd eWd -sTf +qNU ayf ayf ayf @@ -51080,17 +51102,17 @@ ayf ayf tVp tVp -qap +qcQ tVp bgX eWd -brd +dAX tVp tVp tVp tVp tVp -qap +qcQ aao aao aao @@ -51289,26 +51311,26 @@ bmN bmN eWd eWd -aLn +gpA ayf aFc aFc aFc ayf -jfn -jfn +quX +quX axX tVp bgX eWd -brd +dAX tVp tVp tVp tVp tVp tVp -oip +fsY lzI aao aao @@ -51497,22 +51519,22 @@ tVp tVp tVp tVp -bhc -bpv -cwk -brd -svp -ueW -oEJ +mAY +vsi +dIH +dAX +mDt +jrN +kOv bgX eWd -blb -bjQ +lTV +gWD aFc aFc bsI azb -rVx +vkv kVT azb vKv @@ -51703,28 +51725,28 @@ aXH asK bdZ aWk -beR +swk aUQ aUQ aUQ aUQ bdZ -bcs +tUY vKv vKv vKv vKv -bhd +dVp kHK -bik +crl kHK vKv vKv vKv eWd eWd -pGS -bjQ +okt +gWD aFc aFc bsI @@ -51924,7 +51946,7 @@ asK aUQ bdZ bdZ -beb +iCu bdZ asK eWd @@ -51933,15 +51955,15 @@ eWd asK eWd eWd -bik +crl kHK -bjt -bjt -bjQ +tMa +tMa +gWD eWd eWd -blc -bjQ +ice +gWD aFc aFc bsI @@ -52160,8 +52182,8 @@ bkz asK lMt aFc -crO -mWJ +ftY +kcH azb hhK sCt @@ -52365,19 +52387,19 @@ aZu aZu aZu asK -kTC +kjH beT baz aZu bbM -gQP +rYS asK aZw aZu bld asK -crO -mWJ +ftY +kcH bme azb hhK @@ -52571,22 +52593,22 @@ aXH asK baz aZu -aEV +cRb aZu aZu aZu aZu aZu -bdf +hah bfy bfV -bgC +bgq atA -xeV -bqe -heU -bqe -bqe +gMC +bhb +bik +bhb +bhb aZu asK aZu @@ -52800,10 +52822,10 @@ aZO aZu atA bkn -bqe +bhb bfB bgD -bjh +eYK bbe bjR bbe @@ -52826,7 +52848,7 @@ rzb bsK axX bme -utg +nra aao glB xpb @@ -53012,16 +53034,16 @@ bdK aZM aZu beU -bfA +hVP bgE baF asK aZu -bqe -heU -bqe -tgk -aDo +bhb +bik +bhb +bhD +ugc atA bkl aZO @@ -53042,7 +53064,7 @@ tTI rzb bsL azb -utg +nra bpx aao euF @@ -53237,8 +53259,8 @@ bbe bhE bbR biK -ufD -mhx +vkF +fVt atA bkl aZu @@ -53448,7 +53470,7 @@ aZu beU bfC bfX -bhb +bhe asK asK asK @@ -53461,8 +53483,8 @@ aLl aZu blh asK -crO -jmY +ftY +fbf bme axX azB @@ -54093,7 +54115,7 @@ bbg auk asK asK -bax +bee aZu bex bbe @@ -54310,7 +54332,7 @@ aZO baz bcy asK -bax +bee aZu baz beU @@ -54519,7 +54541,7 @@ aWB aoH aXH aXH -bfg +mOc aZu aZO aZO @@ -54529,7 +54551,7 @@ bcz asK bdM aZu -bey +eRe aZu aZu aZu @@ -55204,7 +55226,7 @@ bnr bok bnr bpi -kVT +mfQ ayr nPz nVq @@ -55319,8 +55341,8 @@ aao aao aao aao -lVm -dlr +dQR +dXK asc acp adi @@ -55345,13 +55367,13 @@ ahP aog aoR alu -aqv +atq aqw aqw aqw -atp +hbx amj -auJ +ujq avw awb awP @@ -55535,8 +55557,8 @@ aao aao aao aao -dlr -dtX +dXK +hQO aqL asc acp @@ -55562,13 +55584,13 @@ ahP ahP ajz alD -aqv +atq aqw arR arR -atq +ark amj -rZi +kXV aqw awc awQ @@ -55751,9 +55773,9 @@ aao aao aao aao -acc +kfx aqL -ann +nnz aqL asc acp @@ -55779,11 +55801,11 @@ ahP ahP ajz alD -aqv +atq aqw arR asC -atq +ark amj auK aqw @@ -55819,7 +55841,7 @@ aOB aVO aoH asK -aXJ +jUd asK asK aZu @@ -55967,8 +55989,8 @@ aao aao aao aao -lVm -acc +dQR +kfx aqL aqL aqL @@ -56183,9 +56205,9 @@ pXu aao aao aao -lVm -lVm -dtX +dQR +dQR +hQO aqL agq ahe @@ -56398,9 +56420,9 @@ pXu pXu pXu rgp -lVm -dlr -lVm +dQR +dXK +dQR agq ahe ahe @@ -56471,7 +56493,7 @@ aVP aoH aHF aHF -aYf +wZv asK aZw aZu @@ -56504,7 +56526,7 @@ bmV ayr bnV tTI -cKu +eYy ayZ bpF slG @@ -56614,10 +56636,10 @@ wXg wKx pXu pXu -awx -dtX +tnG +hQO aqL -avK +lOL asc acp acp @@ -56646,12 +56668,12 @@ ana acp acp acp -qKx -aqy -ark -arV -ark -ark +tYM +ume +aqv +bOZ +aqv +aqv amj auL avx @@ -56721,7 +56743,7 @@ ayr ayr xAX tTI -cKu +eYy ayZ nPz tTI @@ -56831,15 +56853,15 @@ wXg wKx pXu pXu -axm +hgO aqL -ann +nnz aqL asc acp acy -acE -acE +cGc +cGc acC acU acC @@ -57046,10 +57068,10 @@ aao wXg wXg wKx -lVm -acc -azF -buP +dQR +kfx +idn +gdK aqL aqL asc @@ -57074,7 +57096,7 @@ aiZ afS afS afS -aAd +alp ame ahj anx @@ -57261,14 +57283,14 @@ aao aao aao aao -ajD -lVm -lVm -lVm -azF -ann +nlB +dQR +dQR +dQR +idn +nnz aqL -aac +wWE asc acr acz @@ -57290,7 +57312,7 @@ acp aja ajC ake -alp +rat acr ame ahj @@ -57298,7 +57320,7 @@ aer afS aoT acp -arn +tLO arm aip asE @@ -57478,14 +57500,14 @@ aao aao aao aao -lVm -lVm -lVm -lVm -brc +dQR +dQR +dQR +dQR +hFV aqL aqL -heI +lbh asc acs acz @@ -57515,7 +57537,7 @@ acp acp acp acp -aqB +efK arl aiY asF @@ -57605,9 +57627,9 @@ duA ykR iaC pWs -vVz -vVz -vVz +lCt +lCt +lCt jxA duA ykR @@ -57695,14 +57717,14 @@ aao aao aao aao -lVm -lVm -lVm -lVm -awx -ajD -ajD -lVm +dQR +dQR +dQR +dQR +tnG +nlB +nlB +dQR asc acq acz @@ -57721,10 +57743,10 @@ agz ahm ahj acp -aZp -bhH -akf -bhN +jWR +cGi +kCR +aWj biA ame ahj @@ -57914,12 +57936,12 @@ aao aao aao aao -lVm -lVm -awx -lVm -lVm -lVm +dQR +dQR +tnG +dQR +dQR +dQR asc acq acz @@ -57938,10 +57960,10 @@ agz ahm aie acp -aZq +eFr aiX -akg -akN +qQl +iis afS ame ahj @@ -57949,11 +57971,11 @@ anx afS akM acp -aEB -asG -asG -asG -ats +eKm +rbV +rbV +rbV +vxv alu auN aqw @@ -57989,7 +58011,7 @@ apC apC apC apJ -duI +lrs apJ apC apC @@ -58134,9 +58156,9 @@ aao aao aao aao -lVm -lVm -acc +dQR +dQR +kfx asc acp acz @@ -58155,10 +58177,10 @@ agz ahn ahj acp -aZq +eFr aiX aiX -akN +iis afS amg ahj @@ -58167,11 +58189,11 @@ afS aoT acp aqM -buP -buP +gdK +gdK aqL -att -atW +yej +vGN atr atr arU @@ -58202,7 +58224,7 @@ aQV aRT aof aTV -mGS +mIc tap aof aNK @@ -58351,9 +58373,9 @@ aao aao aao aao -lVm -abU -acc +dQR +elh +kfx asc acq acz @@ -58372,10 +58394,10 @@ agz ahn aic acp -aZP -bhM -bhM -akO +jTa +raU +raU +woK afS amg aic @@ -58384,7 +58406,7 @@ acp acp acp aqM -buP +gdK aqL aqL asc @@ -58473,9 +58495,9 @@ duA ykR iaC pWs -vVz -vVz -vVz +lCt +lCt +lCt jxA duA ykR @@ -58568,14 +58590,14 @@ aao aao aao aao -abY -lVm -acc +tjX +dQR +kfx asc acp acy -acE -acE +cGc +cGc acC acC adp @@ -58784,10 +58806,10 @@ aao aao aao aao -buP -avK -lVm -mWI +gdK +lOL +dQR +iXx asc acp acp @@ -58823,7 +58845,7 @@ aqL aqL asc alD -aqF +uDt arR arR aqw @@ -59003,8 +59025,8 @@ aao aao aqL aqL -heI -lVm +lbh +dQR ags alF alF @@ -59040,7 +59062,7 @@ aqL aqL asc alD -auO +rfX avy aqw avy @@ -59220,9 +59242,9 @@ aao aao aqL aqL -heI -lVm -acc +lbh +dQR +kfx aqL arp acP @@ -59255,12 +59277,12 @@ aqM aqL aqL aqL -atu +hGv alu alu -aYe -awj -aYe +pzC +fni +pzC alu alu ayR @@ -59309,9 +59331,9 @@ aBR tHl bhi dbi -lSL -lSL -qyq +oWk +oWk +fTg aHD aIn bjD @@ -59437,9 +59459,9 @@ aao aqL aqL aqL -heI -lVm -tlj +lbh +dQR +bGC aqL arp acP @@ -59472,13 +59494,13 @@ aqM aqL aqL aqL -aqE +cBq alu -atv +pIl avz aqw auP -wGP +qoQ alu ayS azv @@ -59526,9 +59548,9 @@ aBR bhi bhi dbi -nHb -lAK -bYp +qby +stZ +cHz aHD eRI ofX @@ -59651,15 +59673,15 @@ aao aao aao aqL -ann +nnz aqL -abL -lVm -dlr -dtX +rVE +dQR +dXK +hQO aqL arp -dwe +ldD acP acP acP @@ -59691,11 +59713,11 @@ aqL aqL asc alu -auR +oji avA aqw awW -axD +tbS alu ayT awi @@ -59743,9 +59765,9 @@ aBR bhi bhi dbi -nHb -nHb -twS +qby +qby +kWW aHF mSn bjE @@ -59869,16 +59891,16 @@ aao aao aqL aqL -aac -lVm -igi -oOt -oOt -eIB -kos -oOt -oOt -stJ +wWE +dQR +eWv +fPe +fPe +wss +akP +fPe +fPe +aus acP acP acP @@ -59908,11 +59930,11 @@ aqL aqL asc alu -auR +oji avA aqw awW -axD +tbS alu ayU aqw @@ -59960,9 +59982,9 @@ aBR eTj bhi dbi -mdU -lRu -uSp +pTo +uyd +gMj aHF aMg bjF @@ -60084,22 +60106,22 @@ aao aao aao aao -aac -ajD -lVm -lVm -isr +wWE +nlB +dQR +dQR +nZB pRP -vwP -pEp -iXL -qez +iRf +akh +mhV +oMf pRP -gKG +aWy acP acP acP -chy +jeO asc acp afn @@ -60125,11 +60147,11 @@ aqL aqL asc alu -auS +gts avA aqw awW -axD +tbS alu alu azH @@ -60301,22 +60323,22 @@ aao aao aao aao -abY -lVm -lVm -dlr -iRf +tjX +dQR +dQR +dXK +aaB pRP -vAy -qNT -qNT -saH -qez -gKG +sWh +hFv +hFv +kAs +oMf +aWy acP acP acP -eVZ +bJQ aao acp afo @@ -60342,13 +60364,13 @@ aqL aqL asc alu -auR +oji avA -laX +vfo awW -axD +tbS alu -vQe +kRy ayV ayV alu @@ -60518,21 +60540,21 @@ aao aao aao aao -acG -lVm -acc -dNH +qMS +dQR +kfx +fsT +aaB +oMf +dkY +qDZ +hJH +lqp iRf -qez -wpP -tGJ -rmk -jWa -vwP -gKG +aWy acP acP -chy +jeO aqL aao acp @@ -60557,15 +60579,15 @@ aqM aqL aqL asa -atu +hGv alu -auT +jRH avB -awm +pOt awX -axE -ccU -ayW +gej +uST +vhw ayV ayV alu @@ -60736,19 +60758,19 @@ aao aao aao aao -abY -acc +tjX +kfx aqL -isr -qez -wpP -tGJ -tGJ -xyw -vwP -gKG +nZB +oMf +dkY +qDZ +qDZ +cnG +iRf +aWy acP -chy +jeO aqL aao aao @@ -60953,17 +60975,17 @@ aao aao aao aao -abY -acc +tjX +kfx aqL -isr +nZB pRP -wDK -vRJ -vRJ -kpd -qez -oSN +iXs +scK +scK +oUY +oMf +wmN acP agq aao @@ -60987,7 +61009,7 @@ anz aoj aoj apH -aqG +kVR aqL arp acP @@ -61170,17 +61192,17 @@ aao aao aao aao -acG -acG -fbF -iRf +qMS +qMS +vBI +aaB pRP -qez -vwP -qez -qez +oMf +iRf +oMf +oMf pRP -oSN +wmN acP asc acp @@ -61388,16 +61410,16 @@ aao aao aao aao -abY -acc -iZh -szg -szg -kdd -kdd -kdd -szg -cfS +tjX +kfx +cgO +pJt +pJt +gPc +gPc +gPc +pJt +uIz acP asc acp @@ -61606,10 +61628,10 @@ aao aao aao aao -lVm -ajD -ajD -fbF +dQR +nlB +nlB +vBI arp acP acP @@ -61824,9 +61846,9 @@ aao aao aao aao -lVm -lVm -acc +dQR +dQR +kfx arp acP acP @@ -62039,11 +62061,11 @@ aao aao aao aao -abY -lVm -lVm -lVm -dtX +tjX +dQR +dQR +dQR +hQO arp acP acP @@ -62256,13 +62278,13 @@ aao aao aao aao -abY -abN -lVm -dtX +tjX +vHU +dQR +hQO aqL aqL -dzs +lUa acP acP acP @@ -62277,7 +62299,7 @@ acp acp acp acp -aiN +akr adS ajL akq @@ -62473,9 +62495,9 @@ aao aao aao aao -acG -lVm -acc +qMS +dQR +kfx aqL aqL aqL @@ -62497,7 +62519,7 @@ adS ahk adk ajL -akr +aiN acr adS ajL @@ -62691,10 +62713,10 @@ aao aao aao aao -abY -acc +tjX +kfx aqL -ann +nnz aqL arp acP @@ -62782,12 +62804,12 @@ aIn aKt aMc aHF -bhS +tHB aVp aVp aVp aVp -bke +vIQ bku bmF wtC @@ -62908,13 +62930,13 @@ aao aao aao aao -abY -qmY -fbF +tjX +ciG +vBI aqL aqL aqL -dzs +lUa acP acP acP @@ -62933,12 +62955,12 @@ aje ajM adS acr -aly -amv +cLq +lym alx adS -aly -aly +cLq +cLq acr aqK arq @@ -62959,7 +62981,7 @@ asJ aua asJ aDQ -aEL +eYH aws amI aHD @@ -63125,9 +63147,9 @@ aao aao aao aao -abY -abY -acc +tjX +tjX +kfx aqL aqL aqL @@ -63137,7 +63159,7 @@ acP acP asc acq -adX +jAR aeu adc afs @@ -63217,8 +63239,8 @@ aBR aMc aHF aMg -shf -shf +lID +lID aMg aHF aHF @@ -63342,19 +63364,19 @@ aao aao aao aao -abY -abY -dtX +tjX +tjX +hQO aqL aqL aao aqL -dzs +lUa acP acP asc acp -adY +mtM jGn adW adW @@ -63373,7 +63395,7 @@ adS anD alA alA -aAF +sVB aqM aqL ase @@ -63433,11 +63455,11 @@ aIm aBR aMc aHD -rsQ +dPJ gpR gpR -rsQ -jQe +dPJ +nvn bkf awp bkH @@ -63558,9 +63580,9 @@ aao aao aao aao -arv -lVm -dtX +nEH +dQR +hQO aqL aqL aqL @@ -63592,7 +63614,7 @@ adk adS acr aqM -arr +qwm asc amI aty @@ -63649,12 +63671,12 @@ aFM aHC aBR aMc -auX +fHw gpR gpR gpR gpR -pri +wBu aHF awM awM @@ -63714,7 +63736,7 @@ byM ycP rTq aBE -bww +dmO bww bww hkv @@ -63775,8 +63797,8 @@ aao aao aao aao -abY -acc +tjX +kfx aqL aqL aqL @@ -63826,7 +63848,7 @@ amn amn amn cgt -wLg +eqr amn amn amn @@ -63866,12 +63888,12 @@ aHF aHD aBR aMc -auX +fHw gpR gpR gpR gpR -pri +wBu aHF awM bkI @@ -63931,7 +63953,7 @@ aNx bAA bDi aBE -gOf +hHG bBv bww bBN @@ -63992,9 +64014,9 @@ aao aao aao aao -lVm -lVm -fbF +dQR +dQR +vBI aqL aqL aqL @@ -64032,7 +64054,7 @@ amn atz atY amn -azX +pvj asJ awY axH @@ -64041,11 +64063,11 @@ asJ azT amn aBj -aBV +qYB aBk aBk aBj -aFQ +rKy amn aHD aIp @@ -64084,10 +64106,10 @@ aHD aIm aMc aHD -rsQ +dPJ gpR -fpt -rsQ +oOw +dPJ aMc aHF awM @@ -64148,7 +64170,7 @@ ofJ aOP aOP aBE -gOf +hHG bww bww bBO @@ -64208,23 +64230,23 @@ aao aao aao aao -arv -lVm -lVm -lVm -fbF +nEH +dQR +dQR +dQR +vBI aqL -buP +gdK aqL aqL arp acP acP -ilN -qJL -qJL -qJL -ilN +lPg +mtS +mtS +mtS +lPg acP asc acr @@ -64262,7 +64284,7 @@ aBW aCR aBW aEM -cnO +eWB amn aHD aBR @@ -64302,8 +64324,8 @@ aFM aHF aHF aCN -usF -fdC +lRC +bSy aCN aHF aHF @@ -64425,23 +64447,23 @@ aao aao aao aao -avK -lVm -lVm -abX -lVm -ajD -fbF +lOL +dQR +dQR +cPg +dQR +nlB +vBI aqL aqL arp acP acP -dhT -fVm -eiS -xah -nVa +rZU +khK +taV +dVM +rVT acP ags alF @@ -64643,22 +64665,22 @@ aao aao aao aqL -avK -dlr -lVm -lVm -lVm -tlj +lOL +dXK +dQR +dQR +dQR +bGC aqL aqL arp acP acP -dhT -fVm +rZU +khK ahS -xah -nVa +dVM +rVT acP acP acP @@ -64689,14 +64711,14 @@ dJc axK ayp asJ -erf +jph amn aBm -hul +mBc aBk aBk aEN -aFR +ibV amn aHD aBR @@ -64736,8 +64758,8 @@ aIn aMc aHF aMg -shf -shf +lID +lID aMg aHF aHF @@ -64862,20 +64884,20 @@ aao aqL aqL aqL -heI -lVm -lVm -acc +lbh +dQR +dQR +kfx aqL aqL arp acP acP -dhT +rZU ahS ahS -jvh -nVa +qse +rVT acP acP acP @@ -64909,7 +64931,7 @@ asJ azW amn aBn -jku +jOj aBk aBk amn @@ -64952,11 +64974,11 @@ aHD aWJ aMc aHD -rsQ +dPJ gpR gpR -rsQ -jQe +dPJ +nvn aHF awp bkL @@ -65077,12 +65099,12 @@ aao aao aao aqL -buP +gdK aqL -heI -lVm -lVm -dtX +lbh +dQR +dQR +hQO aqL aqL arp @@ -65124,13 +65146,13 @@ awZ ayp asJ aws -gnk +enJ aBo aBW aBk aBk aEN -nGU +ozO amn aHD aBR @@ -65168,12 +65190,12 @@ aMg axW aIp aMc -auX +fHw gpR gpR gpR gpR -pri +wBu aHF awp bkM @@ -65296,20 +65318,20 @@ aao aqL aqL aqL -heI -lVm -acc +lbh +dQR +kfx aqL aqL aqL arp acP acP -dhT +rZU ahS ahS -fVm -nVa +khK +rVT acP acP acP @@ -65341,7 +65363,7 @@ axd asJ asJ azY -aAD +qus aBp aBW aBk @@ -65385,12 +65407,12 @@ aKt aIp aBR aMc -auX +fHw gpR gpR gpR gpR -pri +wBu aHF awp qeK @@ -65402,8 +65424,8 @@ bnH yar box yar -iyd -iyd +nzB +nzB eKU yar yar @@ -65511,22 +65533,22 @@ aao aao aao aao -ann -aac -lVm -lVm -acc +nnz +wWE +dQR +dQR +kfx aqL aqL aqL arp acP acP -dhT +rZU ahS -fVm -eiS -nVa +khK +taV +rVT acP acP acP @@ -65557,14 +65579,14 @@ aua aua awn aua -ooP +ltK amn aBq aBq -shm +szZ aBk aEN -pGN +nOe amn aHF aFM @@ -65603,10 +65625,10 @@ aBR aBR aWW aHD -rsQ +dPJ gpR -fpt -rsQ +oOw +dPJ aMc aHF awp @@ -65729,21 +65751,21 @@ aao aao aao aqL -heI -lVm -lVm -acc -dNH +lbh +dQR +dQR +kfx +fsT aqL aqL aqL -dzs +lUa acP -dhT -ruF -foj -eyA -nVa +rZU +hDK +xQd +eVM +rVT acP acP acP @@ -65821,8 +65843,8 @@ aBR aMc aHF aCN -usF -fdC +lRC +bSy aCN aHF aHF @@ -65947,20 +65969,20 @@ aao aao aao aao -abY -lVm -dtX +tjX +dQR +hQO aqL aqL aqL aqL arp acP -ilN -mpn -mpn -mpn -ilN +lPg +vgE +vgE +vgE +lPg acP acP acP @@ -65988,7 +66010,7 @@ amn avG awq awq -aCQ +tdz awq axM aws @@ -66164,15 +66186,15 @@ aao aao aao aao -acG -acc +qMS +kfx aqL aqL aqL aao aqL aqL -dzs +lUa acP acP acP @@ -66204,7 +66226,7 @@ atY amn asJ awq -axf +mnv axN ays axN @@ -66382,8 +66404,8 @@ aao aao aao aao -acc -ann +kfx +nnz aqL aao aao @@ -66599,7 +66621,7 @@ aao aao aao aao -acc +kfx aqL aqL aqL @@ -66636,7 +66658,7 @@ amI aty atY amn -azX +pvj awr axg axO @@ -66692,7 +66714,7 @@ aHF aHF aHF asv -wQD +bjJ bgx bkw blX @@ -66816,15 +66838,15 @@ aao aao aao aao -lVm -fbF +dQR +vBI aqL aqL aqL aqL aqL aqL -dzs +lUa acP acP acP @@ -66899,8 +66921,8 @@ bdv bac bcf asv -bff -bfK +lNp +gAX bge bgs bfM @@ -67033,18 +67055,18 @@ aao aao aao aao -lVm -abY -ajD -xWI -ajD -fbF +dQR +tjX +nlB +dOZ +nlB +vBI aqL aqL aqL -iSc -iSc -dzs +bQh +bQh +lUa acP acP acP @@ -67076,11 +67098,11 @@ axh amn amn anJ -aAc +mbz anJ anJ anJ -eRW +fbB amn amn amn @@ -67250,29 +67272,29 @@ aao aao aao aao -lVm -lVm -mWI -lVm -lVm -lVm -fbF +dQR +dQR +iXx +dQR +dQR +dQR +vBI aqL aqL aqL aqL aqL -dzs +lUa acP acP acP acP asc -ilN -gGC -gGC -gGC -gGC +lPg +hHa +hHa +hHa +hHa ahS ahS ahS @@ -67333,7 +67355,7 @@ bdx bdx bdx asv -bfh +bfK bfM bgc bgt @@ -67468,27 +67490,27 @@ aao aao aao aao -lVm -lVm -acG -lVm -lVm -dlr -abU -abU -fbF +dQR +dQR +qMS +dQR +dQR +dXK +elh +elh +vBI aqL aqL aqL -dzs +lUa acP acP acP asc -gGC -ruF -ruF -fVm +hHa +hDK +hDK +khK ahS ahS ahS @@ -67510,8 +67532,8 @@ apc apc ars anJ -aAe -aAG +hhX +cYy aCb aCb aCU @@ -67686,14 +67708,14 @@ aao aao aao aao -lVm -lVm -lVm -dtX +dQR +dQR +dQR +hQO aqL -avK -dlr -tlj +lOL +dXK +bGC aqL aqL aqL @@ -67702,12 +67724,12 @@ acP acP acP asc -gGC -eiS -fVm +hHa +taV +khK ahS ahS -fVm +khK ahS ahS aku @@ -67905,26 +67927,26 @@ aao aao aao aao -acc +kfx aqL aqL aqL aqL -heI -fbF +lbh +vBI aqL aqL aqL -dzs +lUa acP acP asc -gGC -foj +hHa +xQd ahS ahS -fVm -fVm +khK +khK ahS ahS ako @@ -68122,34 +68144,34 @@ aao aao aao aao -acc +kfx aqL -buP +gdK aqL aqL -heI -lVm -fbF +lbh +dQR +vBI aqL aqL arp acP acP asc -gGC +hHa ahS ahS ahS -fVm +khK ahS ahS -fVm +khK ako -aor +eNe ape apN ape -art +uVi ako asL atD @@ -68339,18 +68361,18 @@ aao aao aao aao -lVm -fbF +dQR +vBI aqL -dNH +fsT aqL -heI -lVm -tlj +lbh +dQR +bGC aqL aqL aqL -dzs +lUa acP asc ahS @@ -68360,19 +68382,19 @@ ahS ahS ahS ahS -fVm +khK ako -aos +xzb ape apN ape -pBh +pgP ako asM atE apc ako -isk +tgf aop apc axR @@ -68381,7 +68403,7 @@ azc ako aAJ apo -tPr +sqt anJ aEa aER @@ -68556,14 +68578,14 @@ aao aao aao aao -lVm -acc +dQR +kfx aqL aqL -aac -lVm -abX -dtX +wWE +dQR +cPg +hQO aqL aao aqL @@ -68571,25 +68593,25 @@ arp acP asc ahS -fVm -fVm +khK +khK ahS ahS ahS -fVm -eiS +khK +taV ako ape ape -sVY +vZh ape -oOM +ied ako asN atE apc ako -iaq +xXT aop apc ako @@ -68774,39 +68796,39 @@ aao aao aao aao -lVm -ajD -ajD -lVm -lVm -acc -dNH +dQR +nlB +nlB +dQR +dQR +kfx +fsT aqL aao aao aqL -dzs +lUa asc -gGC +hHa ahS -fVm +khK ahS ahS -fVm -foj -foj +khK +xQd +xQd ako ape -apf +mfG apO aqR -aru +tFt ako asO atE apc ako -mcc +hto aop axi ako @@ -68989,14 +69011,14 @@ aao aao aao aao -arv -abU -abU -lVm -lVm -lVm -lVm -dtX +nEH +elh +elh +dQR +dQR +dQR +dQR +hQO aqL aqL aqL @@ -69004,16 +69026,16 @@ aao aqL arp asc -gGC +hHa ahS ahS ahS -xah +dVM aao aao aao ako -xrN +jNE ape eJU aqS @@ -69205,14 +69227,14 @@ aao aao aao aao -dlr -dlr -abW -lVm -lVm -lVm -lVm -acc +dXK +dXK +wbY +dQR +dQR +dQR +dQR +kfx aqL aqL aqL @@ -69221,16 +69243,16 @@ aqL aqL arp asc -gGC -foj -ruF +hHa +xQd +hDK aao aao aao aao aao ako -aot +ygN apg apP ape @@ -69250,7 +69272,7 @@ ako aAK apo apo -aCV +kMk apo apo apo @@ -69422,23 +69444,23 @@ aao aao aao aao -ann +nnz aqL -avK -dlr -lVm -lVm -abW -acc +lOL +dXK +dQR +dQR +wbY +kfx aqL -buP +gdK aqL aqL aqL aqL aqL asc -gGC +hHa aao aao aao @@ -69447,7 +69469,7 @@ aao aao aao ako -xrN +jNE ape apN aqT @@ -69473,7 +69495,7 @@ apo apo apo apo -awy +iOR apo apo apo @@ -69643,10 +69665,10 @@ aqL aqL aqL aqL -avK -lVm -lVm -acc +lOL +dQR +dQR +kfx aqL aqL aao @@ -69861,7 +69883,7 @@ aqL aqL aqL aqL -heI +lbh aad alJ akX @@ -70073,15 +70095,15 @@ aao aao aao aao -buP +gdK aqL -iOL -dNH +dka +fsT aqL hKM aad aad -hdJ +dTi aao aao aao @@ -70117,12 +70139,12 @@ ako ako aAK apo -nIs -aCX -uHx -aES -gAE -aGK +anU +nWG +tpU +jay +aCf +ilH anT aIw msq @@ -70329,12 +70351,12 @@ avI apc axk axS -aBx -aze -aBx +mnY +kwq +mnY aAL -aBx -aCg +mnY +fDf aCY aCZ aET @@ -70509,11 +70531,11 @@ aao aao aao aao -oeT -ptV +cAf +eWE aad aad -qhS +acb abM aao aao @@ -70556,7 +70578,7 @@ aCo aCZ aEU aMQ -uXO +gAE anT aIw aJs @@ -70727,11 +70749,11 @@ aao aao aao aao -bup -tQY -fBU -som -gtG +qQr +oFj +jJO +bVX +fKO aao aao aao @@ -70768,7 +70790,7 @@ arD arD aMk apo -nIs +anU aCZ aCZ aQa @@ -70944,11 +70966,11 @@ aao aao aao aao -vMb -rTr +abY +dtX akX akX -eAG +jSe aao aao aao @@ -70985,12 +71007,12 @@ arD arD aMk apo -nIs -gYM +anU +fXR aCo aEU aCZ -gAE +aCf anT aIy aIC @@ -71160,12 +71182,12 @@ aao aao aao abq -tyH -xHQ -cVT -cVT +iGY +pri +ipo +ipo rYt -cVT +ipo aao aao aao @@ -71202,12 +71224,12 @@ arD arD aMk apo -nIs -gYM +anU +fXR aCo aEW aCZ -gAE +aCf anT aIz aIC @@ -71419,12 +71441,12 @@ arD arD aMk apo -nIs -gYM -aEf +anU +fXR +rNd aEU aCZ -gAE +aCf anT bix aIC @@ -71599,7 +71621,7 @@ aad wMp akX akX -oeT +cAf akX aao aao @@ -71636,12 +71658,12 @@ arD arD aMk apo -nIs -gAE +anU +aCf aCZ aQa aCZ -aGK +ilH anT aIz aIC @@ -72061,7 +72083,7 @@ akL akL akL akL -wzc +cQO apc avJ ako @@ -72069,7 +72091,7 @@ aBu arD arD aMk -nIs +anU aCi aCZ aCZ @@ -72277,16 +72299,16 @@ apU asX aoB auf -uQY -uey -uey -uey +uwV +ant +ant +ant ako aBu arD arD aMk -nIs +anU aCj aCo aCo @@ -72495,15 +72517,15 @@ aoB apU aoB akL -dMT +gbA aqa aqa aqa -ant -aKB -vis +rzR +cHH +aCW aMk -nIs +anU aOc aCo aCo @@ -72712,13 +72734,13 @@ asY aoB aug akL -tKE +xgm aCc aCc aCc aCc aCc -gwb +aCd aMk anT aCl @@ -72931,11 +72953,11 @@ auh akL aBu aCc -knF -aDR -aKA -aAh -gwb +pLH +lIS +jmD +ivW +aCd aMk anT aCm @@ -73148,13 +73170,13 @@ akL akL aBu aCc -knF -aDT +pLH +pgh aao -kCm -aAh +kzF +ivW aMk -nIs +anU aCn aCZ aCo @@ -73335,12 +73357,12 @@ aao aao aao aao -aEe -kpf -kpf -kpf -aEe -aEe +mEC +fGK +fGK +fGK +mEC +mEC aao aao aao @@ -73363,15 +73385,15 @@ ata ata ata aqa -ant +rzR aCc aCc -aDT +pgh aao aao -ayz +fEE aMk -nIs +anU aCo aCZ aEg @@ -73551,13 +73573,13 @@ aao aao aao aao -aoa -aFZ -aFZ -aFZ -aFZ -aFZ -aoa +tqS +xWl +xWl +xWl +xWl +xWl +tqS aao aao aao @@ -73575,20 +73597,20 @@ aao aao aao aCc -asm +oFx aCc aCc aCc -knF +pLH aCc aCc aCc -aFS -kCm +ukW +kzF aao -ayz +fEE aMk -nIs +anU aCp aDb aEh @@ -73768,13 +73790,13 @@ aao aao aao aao -aoa -bjJ -qtx -qtx -qtx -jMB -aoa +tqS +sFv +xRn +xRn +xRn +dgH +tqS aao aao aao @@ -73794,16 +73816,16 @@ aao aao aao aao -oWM -oWM +hgr +hgr aao aao -knF +pLH aCc -knF -aFS -dWg -bSc +pLH +ukW +rrF +kpd aMk anW anW @@ -73985,13 +74007,13 @@ aao aao aao aao -aoa -aFZ -aFZ -aFZ -aFZ -aFZ -aoa +tqS +xWl +xWl +xWl +xWl +xWl +tqS aao aao aao @@ -74010,17 +74032,17 @@ aao aao aao aao -anU -kCm -kCm -gbt +tQj +kzF +kzF +lAC aao aao aCc aCc aCc aCc -knF +pLH bMz apo anW @@ -74202,12 +74224,12 @@ aao aao aao aao -aCf -aCf -aCf -aCf -aCf -aCf +azF +azF +azF +azF +azF +azF aao aao tQw @@ -74225,14 +74247,14 @@ tQw aao aao aao -ack -tng -arz -anU -kCm -ayz -knF -whv +bQG +vXJ +khB +tQj +kzF +fEE +pLH +ovQ aCc aCc aCc @@ -74441,21 +74463,21 @@ tQw tQw aao aao -tVm -tng -tng -tng -ack -awf -ayz -knF -whv +fxZ +vXJ +vXJ +vXJ +bQG +jAX +fEE +pLH +ovQ aCc aCc -knF +pLH aCc aCc -knF +pLH aMk anW aDc @@ -74657,18 +74679,18 @@ tQw tQw tQw aao -ack -tng -tng -tng -tng -arz -awf -kCm -aAh -kLW +bQG +vXJ +vXJ +vXJ +vXJ +khB +jAX +kzF +ivW +vkf aCc -knF +pLH aCc aCc aCc @@ -74874,16 +74896,16 @@ tQw ahw tQw tQw -fNh -tng -tng -tng -tng -tng +idT +vXJ +vXJ +vXJ +vXJ +vXJ aao aao -kCm -dTa +kzF +lSb aCc aCc aCc @@ -75091,19 +75113,19 @@ tQw ujC ujC tQw -vVB -ack -tng -tng +ukv +bQG +vXJ +vXJ aao aao aao aao aao -aBY -aAh -knF -knF +pJn +ivW +pLH +pLH aCc aCc aCc @@ -75309,18 +75331,18 @@ ujC ujC tQw tQw -tCQ -tCQ +mda +mda aao aao aao -kCm -gbt -kCm -kCm -gbt -aCd -aAh +kzF +lAC +kzF +kzF +lAC +jPQ +ivW aCc aCc aCc @@ -75532,9 +75554,9 @@ aao aao aao aao -kCm -kCm -kCm +kzF +kzF +kzF aao aao aao @@ -75749,14 +75771,14 @@ tQw aao aao aao -kCm -gbt +kzF +lAC aao aao aao aao -knF -knF +pLH +pLH aCc aMk anW @@ -75974,7 +75996,7 @@ aao aao aao aao -coc +rLM aMk anW anW @@ -77907,7 +77929,7 @@ aev adZ aao gNH -biX +lUM aev aev aoE @@ -78124,13 +78146,13 @@ aev adZ aao gNH -biX +lUM aev anM aqb aps adZ -aqZ +tkY arF aso arF @@ -81377,7 +81399,7 @@ adZ adZ adZ aeQ -wQu +ald daB amO afy diff --git a/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm b/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm index 8f6063172ff5..7b28c00cc0d6 100644 --- a/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm +++ b/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm @@ -916,9 +916,8 @@ }, /area/bigredv2/outside/engineering) "dy" = ( -/obj/structure/machinery/power/geothermal{ - name = "Reactor Turbine"; - power_generation_max = 1e+006 +/obj/structure/machinery/power/reactor/colony{ + name = "Reactor Turbine" }, /turf/open/floor/plating, /area/bigredv2/outside/engineering) diff --git a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm index 7acf197b3ddb..19f720daf929 100644 --- a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm +++ b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm @@ -51,11 +51,6 @@ icon_state = "darkish" }, /area/bigredv2/outside/chapel) -"aj" = ( -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/chapel) "ak" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -550,7 +545,7 @@ ab "} (10,1,1) = {" ac -aj +ae av aI aW diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm index 40573911281f..9c09a95e9f94 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -10039,20 +10039,6 @@ icon_state = "bluegreycorner" }, /area/corsat/theta/airlock/east) -"aCR" = ( -/obj/structure/machinery/power/geothermal{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - fail_rate = 4; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/southeast/generator) "aCS" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Reception Desk"; @@ -10653,20 +10639,6 @@ icon_state = "retrosquares" }, /area/corsat/omega/airlocknorth) -"aEp" = ( -/obj/structure/machinery/power/geothermal{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - fail_rate = 4; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering/core) "aEq" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, @@ -10675,22 +10647,6 @@ /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/cargo/lobby) -"aEs" = ( -/obj/structure/machinery/power/geothermal{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - fail_rate = 4; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "0-8"; - layer = 2.1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering/core) "aEt" = ( /turf/open/floor/corsat{ icon_state = "arrow_west" @@ -10724,22 +10680,6 @@ icon_state = "darkgreen" }, /area/corsat/gamma/hangar/monorail) -"aEA" = ( -/obj/structure/machinery/power/geothermal{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - fail_rate = 4; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "0-8"; - layer = 2.1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/southeast/generator) "aEC" = ( /turf/open/floor/corsat{ dir = 4; @@ -11295,6 +11235,9 @@ /obj/structure/machinery/light{ dir = 1 }, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, /turf/open/floor/corsat{ dir = 1; icon_state = "yellow" @@ -15046,6 +14989,10 @@ /turf/open/floor/plating, /area/corsat/gamma/engineering/lobby) "aPX" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, /turf/open/floor/corsat{ dir = 1; icon_state = "yellow" @@ -18863,6 +18810,7 @@ /obj/structure/machinery/light{ dir = 1 }, +/obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -26593,15 +26541,6 @@ icon_state = "squares" }, /area/corsat/sigma/south/robotics) -"bwY" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/exosuit/main/max, -/obj/item/circuitboard/exosuit/peripherals/max/targeting, -/obj/item/circuitboard/exosuit/peripherals/max, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/robotics) "bwZ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/screwdriver, @@ -26720,12 +26659,6 @@ icon_state = "yellow" }, /area/corsat/sigma/south/robotics) -"bxr" = ( -/obj/structure/prop/mech/parts/durand_head, -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, -/area/corsat/sigma/south/robotics) "bxs" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/ripley_build_and_repair, @@ -26742,18 +26675,6 @@ icon_state = "yellow" }, /area/corsat/sigma/south/robotics) -"bxu" = ( -/obj/structure/prop/mech/parts/durand_right_arm, -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, -/area/corsat/sigma/south/robotics) -"bxv" = ( -/obj/structure/prop/mech/parts/durand_torso, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/sigma/south/robotics) "bxw" = ( /turf/open/floor/corsat{ icon_state = "arrow_east" @@ -26778,12 +26699,6 @@ icon_state = "cargo" }, /area/corsat/sigma/south/robotics) -"bxA" = ( -/obj/structure/prop/mech/parts/durand_left_leg, -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, -/area/corsat/sigma/south/robotics) "bxB" = ( /obj/structure/girder/displaced, /turf/open/floor/corsat, @@ -36821,6 +36736,7 @@ /obj/structure/machinery/camera/autoname{ network = list("gamma") }, +/obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/corsat{ dir = 1; icon_state = "yellow" @@ -37457,6 +37373,19 @@ icon_state = "whitetancorner" }, /area/corsat/sigma/dorms) +"drE" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/corsat/gamma/engineering/core) "drW" = ( /turf/open/floor/corsat{ dir = 8; @@ -38180,6 +38109,17 @@ icon_state = "bluegreycorner" }, /area/corsat/gamma/hangar/flightcontrol) +"dSc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "yellow" + }, +/area/corsat/gamma/engineering/core) "dSi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -40881,6 +40821,12 @@ icon_state = "yellow" }, /area/corsat/gamma/engineering) +"fTK" = ( +/obj/structure/prop/mech/parts/durand_left_leg, +/turf/open/floor/corsat{ + icon_state = "arrow_east" + }, +/area/corsat/sigma/south/robotics) "fTT" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -43752,6 +43698,21 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) +"hNL" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "0-8"; + layer = 2.1 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/corsat/gamma/engineering/core) "hOb" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome, @@ -45471,6 +45432,15 @@ "jfP" = ( /turf/closed/wall/biodome, /area/corsat/gamma/rnr) +"jfW" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/exosuit/main/max, +/obj/item/circuitboard/exosuit/peripherals/max/targeting, +/obj/item/circuitboard/exosuit/peripherals/max, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/corsat/sigma/south/robotics) "jgb" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/retractor, @@ -50626,6 +50596,12 @@ icon_state = "white" }, /area/corsat/gamma/residential/east) +"mZm" = ( +/obj/structure/prop/mech/parts/durand_head, +/turf/open/floor/corsat{ + icon_state = "arrow_north" + }, +/area/corsat/sigma/south/robotics) "naG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2; @@ -51771,6 +51747,15 @@ icon_state = "whitetan" }, /area/corsat/gamma/residential/west) +"nSp" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/exosuit/peripherals/alice, +/obj/item/circuitboard/exosuit/main/alice, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "yellow" + }, +/area/corsat/sigma/south/robotics) "nSA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -52647,6 +52632,12 @@ icon_state = "plate" }, /area/corsat/gamma/biodome/complex) +"oCt" = ( +/obj/structure/prop/mech/parts/durand_torso, +/turf/open/floor/corsat{ + icon_state = "cargo" + }, +/area/corsat/sigma/south/robotics) "oCz" = ( /obj/structure/machinery/light{ dir = 4 @@ -52925,6 +52916,15 @@ icon_state = "squares" }, /area/corsat/omega/complex) +"oNi" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/corsat/sigma/southeast/generator) "oNI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -53474,6 +53474,18 @@ icon_state = "squares" }, /area/corsat/omega/security) +"phl" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "yellow" + }, +/area/corsat/gamma/engineering/core) "phK" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat{ @@ -54277,6 +54289,14 @@ icon_state = "bluegrey" }, /area/corsat/sigma/south/offices) +"pUy" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/exosuit/peripherals/work_loader, +/obj/item/circuitboard/exosuit/peripherals/work_loader, +/turf/open/floor/corsat{ + icon_state = "yellow" + }, +/area/corsat/sigma/south/robotics) "pUA" = ( /turf/open/floor/corsat{ dir = 8; @@ -56471,6 +56491,13 @@ icon_state = "squares" }, /area/corsat/sigma/hangar/security) +"ryn" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "yellow" + }, +/area/corsat/gamma/engineering/core) "ryE" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/corsat{ @@ -57420,6 +57447,21 @@ icon_state = "red" }, /area/corsat/omega/hangar/security) +"sgN" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "0-8"; + layer = 2.1 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/corsat/sigma/southeast/generator) "sgX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -58828,14 +58870,6 @@ icon_state = "plate" }, /area/corsat/gamma/freezer) -"thp" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/exosuit/peripherals/work_loader, -/obj/item/circuitboard/exosuit/peripherals/work_loader, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) "thv" = ( /obj/structure/machinery/power/apc/high{ dir = 1; @@ -59862,15 +59896,6 @@ }, /turf/open/ice, /area/corsat/gamma/biodome) -"tWD" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/exosuit/peripherals/alice, -/obj/item/circuitboard/exosuit/main/alice, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) "tWM" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/corsat{ @@ -63615,6 +63640,12 @@ icon_state = "retrosquareslight" }, /area/corsat/gamma/sigmaremote) +"wKf" = ( +/obj/structure/prop/mech/parts/durand_right_arm, +/turf/open/floor/corsat{ + icon_state = "arrow_west" + }, +/area/corsat/sigma/south/robotics) "wKh" = ( /obj/structure/bed/chair{ dir = 8 @@ -65388,6 +65419,14 @@ icon_state = "squares" }, /area/corsat/sigma/cargo) +"yhI" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/corsat/sigma/southeast/generator) "yhK" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -65428,6 +65467,19 @@ icon_state = "purplewhite" }, /area/corsat/gamma/sigmaremote) +"ykJ" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/corsat/sigma/southeast/generator) "ykO" = ( /turf/open/floor/corsat{ icon_state = "red" @@ -93708,9 +93760,9 @@ apI aau axp aqa -aEp -aEp -aEp +drE +drE +drE axB apZ bnl @@ -94198,9 +94250,9 @@ apI aFY aqa aqa -aEp -aEp -aEp +drE +drE +drE sNG kRO ufN @@ -94930,7 +94982,7 @@ aEq aEq agK apI -aPX +ryn aqa aqa hKc @@ -95420,12 +95472,12 @@ ouk bqM buz apI -aFY +dSc aqa aqa -aEs -aEs -aEs +hNL +hNL +hNL sNG kRO ufN @@ -95665,7 +95717,7 @@ oUz boV bOc apI -aPX +phl aqa aqa aPS @@ -95913,9 +95965,9 @@ apI aau axp aqa -aEs -aEs -aEs +hNL +hNL +hNL orz iYR bnl @@ -109525,7 +109577,7 @@ pbS auJ bxm aCs -bxu +wKf bxy aMi fVm @@ -109769,8 +109821,8 @@ ahu vzc auJ bEg -bxr -bxv +mZm +oCt bxz pCi lLe @@ -110016,7 +110068,7 @@ auJ hqv aCs bxw -bxA +fTK fbs bxF auJ @@ -112231,7 +112283,7 @@ auJ bxT aMi aMi -thp +pUy auR ylo ylo @@ -112471,7 +112523,7 @@ aMi aMi aMi kjH -tWD +nSp auJ bvL bxW @@ -112716,7 +112768,7 @@ aMi uJq qAk kad -bwY +jfW aEx auR auR @@ -121738,11 +121790,11 @@ auO atl aCz unf -aCR +ykJ aCz -aCR +ykJ aCz -aCR +ykJ aEK sWd xoK @@ -122228,11 +122280,11 @@ aXX atl aZE unf -aEA +sgN aCz -aCR +ykJ aCz -aEA +sgN apE apN aqp @@ -122716,13 +122768,13 @@ alw alw alw atl -aCz +oNi unf -aEA +sgN aCz -aEA +sgN aCz -aEA +sgN aEK aEK aqU @@ -122961,7 +123013,7 @@ auU avf asX ati -aCz +yhI apz dFP dFP diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index dd9f0c499d8c..4230c9611dae 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -15509,21 +15509,6 @@ "aVw" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/interrogation) -"aVz" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/desert_dam/building/security/lobby) "aVA" = ( /obj/structure/machinery/light{ dir = 4 @@ -16767,12 +16752,6 @@ icon_state = "red" }, /area/desert_dam/building/security/lobby) -"aZt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) "aZu" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -18103,12 +18082,6 @@ dir = 4 }, /area/desert_dam/exterior/river/riverside_central_north) -"bdL" = ( -/obj/item/reagent_container/food/drinks/flask/detflask, -/obj/item/clothing/head/det_hat, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) "bdM" = ( /obj/item/ashtray/bronze, /obj/item/clothing/mask/cigarette/cigar, @@ -19719,22 +19692,6 @@ dir = 10 }, /area/desert_dam/interior/dam_interior/hanger) -"bja" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"bjb" = ( -/obj/structure/computerframe, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"bjc" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) "bjd" = ( /obj/structure/machinery/light{ dir = 4 @@ -19786,13 +19743,6 @@ icon_state = "swall3" }, /area/desert_dam/interior/dam_interior/hanger) -"bjl" = ( -/obj/structure/machinery/light, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"bjm" = ( -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) "bjn" = ( /obj/structure/machinery/light, /turf/open/floor/prison{ @@ -19871,10 +19821,6 @@ icon_state = "swall8" }, /area/desert_dam/interior/dam_interior/hanger) -"bjA" = ( -/obj/structure/machinery/door/unpowered/shuttle, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) "bjB" = ( /turf/closed/shuttle{ icon_state = "swall4" @@ -20024,24 +19970,6 @@ icon_state = "cement3" }, /area/desert_dam/interior/dam_interior/central_tunnel) -"bkd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"bke" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) "bkf" = ( /turf/open/desert/dirt{ dir = 5; @@ -20095,18 +20023,6 @@ icon_state = "swall0" }, /area/desert_dam/interior/dam_interior/hanger) -"bko" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"bkp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) "bkt" = ( /turf/open/desert/dirt{ dir = 8; @@ -20943,18 +20859,6 @@ icon_state = "floor_plate" }, /area/desert_dam/interior/dam_interior/hanger) -"bnd" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) -"bne" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/shuttle/can_surgery/red, -/area/desert_dam/interior/dam_interior/hanger) "bnf" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f9" @@ -24146,18 +24050,10 @@ icon_state = "warning" }, /area/desert_dam/interior/dam_interior/engine_room) -"bxE" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_room) "bxF" = ( /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/desert_dam/building/warehouse/breakroom) -"bxH" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/engine_room) "bxJ" = ( /turf/open/floor{ dir = 4; @@ -24450,20 +24346,6 @@ icon_state = "bright_clean2" }, /area/desert_dam/building/administration/hallway) -"byG" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/lattice{ - layer = 2.9 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_room) -"byJ" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/lattice{ - layer = 2.9 - }, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/engine_room) "byL" = ( /obj/structure/machinery/light{ dir = 4 @@ -25294,6 +25176,7 @@ }, /area/desert_dam/interior/dam_interior/engine_east_wing) "bBI" = ( +/obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/prison{ icon_state = "darkyellow2" }, @@ -27376,6 +27259,15 @@ }, /area/desert_dam/interior/dam_interior/atmos_storage) "bIz" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /turf/open/floor/prison{ icon_state = "green" }, @@ -31710,6 +31602,12 @@ icon_state = "vault" }, /area/desert_dam/building/security/prison) +"bWO" = ( +/obj/item/reagent_container/food/drinks/flask/detflask, +/obj/item/clothing/head/det_hat, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) "bWP" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/sand_overlay/sand2{ @@ -61065,6 +60963,13 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"gVo" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 + }, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/engine_room) "gWu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -61195,6 +61100,12 @@ icon_state = "cement_sunbleached1" }, /area/desert_dam/exterior/valley/south_valley_dam) +"hvD" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" + }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) "hvG" = ( /turf/open/desert/dirt{ dir = 4; @@ -61292,6 +61203,10 @@ icon_state = "cement_sunbleached13" }, /area/desert_dam/exterior/valley/valley_telecoms) +"hOt" = ( +/obj/structure/computerframe, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) "hOv" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -61457,6 +61372,13 @@ icon_state = "whitegreen" }, /area/desert_dam/building/medical/emergency_room) +"iiY" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/engine_room) "ijc" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ @@ -61722,6 +61644,10 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/telecomm/lz2_storage) +"jdT" = ( +/obj/structure/machinery/light, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) "jfA" = ( /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, @@ -61845,6 +61771,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/desert_dam/building/hydroponics/hydroponics_storage) +"jIQ" = ( +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) "jJa" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -62097,6 +62026,10 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_hydro) +"kOC" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/engine_room) "kOR" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -62696,6 +62629,21 @@ icon_state = "floor_plate" }, /area/desert_dam/interior/dam_interior/hanger) +"mKZ" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison{ + dir = 5; + icon_state = "red" + }, +/area/desert_dam/building/security/lobby) "mMm" = ( /turf/open/desert/dirt{ dir = 5; @@ -63147,6 +63095,10 @@ "ozu" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"ozQ" = ( +/obj/structure/machinery/door/unpowered/shuttle, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) "oAM" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -63204,6 +63156,12 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_hydro) +"oJW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) "oKG" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal5" @@ -63267,6 +63225,10 @@ icon_state = "wood" }, /area/desert_dam/building/dorms/hallway_northwing) +"oWx" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/engine_room) "oXx" = ( /obj/structure/machinery/colony_floodlight, /turf/open/asphalt{ @@ -63634,6 +63596,15 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/bar_valley_dam) +"qmn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) "qmy" = ( /obj/structure/surface/rack, /turf/open/floor/sandstone/runed, @@ -64244,6 +64215,15 @@ icon_state = "desert_transition_corner1" }, /area/desert_dam/exterior/valley/bar_valley_dam) +"sjN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) "skB" = ( /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_hydro) @@ -64331,6 +64311,12 @@ icon_state = "bright_clean2" }, /area/desert_dam/interior/lab_northeast/east_lab_workshop) +"swK" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" + }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) "sye" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt/cement, @@ -64365,6 +64351,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"sFQ" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" + }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"sGP" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" + }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) "sHk" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/dirt, @@ -65469,6 +65467,12 @@ icon_state = "white" }, /area/desert_dam/interior/dam_interior/garage) +"wta" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) "wud" = ( /obj/structure/disposalpipe/segment, /turf/open/floor{ @@ -65541,6 +65545,12 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_crashsite) +"wLq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) "wLI" = ( /turf/open/asphalt/cement{ icon_state = "cement1" @@ -71580,7 +71590,7 @@ bjk bjk bjk blx -bjA +ozQ bmD bnc bhP @@ -71806,17 +71816,17 @@ bdD bhQ bhP asR -bja -bjl +sFQ +jdT bjz -bkd -bko -bko -bko -bkd -bjm -bko -bnd +qmn +wta +wta +wta +qmn +jIQ +wta +hvD bnc bjB bhP @@ -72040,17 +72050,17 @@ bdD bhP bhP vLw -bjb -bjm -bjA -bjm -bjm -bjm -bjm -bjm -bjm -bjm -bjm +hOt +jIQ +ozQ +jIQ +jIQ +jIQ +jIQ +jIQ +jIQ +jIQ +jIQ bnH boy bhP @@ -72274,17 +72284,17 @@ bdD bhR mKW biG -bjc -bjl +sGP +jdT bjB -bke -bkp -bkp -bkp -bke -bjm -bkp -bne +sjN +wLq +wLq +wLq +sjN +jIQ +wLq +swK bnf bjz bhP @@ -72516,7 +72526,7 @@ bjk bjk bjk blx -bjA +ozQ bmD bnf bhP @@ -74450,7 +74460,7 @@ aSI chG ceA act -aVz +mKZ aXD aXD aXD @@ -74921,9 +74931,9 @@ ceA aVB aXE aZJ -bdL +bWO bjI -aZt +oJW aVB boW bqy @@ -93120,9 +93130,9 @@ bQF bCs bSY bwu -bxE -byG -bxE +kOC +iiY +kOC bAK bwv bZQ @@ -93588,9 +93598,9 @@ bSY bCs bSY bwu -bxE -byG -bxE +kOC +iiY +kOC bAK bwv bZQ @@ -94524,9 +94534,9 @@ bTi bCy bTi bwu -bxH -byJ -bxH +oWx +gVo +oWx bAK bwv caI @@ -94992,9 +95002,9 @@ bTi bCy bTi bwu -bxH -byJ -bxH +oWx +gVo +oWx bAK bwv caI @@ -95928,9 +95938,9 @@ bTi bCy bTi bwu -bxH -byJ -bxH +oWx +gVo +oWx bAK bwv caI @@ -96396,9 +96406,9 @@ bYF bCy bTi bwu -bxH -byJ -bxH +oWx +gVo +oWx bAK bwv caI diff --git a/maps/map_files/DesertDam/purpleriver/newbridge.dmm b/maps/map_files/DesertDam/purpleriver/newbridge.dmm index 225fdabddc9f..d6de4499493d 100644 --- a/maps/map_files/DesertDam/purpleriver/newbridge.dmm +++ b/maps/map_files/DesertDam/purpleriver/newbridge.dmm @@ -536,11 +536,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_cargo) -"bx" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_cargo) "by" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/asphalt{ diff --git a/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm b/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm index 4d9a42777155..497963d344e4 100644 --- a/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm +++ b/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm @@ -81,12 +81,12 @@ }, /area/template_noop) "R" = ( -/obj/item/fuelCell{ +/obj/item/fuel_cell{ fuel_amount = 0; icon_state = "cell-empty"; pixel_x = 7 }, -/obj/item/fuelCell{ +/obj/item/fuel_cell{ fuel_amount = 0; icon_state = "cell-empty"; pixel_x = -7; diff --git a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm index ba9986948eed..97f0248ff6e8 100644 --- a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm +++ b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm @@ -31581,9 +31581,8 @@ /turf/open/floor/wood, /area/prison/library) "bOa" = ( -/obj/structure/machinery/power/geothermal{ +/obj/structure/machinery/power/reactor/colony{ desc = "A thermoelectric generator fueled by searing hot uranium!"; - fail_rate = 5; name = "thermoelectric generator" }, /turf/open/floor/plating, @@ -34129,6 +34128,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, +/obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/plating, /area/prison/engineering) "bVS" = ( @@ -36112,6 +36112,12 @@ /area/prison/engineering) "ccl" = ( /obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /turf/open/floor/plating, /area/prison/engineering) "ccm" = ( @@ -44544,6 +44550,12 @@ /obj/structure/largecrate/random/case, /turf/open/floor/plating, /area/prison/maintenance/residential/access/south) +"gXC" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/plating, +/area/prison/engineering) "gXQ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -86370,7 +86382,7 @@ bXd bYe bVP bVP -bVP +gXC bRC ceG cfr diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index 2920895292ba..d7d206c01c50 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -1922,11 +1922,6 @@ icon_state = "whitegreenfull" }, /area/fiorina/tumor/ice_lab) -"bhf" = ( -/obj/item/fuelCell, -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/maintenance) "bht" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" @@ -2034,6 +2029,13 @@ icon_state = "floor_plate" }, /area/fiorina/tumor/aux_engi) +"blf" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison{ + dir = 1; + icon_state = "bluecorner" + }, +/area/fiorina/station/power_ring) "blA" = ( /obj/item/shard{ icon_state = "medium"; @@ -3702,13 +3704,6 @@ icon_state = "cell_stripe" }, /area/fiorina/station/medbay) -"ckx" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/fuelCell, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) "ckA" = ( /obj/structure/platform, /turf/open/floor/prison, @@ -8237,6 +8232,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) +"eXY" = ( +/obj/structure/platform, +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + layer = 2.6 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "eYr" = ( /obj/structure/inflatable, /obj/structure/barricade/handrail/type_b, @@ -9209,9 +9211,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) +"fDW" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "fEn" = ( /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) +"fEv" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) "fEH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/station_alert, @@ -10840,6 +10859,13 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"gFj" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/item/fuel_cell, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) "gFp" = ( /obj/structure/inflatable/door, /turf/open/floor/prison{ @@ -12901,6 +12927,19 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) +"hQv" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/item/fuel_cell, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) "hQM" = ( /obj/structure/bed/chair{ dir = 4 @@ -14885,6 +14924,11 @@ icon_state = "greenfull" }, /area/fiorina/tumor/civres) +"iYQ" = ( +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/maintenance) "iZm" = ( /obj/item/trash/chips, /obj/structure/machinery/light/double/blue{ @@ -16961,19 +17005,6 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"koy" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/fuelCell, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) "koH" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -17213,16 +17244,6 @@ icon_state = "blue" }, /area/fiorina/station/chapel) -"kwL" = ( -/obj/item/fuelCell, -/obj/structure/platform, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) "kwT" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating/prison, @@ -17639,16 +17660,6 @@ icon_state = "yellow" }, /area/fiorina/station/lowsec) -"kIe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) "kIg" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ @@ -18380,7 +18391,7 @@ }, /area/fiorina/station/lowsec) "ldF" = ( -/obj/structure/closet/emcloset, +/obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/prison{ dir = 10; icon_state = "blue" @@ -18948,6 +18959,16 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"lvt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) "lvy" = ( /turf/closed/shuttle/ert{ icon_state = "stan_rightengine" @@ -19833,6 +19854,18 @@ icon_state = "kitchen" }, /area/fiorina/tumor/civres) +"lWy" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/power_ring) "lXs" = ( /obj/item/book/manual/marine_law, /obj/item/book/manual/marine_law{ @@ -19949,16 +19982,6 @@ /obj/item/clipboard, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"mbH" = ( -/obj/structure/platform, -/obj/item/fuelCell, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) "mcr" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stock_parts/matter_bin/super, @@ -20280,6 +20303,17 @@ icon_state = "floor_plate" }, /area/fiorina/station/chapel) +"mok" = ( +/obj/structure/closet/crate/bravo, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/fuel_cell, +/obj/item/stack/sheet/plasteel, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) "mom" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/surgery/surgicaldrill, @@ -22446,6 +22480,13 @@ icon_state = "yellowcorner" }, /area/fiorina/station/lowsec) +"nAV" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison{ + dir = 8; + icon_state = "bluecorner" + }, +/area/fiorina/station/power_ring) "nBb" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -23435,10 +23476,6 @@ }, /turf/open/space, /area/fiorina/oob) -"ogs" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) "ogM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/plating/prison, @@ -24252,17 +24289,6 @@ icon_state = "blue" }, /area/fiorina/station/civres_blue) -"oEn" = ( -/obj/structure/closet/crate/bravo, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/fuelCell, -/obj/item/stack/sheet/plasteel, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "oEs" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -24437,13 +24463,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"oIg" = ( -/obj/structure/platform, -/obj/structure/reagent_dispensers/fueltank/oxygentank{ - layer = 2.6 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) "oIq" = ( /obj/structure/ice/thin/indestructible{ dir = 1; @@ -26306,13 +26325,6 @@ icon_state = "floor_plate" }, /area/fiorina/station/flight_deck) -"pWl" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) "pWp" = ( /turf/closed/shuttle/ert{ icon_state = "stan8" @@ -27297,13 +27309,6 @@ icon_state = "darkredfull2" }, /area/fiorina/station/research_cells) -"qBS" = ( -/obj/item/circuitboard/exosuit/peripherals/max/targeting, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) "qBT" = ( /obj/structure/sink{ dir = 4; @@ -28390,6 +28395,16 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"rmJ" = ( +/obj/structure/platform, +/obj/item/fuel_cell, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) "rmX" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -29539,6 +29554,13 @@ icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) +"rZM" = ( +/obj/item/circuitboard/exosuit/peripherals/max/targeting, +/obj/structure/surface/rack, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/civres) "rZN" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -32882,16 +32904,6 @@ /obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"tVf" = ( -/obj/structure/closet/crate/bravo, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/fuelCell, -/obj/item/stack/sheet/plasteel, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "tVI" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/prison{ @@ -33289,6 +33301,10 @@ }, /turf/open/space/basic, /area/fiorina/oob) +"ugI" = ( +/obj/item/fuel_cell, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) "ugP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/plate{ @@ -35984,6 +36000,16 @@ "vNq" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/telecomm/lz1_cargo) +"vNQ" = ( +/obj/item/fuel_cell, +/obj/structure/platform, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) "vOm" = ( /turf/open/floor/prison{ dir = 8; @@ -36292,6 +36318,12 @@ icon_state = "greenfull" }, /area/fiorina/station/transit_hub) +"vZe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison{ + icon_state = "bluecorner" + }, +/area/fiorina/station/power_ring) "vZs" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ @@ -36788,6 +36820,16 @@ icon_state = "floor_plate" }, /area/fiorina/station/medbay) +"woB" = ( +/obj/structure/closet/crate/bravo, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/fuel_cell, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) "wps" = ( /obj/structure/bed/sofa/south/grey/left, /obj/structure/machinery/light/double/blue{ @@ -39041,10 +39083,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"xNw" = ( -/obj/item/fuelCell, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) "xNG" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/decal/cleanable/blood, @@ -48787,7 +48825,7 @@ dXG swj xHV dIo -qBS +rZM sHL swj dIo @@ -50740,8 +50778,8 @@ nMm aHJ jlk jlk -xNw -xNw +ugI +ugI jlk jlk umy @@ -55642,7 +55680,7 @@ tkj oer ckZ kXD -kIe +lvt tas tas tTA @@ -62438,11 +62476,11 @@ lgS eLu eLu eLu -bhf -bhf +iYQ +iYQ eLu -bhf -bhf +iYQ +iYQ eLu eLu ppI @@ -63286,11 +63324,11 @@ lgS eLu eLu eLu -bhf -bhf +iYQ +iYQ eLu -bhf -bhf +iYQ +iYQ eLu eLu cME @@ -77444,7 +77482,7 @@ end kqC wzE pah -kwL +vNQ xbM iCN qOq @@ -77655,14 +77693,14 @@ vds elO ioc duF -koy +hQv gsL mOI xbM qOq xbM xbM -ckx +gFj sNN goG tOM @@ -77875,7 +77913,7 @@ qOq huG xbM pah -mbH +rmJ goG tOM tOM @@ -80855,8 +80893,8 @@ jyo mxQ mxQ mxQ -tVf -oEn +woB +mok mxQ pRx tOM @@ -82119,8 +82157,8 @@ gbf pYB pYB gbf -pWl -ogs +blf +fDW mxQ jjg mxQ @@ -82546,7 +82584,7 @@ gbf iYe bnx siy -nBw +nAV mxQ mxQ vUZ @@ -82759,7 +82797,7 @@ doQ upM vjR nBw -ogs +fDW jjg cBn rxM @@ -82958,7 +82996,7 @@ tOM xpM mxQ mxQ -jzP +vZe ydK jzP tlj @@ -82971,7 +83009,7 @@ taS jEa hPu ydK -pWl +blf mxQ mxQ jLD @@ -84018,7 +84056,7 @@ tOM xpM mxQ mxQ -pYB +fEv uTw pYB pYB @@ -84230,7 +84268,7 @@ tOM rdt rsQ mxQ -gbf +lWy gbf gbf jMv @@ -92042,7 +92080,7 @@ xeO xfb yat xeO -oIg +eXY nGZ nGZ rJW diff --git a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm index 6d99a9dc0f70..74d5921e30de 100644 --- a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm +++ b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm @@ -848,15 +848,6 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"adm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Colony Requesitions Storage Pod" - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/requesitions) "adn" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall0" @@ -1301,12 +1292,6 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/engineering/generator) -"aex" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor{ - icon_state = "platebot" - }, -/area/ice_colony/surface/engineering/generator) "aey" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer1, @@ -1329,17 +1314,6 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast) -"aeC" = ( -/obj/structure/machinery/door/airlock{ - id_tag = "st_5"; - name = "Storage Unit"; - req_one_access_txt = "100;101;102;103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/requesitions) "aeD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2024,15 +1998,6 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/engineering/generator) -"ags" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "platebot" - }, -/area/ice_colony/surface/engineering/generator) "agt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -11956,16 +11921,6 @@ icon_state = "whitered" }, /area/ice_colony/surface/clinic/lobby) -"aHB" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - id = "st_17"; - name = "Power Storage Unit" - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) "aHD" = ( /obj/structure/closet/secure_closet/guncabinet, /obj/structure/machinery/firealarm{ @@ -12362,6 +12317,12 @@ /obj/effect/landmark/corpsespawner/doctor, /turf/open/floor/wood, /area/ice_colony/surface/command/crisis) +"aIW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) "aIX" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -12399,17 +12360,6 @@ "aJd" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/storage_unit/telecomms) -"aJe" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - id = "st_18"; - name = "Disposals Storage Unit" - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/telecomms) "aJf" = ( /turf/closed/wall/r_wall, /area/ice_colony/exterior/surface/valley/southeast) @@ -13689,17 +13639,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating, /area/ice_colony/surface/research) -"aNV" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - id = "st_19"; - name = "Research Storage Unit" - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) "aNW" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -32 @@ -14537,21 +14476,6 @@ icon_state = "dark2" }, /area/ice_colony/surface/research) -"aQm" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - id = "research_entrance"; - name = "Omicron Research Dome" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) "aQt" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/generic{ @@ -14601,22 +14525,6 @@ icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/alpha) -"aQB" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"aQC" = ( -/obj/structure/computerframe, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"aQD" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) "aQE" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -14675,22 +14583,6 @@ icon_state = "dark2" }, /area/ice_colony/surface/hangar/hallway) -"aQK" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"aQL" = ( -/obj/structure/computerframe, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"aQM" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) "aQN" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor{ @@ -14931,16 +14823,6 @@ icon_state = "swall3" }, /area/ice_colony/surface/hangar/alpha) -"aRz" = ( -/obj/structure/machinery/light, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"aRA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) "aRB" = ( /obj/structure/machinery/light{ dir = 4 @@ -14962,22 +14844,6 @@ icon_state = "swall3" }, /area/ice_colony/surface/hangar/beta) -"aRF" = ( -/obj/structure/machinery/light, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"aRG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"aRH" = ( -/obj/structure/machinery/light, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) "aRI" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, @@ -15211,10 +15077,6 @@ icon_state = "swall8" }, /area/ice_colony/surface/hangar/alpha) -"aSi" = ( -/obj/structure/machinery/door/unpowered/shuttle, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) "aSj" = ( /turf/closed/shuttle{ icon_state = "swall4" @@ -15253,10 +15115,6 @@ icon_state = "swall8" }, /area/ice_colony/surface/hangar/beta) -"aSr" = ( -/obj/structure/machinery/door/unpowered/shuttle, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) "aSs" = ( /turf/closed/shuttle{ icon_state = "swall4" @@ -15489,48 +15347,6 @@ icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/alpha) -"aSU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"aSV" = ( -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"aSW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"aSY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"aSZ" = ( -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"aTa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) "aTb" = ( /turf/open/floor{ dir = 4; @@ -15701,30 +15517,6 @@ icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/alpha) -"aTz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"aTA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"aTD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"aTE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) "aTH" = ( /obj/structure/machinery/power/apc{ dir = 8; @@ -16066,13 +15858,6 @@ icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/beta) -"aUM" = ( -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) "aUN" = ( /obj/structure/ice/thin/end{ dir = 8 @@ -16524,18 +16309,6 @@ icon_state = "dark2" }, /area/ice_colony/surface/hangar/alpha) -"aWc" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) -"aWd" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/alpha) "aWe" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f9" @@ -16590,18 +16363,6 @@ icon_state = "dark2" }, /area/ice_colony/surface/hangar/beta) -"aWl" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) -"aWm" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/shuttle/can_surgery/red, -/area/ice_colony/surface/hangar/beta) "aWn" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f9" @@ -19613,12 +19374,6 @@ }, /turf/open/floor/plating, /area/ice_colony/underground/maintenance/north) -"bgR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/hangar) "bgS" = ( /obj/structure/machinery/landinglight/ds2{ dir = 4 @@ -20040,10 +19795,6 @@ icon_state = "bcircuit" }, /area/ice_colony/underground/hangar) -"biw" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) "bix" = ( /obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/plating/icefloor, @@ -20336,14 +20087,6 @@ }, /turf/open/floor/plating, /area/ice_colony/underground/requesition/lobby) -"bjz" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/hangar) "bjA" = ( /turf/closed/wall/r_wall/unmeltable, /area/ice_colony/underground/maintenance/north) @@ -23662,17 +23405,6 @@ /obj/structure/sign/safety/high_voltage, /turf/closed/wall/r_wall, /area/ice_colony/underground/engineering/substation) -"btB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - id = "engine_electrical_maintenance"; - name = "Underground Power Substation" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/engineering/substation) "btC" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; @@ -23893,10 +23625,6 @@ "bug" = ( /turf/closed/wall/r_wall, /area/ice_colony/exterior/underground/caves) -"buh" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating, -/area/ice_colony/exterior/underground/caves) "bui" = ( /turf/open/floor{ icon_state = "bcircuit" @@ -24400,13 +24128,6 @@ }, /turf/open/floor/wood, /area/ice_colony/underground/crew/bball) -"bvD" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ice_colony/exterior/underground/caves) "bvE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -24435,6 +24156,13 @@ /obj/structure/machinery/light{ dir = 4 }, +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /turf/open/floor/plating, /area/ice_colony/underground/engineering/substation) "bvJ" = ( @@ -24772,15 +24500,6 @@ icon_state = "bcircuit" }, /area/ice_colony/underground/engineering/substation) -"bwA" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"bwB" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) "bwE" = ( /obj/structure/ice/thin/end, /turf/open/ice, @@ -24900,15 +24619,6 @@ icon_state = "darkgreen2" }, /area/ice_colony/underground/crew/bball) -"bwZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - id = "engine_electrical_maintenance"; - name = "Underground Power Substation" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) "bxa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -25111,6 +24821,7 @@ dir = 1 }, /obj/structure/surface/rack, +/obj/item/fuel_cell, /turf/open/floor/plating, /area/ice_colony/underground/maintenance/engineering) "bxJ" = ( @@ -28039,16 +27750,6 @@ icon_state = "darkpurple2" }, /area/ice_colony/underground/research) -"bGA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Underground Secure Technical Storage" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/storage/highsec) "bGB" = ( /turf/closed/wall/r_wall, /area/ice_colony/underground/command/checkpoint) @@ -34418,6 +34119,23 @@ "cbk" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/surface/tcomms) +"cbU" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"chE" = ( +/obj/structure/machinery/door/airlock{ + id_tag = "st_5"; + name = "Storage Unit"; + req_one_access_txt = "100;101;102;103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/requesitions) "csl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -34427,22 +34145,53 @@ icon_state = "dark2" }, /area/ice_colony/surface/research) +"cBQ" = ( +/obj/structure/machinery/door/unpowered/shuttle, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) "cEG" = ( /obj/docking_port/stationary/marine_dropship/lz2, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) +"cNY" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ice_colony/exterior/underground/caves) "cVM" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) +"dfj" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) "dgG" = ( /turf/open/floor{ dir = 5; icon_state = "darkyellow2" }, /area/ice_colony/surface/tcomms) +"doO" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor{ + icon_state = "platebot" + }, +/area/ice_colony/surface/engineering/generator) +"drG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100" + }, +/turf/open/floor/plating, +/area/ice_colony/underground/hangar) "dxl" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, @@ -34459,6 +34208,17 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/tcomms) +"dFm" = ( +/obj/structure/machinery/light, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"dRe" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) "ecS" = ( /obj/structure/machinery/light{ dir = 4 @@ -34475,6 +34235,14 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/ice_colony/underground/crew/leisure) +"etX" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"ezC" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) "ezT" = ( /obj/vehicle/train/cargo/trolley, /obj/structure/pipes/standard/simple/hidden/green, @@ -34497,6 +34265,28 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/research/tech_storage) +"faO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"fgp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Colony Requesitions Storage Pod" + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/requesitions) +"fkY" = ( +/obj/structure/machinery/light, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) "fqt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -34546,6 +34336,15 @@ icon_state = "darkred2" }, /area/ice_colony/underground/reception/checkpoint_north) +"gHI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) "gXP" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -34562,9 +34361,35 @@ dir = 9 }, /area/ice_colony/exterior/surface/valley/south) +"hrs" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) "hrN" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/clearing/north) +"hwC" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" + }, +/turf/open/floor/plating, +/area/ice_colony/underground/hangar) +"hxr" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + id = "research_entrance"; + name = "Omicron Research Dome" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/ice_colony/surface/research) "hAX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, @@ -34584,6 +34409,17 @@ icon_state = "warnplate" }, /area/ice_colony/underground/hangar) +"ilp" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + id = "st_19"; + name = "Research Storage Unit" + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/ice_colony/surface/storage_unit/research) "iBu" = ( /obj/structure/surface/table/reinforced, /obj/item/paper/research_notes, @@ -34602,6 +34438,16 @@ /obj/item/packageWrap, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) +"iUo" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + id = "st_17"; + name = "Power Storage Unit" + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/ice_colony/surface/storage_unit/power) "iZc" = ( /obj/structure/lz_sign/ice_sign{ desc = "The only good bug is a dead bug."; @@ -34610,6 +34456,16 @@ }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/south) +"iZF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Underground Secure Technical Storage" + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/ice_colony/underground/storage/highsec) "jtr" = ( /turf/closed/wall, /area/ice_colony/exterior/surface/cliff) @@ -34628,6 +34484,18 @@ icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/alpha) +"jFV" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"jPb" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) "jZI" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/shuttle_control/dropship2, @@ -34645,6 +34513,17 @@ icon_state = "warnplate" }, /area/ice_colony/surface/tcomms) +"krs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + id = "engine_electrical_maintenance"; + name = "Underground Power Substation" + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/ice_colony/underground/engineering/substation) "kKZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -34660,6 +34539,19 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/tcomms) +"luM" = ( +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"lxu" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) "lyD" = ( /obj/structure/machinery/alarm{ dir = 8; @@ -34679,9 +34571,21 @@ "lJQ" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/south) +"lSF" = ( +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) "lXk" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/clearing/south) +"mec" = ( +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"mgy" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) "mog" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -34703,6 +34607,12 @@ icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/beta) +"mLJ" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) "neZ" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Colony Dormitories" @@ -34730,9 +34640,26 @@ /obj/effect/landmark/static_comms/net_one, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/tcomms) +"oIL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"oNg" = ( +/obj/structure/machinery/door/unpowered/shuttle, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) "oOd" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/clearing/pass) +"oQI" = ( +/obj/structure/machinery/light, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) "oZq" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -34754,9 +34681,19 @@ }, /turf/open/floor/carpet, /area/ice_colony/underground/crew/leisure) +"poh" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) "pyn" = ( /turf/closed/wall, /area/ice_colony/underground/hangar) +"qiR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) "qny" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, @@ -34777,6 +34714,26 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) +"qJe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"qKs" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/ice_colony/exterior/underground/caves) +"qPo" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) "qRy" = ( /obj/structure/closet/toolcloset, /obj/structure/machinery/door_control{ @@ -34797,6 +34754,15 @@ /obj/structure/machinery/recharge_station, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) +"rxJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + id = "engine_electrical_maintenance"; + name = "Underground Power Substation" + }, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) "rxQ" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/northwest) @@ -34853,6 +34819,12 @@ "sTg" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/northeast) +"sTG" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) "sTY" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -34907,6 +34879,13 @@ "tZS" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/west) +"ubd" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) "ueV" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor{ @@ -35002,6 +34981,10 @@ /obj/item/paper/research_notes, /turf/open/floor/wood, /area/ice_colony/surface/command/control/pv1) +"wxw" = ( +/obj/structure/computerframe, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) "wDj" = ( /turf/open/floor/plating/icefloor{ dir = 1; @@ -35013,6 +34996,17 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) +"xfO" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + id = "st_18"; + name = "Disposals Storage Unit" + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/ice_colony/surface/storage_unit/telecomms) "xkk" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/icefloor{ @@ -35027,11 +35021,36 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/tcomms) +"xyz" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "platebot" + }, +/area/ice_colony/surface/engineering/generator) +"xAI" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"xFB" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) "xWm" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/ice, /area/ice_colony/exterior/surface/landing_pad_external) +"yfA" = ( +/obj/structure/computerframe, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) "ygw" = ( /obj/structure/surface/table, /obj/item/device/encryptionkey, @@ -39579,15 +39598,15 @@ aaI aaI aaI abD -adm +fgp abD adY abD -aeC +chE abD adY abD -adm +fgp abD adY abD @@ -43809,15 +43828,15 @@ abE abF abF abD -adm +fgp abD adY abD -adm +fgp abD adY abD -adm +fgp abD adY abD @@ -49922,7 +49941,7 @@ bDE bEz bFc bFc -bGA +iZF bHn bHn bIJ @@ -51277,11 +51296,11 @@ aZW aZW aZG aZG -bgR +hwC aZG aZG aZG -bgR +hwC aZG aZG aZG @@ -52134,7 +52153,7 @@ big aZW aZW aZW -bjz +drG bgH bgH bkE @@ -52977,9 +52996,9 @@ bht aZW aZW beB -biw -biw -biw +poh +poh +poh aZG bgH bgH @@ -55235,7 +55254,7 @@ aZW aZW bjf aZG -bgR +hwC aZG beB bkt @@ -55462,7 +55481,7 @@ aLN aLN aLN aLN -aQm +hxr aLN aLN aLN @@ -58843,7 +58862,7 @@ aKr aKr aKR aKR -aNV +ilp auw auw auw @@ -69639,11 +69658,11 @@ box box bqF bnk -buh -buh -bvD -buh -buh +qKs +qKs +cNY +qKs +qKs bqP brt bsf @@ -70203,11 +70222,11 @@ box box bqF btA -buj +ezC buj buj bui -bwA +etX btz brt bsf @@ -70484,12 +70503,12 @@ boQ boQ boQ boQ -btB +krs buk buk bvE bui -bwA +etX btz brt bsf @@ -70771,7 +70790,7 @@ bul buj bvF bui -bwB +hrs btz bxG bsf @@ -71054,7 +71073,7 @@ buj bvG buk buk -bwZ +rxJ bxH brZ brZ @@ -71338,7 +71357,7 @@ bwg bwg btz bxI -bse +qPo bsf brt byc @@ -77748,7 +77767,7 @@ aRy aRy aRy aUh -aSi +oNg aVy aWb aSf @@ -78022,17 +78041,17 @@ avs aOf aOK aPI -aQB -aRz +xFB +oQI aSh -aSU -aTz -aTz -aTz -aSU -aSV -aTz -aWc +faO +jPb +jPb +jPb +faO +lSF +jPb +xAI aWb aSj aPH @@ -78304,17 +78323,17 @@ avs aOf aOK aPJ -aQC -aRA -aSi -aSV -aSV -aSV -aSV -aSV -aSV -aSV -aSV +wxw +qiR +oNg +lSF +lSF +lSF +lSF +lSF +lSF +lSF +lSF aWJ aXm aPH @@ -78586,17 +78605,17 @@ avs aOf aOK aPK -aQD -aRz +dfj +oQI aSj -aSW -aTA -aTA -aTA -aSW -aSV -aTA -aWd +gHI +jFV +jFV +jFV +gHI +lSF +jFV +lxu aWe aSh aPH @@ -78876,7 +78895,7 @@ aRy aRy aRy aUh -aSi +oNg aVy aWe aPH @@ -81036,16 +81055,16 @@ acz acz acz aeh -aex +doO aeU afs -aex -aex -ags -aex +doO +doO +xyz +doO ahm aeU -aex +doO aeg ajA ajT @@ -81318,7 +81337,7 @@ adj adj adj aeh -aex +doO aeU afq aeU @@ -81327,7 +81346,7 @@ agt aeU afq aeU -aex +doO aeh aeI aeI @@ -81603,10 +81622,10 @@ aei agw aeW afs -aex -aex -ags -aex +doO +doO +xyz +doO ahm afu aix @@ -83106,7 +83125,7 @@ aRE aRE aRE aUn -aSr +cBQ aVD aWk aPT @@ -83380,17 +83399,17 @@ aac aOj aOY aPU -aQK -aRF +mgy +fkY aSq -aSY -aTD -aTD -aTD -aSY -aSZ -aTD -aWl +oIL +aIW +aIW +aIW +oIL +mec +aIW +sTG aWk aSs aPT @@ -83662,17 +83681,17 @@ aac aOj aOZ aPV -aQL -aRG -aSr -aSZ -aSZ -aSZ -aSZ -aUM -aSZ -aSZ -aSZ +yfA +ubd +cBQ +mec +mec +mec +mec +luM +mec +mec +mec aWN aXu aPT @@ -83944,17 +83963,17 @@ aac aOj aOZ aPW -aQM -aRH +mLJ +dFm aSs -aTa -aTE -aTE -aTE -aTa -aSZ -aTE -aWm +qJe +dRe +dRe +dRe +qJe +mec +dRe +cbU aWn aSq aPT @@ -84234,7 +84253,7 @@ aRE aRE aRE aUn -aSr +cBQ aVD aWn aPT @@ -87587,7 +87606,7 @@ amm aFE aFE aFE -aHB +iUo aFE aFE aky @@ -89284,7 +89303,7 @@ amm amm amm amm -aJe +xfO aJi aJi aJi diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm index 2ed8035a7972..e5c8e3e13c69 100644 --- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm +++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm @@ -7260,6 +7260,12 @@ /obj/item/device/motiondetector/hacked, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"bIP" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/garage) "bIV" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) @@ -10762,6 +10768,14 @@ /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) +"fNR" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/shiva{ + icon_state = "yellow" + }, +/area/shiva/interior/garage) "fOa" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -11 @@ -10897,6 +10911,13 @@ icon_state = "floor3" }, /area/shiva/interior/aerodrome) +"fWJ" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "yellowfull" + }, +/area/shiva/interior/lz2_habs) "fXp" = ( /obj/structure/prop/invuln{ desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; @@ -11935,6 +11956,17 @@ dir = 1 }, /area/shiva/interior/colony/central) +"hat" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/shiva{ + dir = 10; + icon_state = "yellow" + }, +/area/shiva/interior/garage) "hbo" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, @@ -11996,10 +12028,13 @@ icon_state = "wred" }, /area/shiva/interior/colony/medseceng) -"hgx" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating, -/area/shiva/interior/colony/medseceng) +"hgk" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "yellow" + }, +/area/shiva/interior/garage) "hgI" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, @@ -14732,6 +14767,10 @@ icon_state = "floor3" }, /area/shiva/exterior/lz2_fortress) +"jTR" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) "jTT" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -15843,13 +15882,6 @@ icon_state = "yellowfull" }, /area/shiva/interior/colony/research_hab) -"kTN" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/lz2_habs) "kTP" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer1, @@ -22109,12 +22141,6 @@ /obj/structure/largecrate/random, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"rHQ" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) "rIj" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/shiva{ @@ -27186,6 +27212,12 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) +"wZO" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/shiva{ + icon_state = "yellow" + }, +/area/shiva/interior/garage) "wZW" = ( /obj/structure/bed, /turf/open/floor/wood, @@ -37065,7 +37097,7 @@ puZ puZ puZ anc -kTN +fWJ mCn uRi xQJ @@ -37389,7 +37421,7 @@ puZ puZ puZ anc -kTN +fWJ mCn cce xQJ @@ -37713,7 +37745,7 @@ puZ puZ puZ anc -kTN +fWJ mCn cce xQJ @@ -53180,7 +53212,7 @@ ver ver ver fEO -oDM +hat ktd bFg bIV @@ -53342,7 +53374,7 @@ ver ver ver ver -pSD +fNR ktd cZk bIV @@ -54152,7 +54184,7 @@ aAh ver ver ver -pSD +wZO ktd cZk bFg @@ -54314,7 +54346,7 @@ ver ver ver pNf -aCA +hgk ktd gJo lTc @@ -54955,11 +54987,11 @@ oQl oQl oQl ktd -rHQ +bIP tXd aAh pSD -rHQ +bIP ktd oQl oQl @@ -55117,11 +55149,11 @@ oQl oQl oQl ktd -rHQ +bIP ush vUL aCA -rHQ +bIP ktd oQl oQl @@ -55280,9 +55312,9 @@ oQl oQl ktd ktd -rHQ -rHQ -rHQ +bIP +bIP +bIP ktd ktd oQl @@ -58299,16 +58331,16 @@ acT qDT eAZ acT -hgx +jTR cso agh -hgx -hgx -hgx -hgx +jTR +jTR +jTR +jTR agh cso -hgx +jTR acT aii agh @@ -58461,7 +58493,7 @@ aDn eAZ eAZ aDn -hgx +jTR cso agh cso @@ -58470,7 +58502,7 @@ cso cso agh cso -hgx +jTR acT acT aii @@ -58626,10 +58658,10 @@ aek eXL cso agh -hgx -hgx -hgx -hgx +jTR +jTR +jTR +jTR agh cso qdd diff --git a/maps/map_files/Kutjevo/Kutjevo.dmm b/maps/map_files/Kutjevo/Kutjevo.dmm index 653416320eac..2fe5f7b45337 100644 --- a/maps/map_files/Kutjevo/Kutjevo.dmm +++ b/maps/map_files/Kutjevo/Kutjevo.dmm @@ -651,6 +651,16 @@ dir = 1 }, /area/kutjevo/exterior/lz_dunes) +"aRB" = ( +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles{ + dir = 8 + }, +/area/kutjevo/interior/colony_South/power2) "aRS" = ( /obj/structure/bed{ can_buckle = 0; @@ -874,6 +884,10 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) +"bkn" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power) "bkR" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) @@ -2594,12 +2608,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"dux" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) "duP" = ( /obj/structure/girder, /turf/open/floor/plating/kutjevo, @@ -3310,6 +3318,13 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"ekV" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/multi_tiles{ + dir = 10 + }, +/area/kutjevo/interior/colony_South/power2) "ele" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -6881,6 +6896,10 @@ /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) +"jmP" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "jng" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -7116,10 +7135,6 @@ dir = 10 }, /area/kutjevo/interior/colony_South/power2) -"jxR" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "jxS" = ( /obj/structure/bed/chair{ dir = 8 @@ -7218,6 +7233,20 @@ /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) +"jGo" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/kutjevo/multi_tiles{ + dir = 6 + }, +/area/kutjevo/interior/power) "jGX" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/colors, @@ -7656,6 +7685,16 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"ksb" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power) "ksl" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/auto_turf/sand/layer1, @@ -8549,12 +8588,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"lBu" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) "lBP" = ( /obj/structure/window/framed/kutjevo/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -8922,6 +8955,12 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) +"mcA" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/kutjevo/multi_tiles{ + dir = 6 + }, +/area/kutjevo/interior/power) "mcZ" = ( /obj/structure/bed/chair{ pixel_y = 8 @@ -10133,16 +10172,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"nEE" = ( -/obj/item/fuelCell, -/obj/structure/surface/rack, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, -/area/kutjevo/interior/colony_South/power2) "nFM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -12057,10 +12086,6 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qdj" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power) "qev" = ( /obj/item/trash/chunk, /turf/open/auto_turf/sand/layer2, @@ -12704,6 +12729,13 @@ "raN" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/runoff_bridge) +"raV" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/interior/power) "rbu" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/cyan/edge, @@ -13915,16 +13947,6 @@ /obj/structure/barricade/wooden, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/locks) -"sID" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/geothermal, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power) "sJj" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -14355,6 +14377,12 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central/mine_elevator) +"tlK" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/kutjevo/multi_tiles{ + dir = 1 + }, +/area/kutjevo/interior/power/comms) "tlN" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/power/comms) @@ -14592,6 +14620,21 @@ }, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) +"tEj" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/kutjevo/multi_tiles{ + dir = 6 + }, +/area/kutjevo/interior/power) "tEK" = ( /obj/structure/bed/sofa/vert/grey/bot{ pixel_y = 4 @@ -14603,13 +14646,6 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/floor/mech_bay_recharge_floor, /area/kutjevo/interior/power) -"tEV" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "tFe" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange/edge, @@ -15951,19 +15987,6 @@ dir = 4 }, /area/kutjevo/interior/complex/med) -"vnL" = ( -/obj/item/fuelCell, -/obj/structure/surface/rack, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "vnO" = ( /obj/structure/bed/chair{ dir = 8 @@ -16987,6 +17010,19 @@ /obj/effect/landmark/corpsespawner/colonist/kutjevo, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) +"wLB" = ( +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles{ + dir = 10 + }, +/area/kutjevo/interior/colony_South/power2) "wMw" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/multi_tiles, @@ -17533,6 +17569,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"xGI" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) "xHm" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; @@ -23933,13 +23975,13 @@ tWM cRo tlN kfe -dux +tlK boR tXm tWM tXm boR -dux +tlK tlN iaj iaj @@ -24100,13 +24142,13 @@ tWM xZr tlN kfe -dux +tlK vXq kKb tWM tXm boR -dux +tlK tlN iaj iaj @@ -24267,13 +24309,13 @@ tWM wtZ tlN kfe -dux +tlK boR tXm jFB kKb vXq -dux +tlK tlN iaj iaj @@ -25478,7 +25520,7 @@ cvm hQj hQj hQj -cvm +mcA rwj uZT uZT @@ -25645,7 +25687,7 @@ cvm hQj hQj hQj -cvm +mcA aHW aHW aHW @@ -25812,7 +25854,7 @@ cvm kdY kdY kdY -cvm +tEj rwj muG muG @@ -25973,13 +26015,13 @@ uGd fkP vin pBV -lBu +xGI uBz cvm hQj hQj hQj -cvm +jGo rwj wMw wMw @@ -26146,7 +26188,7 @@ xjY xjY bbL xjY -voy +raV rwj uZT uZT @@ -26475,7 +26517,7 @@ xpk tQB ePx pBV -sID +ksb vdl xzY xzY @@ -26642,7 +26684,7 @@ nah xXI cTz pBV -qdj +bkn xzY oum hQj @@ -26809,7 +26851,7 @@ qjz niT cTz pBV -qdj +bkn xzY hQj hQj @@ -26976,7 +27018,7 @@ soe gCb cTz pBV -qdj +bkn oKA hQj hQj @@ -39783,9 +39825,9 @@ szC szC sOT dip -jxR -jxR -jxR +jmP +jmP +jmP dip gQr hMu @@ -42965,7 +43007,7 @@ mcv mcv mcv grR -nEE +aRB shX qGx slx @@ -43132,7 +43174,7 @@ ouR ouR byw mcv -vnL +wLB fdr eFf slx @@ -43304,7 +43346,7 @@ grR jeO slx qGx -tEV +ekV rdm rdm rdm diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm index 7364b1609c3e..954ad6e3693c 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -577,6 +577,10 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"aom" = ( +/obj/structure/barricade/deployable, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "aox" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat{ @@ -1809,6 +1813,12 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/mining) +"aXR" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "aYd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1947,6 +1957,10 @@ /obj/item/tool/shovel, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"bbi" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) "bbk" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -2418,6 +2432,9 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) +"bmR" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "bnf" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison{ @@ -3823,6 +3840,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"bYC" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, +/area/lv522/landing_zone_forecon/UD6_Tornado) "bYS" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4; @@ -4109,7 +4129,14 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) "cfd" = ( -/obj/structure/closet/wardrobe/engineering_yellow, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, /turf/open/floor/prison{ dir = 4; icon_state = "darkyellowfull2" @@ -4774,6 +4801,23 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"cxn" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 8; + name = "\improper Marshal Head Office" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/security) "cxo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -4991,6 +5035,14 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/kitchen) +"cBU" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_covered_bed" + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/reactor_garage) "cBV" = ( /obj/effect/decal/cleanable/cobweb2, /turf/open/floor/prison{ @@ -6765,15 +6817,6 @@ /obj/item/stack/cable_coil/cut, /turf/open/floor/plating, /area/lv522/atmos/east_reactor) -"dic" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Tornado) "dio" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7176,14 +7219,11 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor/south) -"dqn" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 +"dpS" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/turf/open/shuttle/dropship/can_surgery/dark_grey, /area/lv522/landing_zone_forecon/UD6_Tornado) "dqr" = ( /obj/item/weapon/gun/rifle/m41a{ @@ -7204,6 +7244,26 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) +"drg" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Marshal Office Interrogation"; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/security) "drz" = ( /obj/effect/decal/cleanable/blood, /obj/item/tool/hatchet, @@ -8224,6 +8284,9 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor/south) +"dNx" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "dNK" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Workshop Storage"; @@ -10153,9 +10216,6 @@ icon_state = "marked" }, /area/lv522/atmos/east_reactor) -"eAa" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "eAg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -10572,10 +10632,6 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"eJQ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "eJR" = ( /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) @@ -12303,6 +12359,10 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/executive) +"fwh" = ( +/obj/structure/barricade/deployable, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "fwj" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat{ @@ -13461,12 +13521,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"fTm" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_middle, -/area/lv522/landing_zone_forecon/UD6_Tornado) "fTs" = ( /turf/open/floor/corsat{ dir = 8; @@ -13963,6 +14017,16 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) +"gdr" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Tornado) "gdt" = ( /obj/item/tool/kitchen/knife, /obj/effect/decal/cleanable/dirt, @@ -14245,6 +14309,12 @@ icon_state = "squares" }, /area/lv522/atmos/east_reactor/east) +"ghY" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, +/area/lv522/outdoors/w_rockies) "gib" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/stairs/perspective{ @@ -14529,6 +14599,12 @@ icon_state = "darkpurple2" }, /area/lv522/indoors/a_block/dorms) +"goC" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Tornado) "goK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -14604,16 +14680,6 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/cargo) -"gpu" = ( -/obj/item/fuelCell{ - pixel_x = -8; - pixel_y = -2 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "gpB" = ( /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/asphalt/cement{ @@ -14802,6 +14868,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) +"guj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/dorm_north) "gul" = ( /obj/structure/tunnel/maint_tunnel{ pixel_y = 6 @@ -15611,16 +15687,6 @@ icon_state = "marked" }, /area/lv522/landing_zone_1) -"gKD" = ( -/obj/item/fuelCell{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "gKM" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /obj/structure/machinery/light{ @@ -17656,23 +17722,6 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/nw_rockies) -"hvZ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 8; - name = "\improper Marshal Head Office" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) "hwa" = ( /obj/structure/platform/stair_cut{ icon_state = "platform_stair_alt" @@ -18168,9 +18217,6 @@ icon_state = "blue_plate" }, /area/lv522/indoors/c_block/mining) -"hFm" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, -/area/lv522/landing_zone_forecon/UD6_Tornado) "hFu" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -18506,6 +18552,9 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/kitchen/glass) +"hLR" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, +/area/lv522/landing_zone_forecon/UD6_Tornado) "hLT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat{ @@ -20819,6 +20868,9 @@ icon_state = "squares" }, /area/lv522/atmos/cargo_intake) +"iGk" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "iGl" = ( /obj/structure/machinery/door/airlock/almayer/engineering, /turf/open/floor/corsat{ @@ -21457,9 +21509,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_west_street) -"iSu" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, -/area/lv522/landing_zone_forecon/UD6_Tornado) "iSx" = ( /obj/structure/girder, /turf/open/floor/plating, @@ -23167,6 +23216,28 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) +"jvF" = ( +/obj/structure/machinery/computer/cameras{ + desc = "The flight controls for a UD6 Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; + name = "\improper 'Typhoon' flight controls"; + network = null; + pixel_y = 21 + }, +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/double{ + dir = 1; + layer = 2.9; + pixel_y = 9 + }, +/obj/item/prop/almayer/flight_recorder{ + layer = 2.9; + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "jvG" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/prison{ @@ -23425,6 +23496,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorm_north) +"jAX" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Tornado) "jBm" = ( /obj/structure/machinery/vending/hydronutrients, /turf/open/floor/prison{ @@ -23821,6 +23902,18 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"jHm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/suit/storage/jacket/marine/corporate, +/turf/open/floor/strata{ + dir = 4; + icon_state = "white_cyan1" + }, +/area/lv522/indoors/a_block/corpo/glass) "jHy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -24860,6 +24953,16 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) +"kbq" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "kbu" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/corsat{ @@ -26995,9 +27098,6 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) -"kMT" = ( -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "kNe" = ( /obj/item/shard{ icon_state = "medium" @@ -27029,16 +27129,6 @@ icon_state = "darkyellowfull2" }, /area/lv522/indoors/lone_buildings/outdoor_bot) -"kNM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorm_north) "kNR" = ( /obj/structure/closet/crate/explosives, /obj/item/storage/box/explosive_mines, @@ -28290,6 +28380,16 @@ /obj/item/stack/sheet/metal, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) +"lkx" = ( +/obj/item/fuel_cell{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor) "lkH" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -28981,26 +29081,6 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/dorms) -"lzn" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Marshal Office Interrogation"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) "lzw" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/shale/layer1, @@ -29112,21 +29192,6 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor/south) -"lAM" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Marshal Office Armory" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Armoury-Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) "lAS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -30537,6 +30602,14 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/bridge) +"meM" = ( +/obj/item/clothing/accessory/red, +/obj/item/clothing/under/liaison_suit/field{ + pixel_y = 9; + pixel_x = -4 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/executive) "mfh" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -32269,6 +32342,11 @@ icon_state = "white_cyan2" }, /area/lv522/indoors/a_block/medical/glass) +"mNz" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "mNI" = ( /turf/open/floor/almayer{ dir = 1; @@ -33328,6 +33406,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"ngy" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "ngK" = ( /obj/structure/platform{ dir = 4 @@ -34363,6 +34447,18 @@ "nBe" = ( /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) +"nBh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 30 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_box/rounds/smg{ + layer = 3; + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "nBo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -34631,6 +34727,16 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) +"nHF" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "nHT" = ( /obj/structure/bed/chair, /obj/structure/machinery/light{ @@ -35980,6 +36086,9 @@ }, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) +"oeV" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, +/area/lv522/landing_zone_forecon/UD6_Tornado) "oeX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer0, @@ -36597,6 +36706,12 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"ori" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "orm" = ( /obj/structure/platform/strata{ dir = 4 @@ -36905,6 +37020,12 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"oxd" = ( +/obj/item/clothing/suit/storage/RO{ + name = "\improper UA jacket" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "oxq" = ( /obj/item/paper{ pixel_x = 10; @@ -38960,19 +39081,6 @@ icon_state = "floor_marked" }, /area/lv522/landing_zone_1) -"pnu" = ( -/obj/item/fuelCell{ - layer = 3.1; - pixel_x = 3; - pixel_y = 15 - }, -/obj/item/fuelCell{ - layer = 3.1; - pixel_x = -10; - pixel_y = 18 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "pnx" = ( /turf/open/floor/corsat{ icon_state = "marked" @@ -39590,6 +39698,10 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/mining) +"pBz" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/two, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "pBF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -39997,28 +40109,6 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/mining) -"pIO" = ( -/obj/structure/machinery/computer/cameras{ - desc = "The flight controls for a UD6 Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; - name = "\improper 'Typhoon' flight controls"; - network = null; - pixel_y = 21 - }, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/light/double{ - dir = 1; - layer = 2.9; - pixel_y = 9 - }, -/obj/item/prop/almayer/flight_recorder{ - layer = 2.9; - pixel_x = -9; - pixel_y = 4 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "pJb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block Fitness Centre Airlock" @@ -40597,10 +40687,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"pTH" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/two, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "pTO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed{ @@ -41079,6 +41165,16 @@ /obj/structure/sign/safety/high_voltage, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"qbP" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Tornado) "qbW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -41430,16 +41526,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"qjX" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) "qkw" = ( /obj/structure/prop/invuln/remote_console_pod, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ @@ -41647,13 +41733,6 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/hallway) -"qnV" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "qnY" = ( /obj/structure/surface/table/almayer, /obj/item/prop/alien/hugger, @@ -41691,9 +41770,6 @@ icon_state = "cell_stripe" }, /area/lv522/atmos/sewer) -"qpg" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "qpq" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -41847,12 +41923,6 @@ icon_state = "floor_plate" }, /area/lv522/indoors/c_block/garage) -"qqS" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, -/area/lv522/outdoors/w_rockies) "qqW" = ( /obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, @@ -42904,12 +42974,6 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/bridge) -"qJw" = ( -/obj/item/clothing/suit/storage/RO{ - name = "\improper UA jacket" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "qJy" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/shale/layer1, @@ -43613,20 +43677,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"qTO" = ( -/obj/structure/largecrate/supply/ammo/m41a/half{ - pixel_x = 5 - }, -/obj/item/storage/box/guncase/m41a{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/ammo_box/rounds/empty{ - layer = 3.1; - pixel_y = -15 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "qUf" = ( /obj/item/ammo_magazine/rifle/m4ra/ext{ current_rounds = 0 @@ -43678,18 +43728,6 @@ icon_state = "plate" }, /area/lv522/atmos/reactor_garage) -"qUD" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 30 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/ammo_box/rounds/smg{ - layer = 3; - pixel_x = 1; - pixel_y = 4 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "qUL" = ( /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) @@ -43762,6 +43800,20 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) +"qWk" = ( +/obj/structure/largecrate/supply/ammo/m41a/half{ + pixel_x = 5 + }, +/obj/item/storage/box/guncase/m41a{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/ammo_box/rounds/empty{ + layer = 3.1; + pixel_y = -15 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "qWt" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -44438,6 +44490,9 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) +"rgn" = ( +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "rgA" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "101" @@ -44506,12 +44561,6 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/bridges/op_centre) -"rig" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "rii" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "102" @@ -44611,12 +44660,6 @@ icon_state = "kitchen" }, /area/lv522/indoors/a_block/kitchen) -"rkR" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "rkV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -44941,10 +44984,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms/glass) -"rrB" = ( -/obj/vehicle/powerloader, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) "rrI" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -45067,6 +45106,15 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) +"rtA" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/area/lv522/landing_zone_forecon/UD6_Tornado) "rtI" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison, @@ -45520,12 +45568,6 @@ icon_state = "99" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"rCp" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "rCu" = ( /turf/open/floor/prison{ dir = 4; @@ -45571,10 +45613,6 @@ /obj/item/prop/colony/used_flare, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"rDb" = ( -/obj/item/device/m56d_post, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "rDu" = ( /obj/structure/machinery/door_control{ id = "UD6"; @@ -45584,12 +45622,6 @@ icon_state = "53" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"rDz" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "rDM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -46445,6 +46477,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"rUS" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Tornado) "rUX" = ( /obj/structure/shuttle/engine/heater{ dir = 4; @@ -46802,6 +46843,10 @@ }, /turf/open/asphalt/cement, /area/lv522/landing_zone_2/ceiling) +"sbj" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "sbm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -46864,16 +46909,6 @@ icon_state = "40" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"scv" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "scw" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -46882,16 +46917,6 @@ icon_state = "rasputin15" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"scy" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "scM" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/cheeseburger, @@ -48305,6 +48330,19 @@ icon_state = "floor_plate" }, /area/lv522/indoors/lone_buildings/storage_blocks) +"sES" = ( +/obj/item/fuel_cell{ + layer = 3.1; + pixel_x = 3; + pixel_y = 15 + }, +/obj/item/fuel_cell{ + layer = 3.1; + pixel_x = -10; + pixel_y = 18 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "sFb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -48408,15 +48446,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_2/ceiling) -"sGT" = ( -/obj/structure/barricade/deployable, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sGY" = ( -/obj/structure/barricade/deployable, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "sHb" = ( /obj/structure/platform_decoration{ dir = 4 @@ -48436,10 +48465,6 @@ }, /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) -"sHg" = ( -/obj/structure/barricade/deployable, -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "sHk" = ( /obj/structure/curtain/red, /turf/open/floor/corsat{ @@ -49336,10 +49361,6 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/hallway) -"sVX" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "sWn" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost/reinforced, @@ -49546,6 +49567,15 @@ icon_state = "16" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"tbt" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Tornado) "tby" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -50068,6 +50098,12 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) +"tkN" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/area/lv522/landing_zone_forecon/UD6_Tornado) "tkW" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, @@ -50184,6 +50220,15 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/corpo/glass) +"tna" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 30 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Tornado) "tne" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -50372,14 +50417,6 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor/south) -"tqT" = ( -/obj/item/clothing/accessory/red, -/obj/item/clothing/under/liaison_suit/field{ - pixel_y = 9; - pixel_x = -4 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/executive) "tqU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -50519,12 +50556,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"tth" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Tornado) "tti" = ( /obj/structure/platform_decoration{ dir = 4 @@ -50648,6 +50679,13 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms/glass) +"tvL" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "tvO" = ( /turf/open/asphalt/cement{ icon_state = "cement12" @@ -50810,16 +50848,6 @@ dir = 4 }, /area/lv522/indoors/c_block/mining) -"tzm" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Tornado) "tzz" = ( /obj/structure/largecrate/random/secure, /obj/structure/largecrate/random/mini{ @@ -50925,9 +50953,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"tBM" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, -/area/lv522/landing_zone_forecon/UD6_Tornado) "tBQ" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -50993,9 +51018,6 @@ "tCN" = ( /turf/closed/wall/strata_ice/dirty, /area/lv522/outdoors/colony_streets/south_east_street) -"tCR" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/lv522/landing_zone_forecon/UD6_Tornado) "tCX" = ( /turf/open/floor/corsat{ dir = 6; @@ -51008,9 +51030,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"tDm" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, -/area/lv522/landing_zone_forecon/UD6_Tornado) "tDu" = ( /obj/structure/machinery/computer/operating, /obj/structure/surface/table/reinforced/prison, @@ -51298,12 +51317,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"tIF" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Tornado) "tIM" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; @@ -51619,14 +51632,6 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/storage_blocks) -"tNT" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_covered_bed" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) "tOe" = ( /obj/structure/platform{ dir = 8 @@ -51870,6 +51875,10 @@ icon_state = "rasputin15" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"tTb" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "tTl" = ( /obj/structure/prop/almayer/computers/sensor_computer3{ layer = 2.9 @@ -52339,6 +52348,16 @@ icon_state = "kitchen" }, /area/lv522/indoors/a_block/fitness) +"ucs" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Tornado) "ucx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -53736,16 +53755,6 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) -"uDM" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Tornado) "uDP" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -54138,6 +54147,12 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/casino) +"uJf" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "uJl" = ( /obj/structure/filingcabinet{ density = 0; @@ -54210,9 +54225,6 @@ /mob/living/simple_animal/mouse, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"uKQ" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) "uKR" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -54940,9 +54952,6 @@ icon_state = "floor_marked" }, /area/lv522/landing_zone_2/ceiling) -"uXj" = ( -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Tornado) "uXp" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/effect/decal/warning_stripes{ @@ -55081,15 +55090,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"vbk" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_middle, -/area/lv522/landing_zone_forecon/UD6_Tornado) "vbm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -55474,10 +55474,10 @@ }, /area/lv522/landing_zone_forecon/UD6_Typhoon) "vir" = ( -/obj/structure/closet/wardrobe/engineering_yellow, /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, +/obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/prison{ dir = 4; icon_state = "darkyellowfull2" @@ -55564,16 +55564,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vjs" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Tornado) "vju" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -56372,12 +56362,6 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/medical) -"vzc" = ( -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) "vzd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -56483,6 +56467,16 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) +"vAu" = ( +/obj/item/fuel_cell{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor) "vAW" = ( /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/prison{ @@ -57104,6 +57098,21 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) +"vKJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Marshal Office Armory" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Armoury-Lockdown" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/security) "vKO" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -59324,15 +59333,6 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/executive) -"wBr" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 30 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Tornado) "wBx" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 @@ -59608,6 +59608,10 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) +"wGc" = ( +/obj/item/device/m56d_post, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "wGh" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -59696,6 +59700,9 @@ icon_state = "greenfull" }, /area/lv522/landing_zone_1/ceiling) +"wHw" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/lv522/landing_zone_forecon/UD6_Tornado) "wHz" = ( /obj/item/clothing/shoes/veteran/pmc{ name = "steel toe boots" @@ -59821,6 +59828,15 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/casino) +"wKH" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/area/lv522/landing_zone_forecon/UD6_Tornado) "wKR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -60976,16 +60992,6 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/security) -"xkk" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Tornado) "xkr" = ( /obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/cleanable/dirt, @@ -61286,6 +61292,16 @@ "xqp" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/landing_zone_1) +"xqN" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "xqV" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/prison{ @@ -61481,18 +61497,6 @@ /obj/effect/spider/spiderling/nogrow, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"xvy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/clothing/suit/storage/jacket/marine/corporate, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) "xvB" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat{ @@ -61636,6 +61640,9 @@ icon_state = "darkyellowfull2" }, /area/lv522/indoors/lone_buildings/outdoor_bot) +"xyu" = ( +/turf/open/shuttle/dropship/can_surgery/dark_grey, +/area/lv522/landing_zone_forecon/UD6_Tornado) "xyC" = ( /obj/structure/machinery/landinglight/ds2/delaythree, /obj/effect/decal/cleanable/dirt, @@ -62368,15 +62375,6 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor/south) -"xNu" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, -/area/lv522/landing_zone_forecon/UD6_Tornado) "xNG" = ( /obj/structure/machinery/computer/crew/colony{ density = 0; @@ -62740,6 +62738,10 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) +"xTb" = ( +/obj/vehicle/powerloader, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "xTj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname, @@ -63704,6 +63706,9 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) +"ykj" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, +/area/lv522/landing_zone_forecon/UD6_Tornado) "ykn" = ( /obj/structure/surface/table/almayer, /obj/structure/window/reinforced{ @@ -66619,12 +66624,12 @@ obe pRM qnk qHA -qTO -kMT -eJQ -rCp -scv -rCp +qWk +rgn +sbj +uJf +kbq +uJf tdH nfq fDg @@ -66844,14 +66849,14 @@ pps pxY pIu nbO -qnV -eAa -eAa -rig -eAa -rDb -eAa -sGT +tvL +bmR +bmR +aXR +bmR +wGc +bmR +mNz tdS tzA tSJ @@ -67069,16 +67074,16 @@ cpy cpy ppF pys -pIO -pTH -qpg +jvF +pBz +iGk qJl qUf riE ruj rDu xKc -sGY +fwh pBQ rjP rus @@ -67298,14 +67303,14 @@ pqZ pyO qst gTM -qqS -qJw -eAa -eAa -sVX -eAa -rig -sHg +ghY +oxd +bmR +bmR +tTb +bmR +aXR +aom teL tzF tSU @@ -67527,12 +67532,12 @@ rWS pUc qrj qLd -qUD -rkR -rkR -rDz -scy -rDz +nBh +ori +ori +ngy +xqN +ngy tfV rFp sdE @@ -68968,9 +68973,9 @@ nJv rCa rCa nJv -vzc -vzc -vzc +bbi +bbi +bbi xVd nJv hpq @@ -69198,7 +69203,7 @@ nJv bzL qmA qmA -vzc +bbi nJv hpq ofi @@ -69425,7 +69430,7 @@ nJv cNO qmA mdp -vzc +bbi nJv gpB ofi @@ -69652,7 +69657,7 @@ nJv rZg mwC kIs -vzc +bbi nJv gpB ofi @@ -81794,7 +81799,7 @@ mKN lko lLA jqL -tNT +cBU mvI pZy wAB @@ -83215,7 +83220,7 @@ xlU sjy sjy sjy -lzn +drg sjy tpa tpa @@ -83678,7 +83683,7 @@ sjy sjy uqx sjy -lAM +vKJ sjy uqx sjy @@ -85304,7 +85309,7 @@ jmG oQN vBd wtT -pnu +sES vBd eVc vVS @@ -86158,7 +86163,7 @@ wcp wwM jYZ hlH -xvy +jHm jtZ lvX lvX @@ -88674,7 +88679,7 @@ gwR sjy sjy sjy -hvZ +cxn sjy sjy cBs @@ -88808,8 +88813,8 @@ hwt jcl eHp dHk -gKD -gpu +vAu +lkx tra saC saC @@ -90243,7 +90248,7 @@ xjF vSc xjF gCO -tqT +meM wgW wgW jRT @@ -97721,7 +97726,7 @@ dVo ipf qxX qUq -kNM +guj nLW oBx nTg @@ -103408,14 +103413,14 @@ nSF qUL sct sIA -tth -uDM -tth -uXj -uXj -tth -xkk -tth +dpS +qbP +dpS +xyu +xyu +dpS +gdr +dpS fLa bpZ wRL @@ -103635,18 +103640,18 @@ rfi rAc shq sKi -tBM -uKQ -uKQ -uKQ -uKQ -qjX -uKQ -hFm -dqn -dic -uDM -tth +hLR +dNx +dNx +dNx +dNx +nHF +dNx +oeV +rtA +tbt +qbP +dpS nPn lVs bUy @@ -103862,18 +103867,18 @@ rgA rBZ slK sYh -tCR +wHw sjS wAf skE skE nQY kNR -tCR -fTm -uKQ -uKQ -rrB +wHw +tkN +dNx +dNx +xTb srE qUL iQt @@ -104089,18 +104094,18 @@ rii rCi ssU sKi -tDm -uKQ -uKQ -uKQ -uKQ -uKQ -uKQ -iSu -vbk -xNu -vjs -tIF +bYC +dNx +dNx +dNx +dNx +dNx +dNx +ykj +wKH +rUS +jAX +goC ifg gOZ hZc @@ -104316,14 +104321,14 @@ qUL pTW swr sIA -tIF -vjs -wBr -uXj -uXj -tIF -tzm -tIF +goC +jAX +tna +xyu +xyu +goC +ucs +goC twB fXn uSB diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm index 0e1948deadf3..11f57fc6680c 100644 --- a/maps/map_files/LV624/LV624.dmm +++ b/maps/map_files/LV624/LV624.dmm @@ -10399,15 +10399,6 @@ icon_state = "podhatchfloor" }, /area/lv624/lazarus/comms) -"aTo" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/lattice{ - layer = 2.9 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) "aTq" = ( /obj/structure/foamed_metal, /turf/open/floor{ @@ -10688,7 +10679,10 @@ /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/decal/cleanable/dirt, -/obj/structure/foamed_metal, +/obj/structure/foamed_metal{ + layer = 3.01 + }, +/obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor{ icon_state = "dark" }, @@ -10892,10 +10886,8 @@ /obj/structure/lattice{ layer = 2.9 }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, /obj/structure/platform, +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating{ dir = 6; icon_state = "warnplate" @@ -10911,13 +10903,11 @@ /obj/structure/lattice{ layer = 2.9 }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, /obj/item/clothing/head/hardhat/orange{ pixel_x = -7; pixel_y = 13 }, +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating{ dir = 8; icon_state = "warnplate" @@ -10927,9 +10917,7 @@ /obj/structure/lattice{ layer = 2.9 }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating{ dir = 4; icon_state = "warnplate" @@ -11213,11 +11201,11 @@ }, /area/lv624/lazarus/engineering) "aWg" = ( -/obj/structure/machinery/power/geothermal, /obj/structure/lattice{ layer = 2.9 }, /obj/structure/platform, +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating{ dir = 10; icon_state = "warnplate" @@ -12059,6 +12047,9 @@ /obj/item/device/multitool, /obj/item/device/assembly/prox_sensor, /obj/effect/decal/cleanable/dirt, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /turf/open/floor{ icon_state = "dark" }, @@ -17021,9 +17012,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating{ dir = 8; icon_state = "warnplate" @@ -17983,9 +17972,7 @@ /obj/structure/lattice{ layer = 2.9 }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating{ icon_state = "warnplate" }, @@ -22207,13 +22194,13 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) "tem" = ( -/obj/structure/machinery/power/geothermal, /obj/structure/lattice{ layer = 2.9 }, /obj/structure/machinery/light{ dir = 8 }, +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating{ dir = 4; icon_state = "warnplate" @@ -44602,7 +44589,7 @@ aQr aQo aSi aSL -aTo +lHc ogR aUs nwR diff --git a/maps/map_files/New_Varadero/New_Varadero.dmm b/maps/map_files/New_Varadero/New_Varadero.dmm index ca983240307f..fbcba0174790 100644 --- a/maps/map_files/New_Varadero/New_Varadero.dmm +++ b/maps/map_files/New_Varadero/New_Varadero.dmm @@ -4392,13 +4392,6 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"cNC" = ( -/obj/item/fuelCell{ - pixel_x = 4; - pixel_y = 22 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) "cNF" = ( /obj/structure/machinery/light{ dir = 4 @@ -5636,6 +5629,16 @@ icon_state = "asteroidplating" }, /area/varadero/interior_protected/maintenance/south) +"dJI" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior/maintenance/security) "dJX" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, @@ -6068,24 +6071,6 @@ icon_state = "yellow" }, /area/varadero/interior/cargo) -"dZZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/tarbacks{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/tool/lighter/zippo/black{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/ashtray/plastic{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) "eat" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -7100,6 +7085,15 @@ icon_state = "asteroidplating" }, /area/varadero/interior/maintenance/security) +"eGd" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior/electrical) "eGq" = ( /obj/item/reagent_container/food/snacks/eat_bar, /obj/item/reagent_container/food/snacks/eat_bar{ @@ -14289,6 +14283,24 @@ icon_state = "asteroidplating" }, /area/varadero/exterior/lz1_near) +"jkq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/tarbacks{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/tool/lighter/zippo/black{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/ashtray/plastic{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva{ + icon_state = "blue" + }, +/area/varadero/interior/technical_storage) "jks" = ( /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" @@ -28758,6 +28770,13 @@ default_name = "shallow ocean" }, /area/varadero/exterior/eastocean) +"spN" = ( +/obj/item/fuel_cell{ + pixel_x = 4; + pixel_y = 22 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) "spP" = ( /obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/green, @@ -28985,6 +29004,13 @@ icon_state = "asteroidplating" }, /area/varadero/interior_protected/maintenance/south) +"swM" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior/electrical) "swV" = ( /obj/structure/closet/crate/construction, /turf/open/auto_turf/sand_white/layer1, @@ -29519,15 +29545,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"sLi" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) "sLO" = ( /obj/item/device/flashlight/slime{ mouse_opacity = 0; @@ -30123,6 +30140,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) +"thp" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior/electrical) "thS" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -31416,12 +31439,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"ubK" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) "ubT" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -32750,6 +32767,7 @@ /obj/structure/machinery/light{ dir = 4 }, +/obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -36394,13 +36412,6 @@ icon_state = "floor3" }, /area/varadero/interior/cargo) -"xjp" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) "xka" = ( /obj/structure/window/framed/colony/reinforced{ color = "#aba9a9" @@ -48027,7 +48038,7 @@ ibP haT teu haT -dZZ +jkq ykw cIB waB @@ -54234,7 +54245,7 @@ bkM pKs pKs bkM -cNC +spN etv cto xxk @@ -60381,9 +60392,9 @@ mSf kCA rsB wOO -ubK -ubK -sLi +thp +thp +eGd pkT pAZ wOO @@ -60749,7 +60760,7 @@ lur lur lur fEu -ubK +thp oSX viK xJZ @@ -60931,7 +60942,7 @@ aDZ aDZ rTv fEu -ubK +thp oSX mZk xJZ @@ -61113,7 +61124,7 @@ rKl lur cbg fEu -xjp +swM wOO viK xJZ @@ -61661,7 +61672,7 @@ uZa mEB mEB oSX -xJZ +dJI xJZ xJZ viK diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm index 1f81d5d13e61..c781fdff23cc 100644 --- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm +++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm @@ -264,10 +264,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aaV" = ( -/obj/item/fuelCell, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) "aaW" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -460,10 +456,6 @@ icon_state = "multi_tiles" }, /area/strata/ug/interior/jungle/deep/structures/res) -"abG" = ( -/obj/item/fuelCell, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) "abH" = ( /obj/structure/surface/rack, /obj/item/storage/box/explosive_mines, @@ -668,18 +660,6 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"acf" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/item/fuelCell, -/turf/open/floor/strata{ - icon_state = "red2" - }, -/area/strata/ag/interior/outpost/engi) "acg" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -856,15 +836,6 @@ icon_state = "floor2" }, /area/strata/ug/interior/jungle/deep/structures/res) -"acC" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/item/fuelCell, -/turf/open/floor/strata{ - icon_state = "red2" - }, -/area/strata/ag/interior/outpost/engi) "acE" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata{ @@ -1466,6 +1437,14 @@ icon_state = "red1" }, /area/strata/ug/interior/jungle/deep/structures/res) +"aem" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "aen" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/brown_base/layer0, @@ -1898,26 +1877,6 @@ icon_state = "blue1" }, /area/strata/ug/interior/jungle/deep/structures/res) -"afB" = ( -/obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"afC" = ( -/obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "afD" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 @@ -3361,19 +3320,6 @@ icon_state = "purp2" }, /area/strata/ug/interior/jungle/deep/structures/engi) -"ajP" = ( -/obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "ajQ" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/strata{ @@ -5685,12 +5631,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"arg" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/strata/ag/interior/dorms) "arh" = ( /turf/open/floor/prison{ icon_state = "floor_plate" @@ -6114,15 +6054,6 @@ icon_state = "darkyellowfull2" }, /area/strata/ag/interior/outpost/engi) -"asr" = ( -/obj/item/fuelCell, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "ass" = ( /obj/structure/surface/rack, /obj/item/storage/box/donkpockets, @@ -6524,15 +6455,6 @@ icon_state = "fake_wood" }, /area/strata/ag/interior/dorms) -"ats" = ( -/obj/item/fuelCell, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) "att" = ( /obj/structure/machinery/camera/autoname{ dir = 4 @@ -8291,6 +8213,12 @@ dir = 1; pixel_y = 20 }, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, /turf/open/floor/strata{ icon_state = "floor3" }, @@ -8328,18 +8256,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/north_outpost) -"ayP" = ( -/obj/item/fuelCell, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red2" - }, -/area/strata/ag/interior/outpost/engi) "ayS" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata{ @@ -11120,10 +11036,6 @@ "aHv" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/engi) -"aHw" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) "aHy" = ( /obj/item/lightstick/red/planted, /obj/structure/platform/strata/metal{ @@ -15779,29 +15691,12 @@ icon_state = "cyan2" }, /area/strata/ag/interior/outpost/canteen/bar) -"aXj" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aXk" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"aXl" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/obj/item/book/manual/research_and_development, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aXn" = ( /obj/structure/sink{ dir = 1; @@ -16968,13 +16863,6 @@ icon_state = "cyan2" }, /area/strata/ag/interior/outpost/canteen/bar) -"bbE" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "bbF" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; @@ -18156,12 +18044,6 @@ /obj/structure/sign/safety/fire_haz, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"bfZ" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) "bga" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -19265,11 +19147,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/vanyard) -"bjT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/fuelCell, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) "bjU" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -28576,16 +28453,6 @@ icon_state = "red1" }, /area/strata/ag/interior/dorms/flight_control) -"coc" = ( -/obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "cof" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -29287,14 +29154,6 @@ icon_state = "red1" }, /area/strata/ag/interior/dorms) -"ctE" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/book/manual/detective, -/turf/open/floor/strata, -/area/strata/ag/interior/dorms) "ctF" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/strata{ @@ -29752,13 +29611,6 @@ icon_state = "multi_tiles" }, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"cIQ" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) "cJf" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer1, @@ -29938,6 +29790,10 @@ icon_state = "cement3" }, /area/strata/ag/interior/landingzone_1) +"cZZ" = ( +/obj/item/fuel_cell, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) "daq" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) @@ -30221,6 +30077,10 @@ icon_state = "orange_cover" }, /area/strata/ag/interior/outpost/engi/drome) +"dCb" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) "dCu" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -30607,14 +30467,6 @@ }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"elE" = ( -/obj/structure/machinery/power/geothermal, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/shed_five_caves) "emg" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 @@ -30739,6 +30591,11 @@ icon_state = "orange_cover" }, /area/strata/ag/exterior/tcomms/tcomms_deck) +"ezK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/fuel_cell, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) "eBo" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/asphalt/cement{ @@ -31031,13 +30888,6 @@ icon_state = "red1" }, /area/strata/ag/interior/landingzone_checkpoint) -"eUe" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/vanyard) "eUW" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -31309,6 +31159,12 @@ /obj/structure/dropship_equipment/mg_holder, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"fwi" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/strata/ag/interior/dorms) "fwV" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, @@ -31335,6 +31191,18 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/east_dorms) +"fyU" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/obj/item/fuel_cell, +/turf/open/floor/strata{ + icon_state = "red2" + }, +/area/strata/ag/interior/outpost/engi) "fzn" = ( /obj/structure/closet/secure_closet/freezer/fridge, /turf/open/floor/strata{ @@ -32156,6 +32024,13 @@ icon_state = "red3" }, /area/strata/ag/interior/outpost/med) +"gOC" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ag/exterior/shed_five_caves) "gOL" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt/cement, @@ -33516,6 +33391,15 @@ icon_state = "multi_tiles" }, /area/strata/ug/interior/jungle/deep/structures/res) +"jfh" = ( +/obj/item/fuel_cell, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/dorms) "jgX" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/barricade/handrail/strata{ @@ -33614,6 +33498,14 @@ /obj/structure/prop/dam/drill, /turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) +"jqg" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/book/manual/detective, +/turf/open/floor/strata, +/area/strata/ag/interior/dorms) "jrs" = ( /obj/structure/machinery/door/airlock/prison{ name = "Reinforced Airlock" @@ -33746,6 +33638,12 @@ icon_state = "white_cyan3" }, /area/strata/ag/interior/outpost/med) +"jBp" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/admin) "jBO" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata{ @@ -33810,6 +33708,18 @@ /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/center) +"jIv" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "jIz" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -33914,6 +33824,16 @@ icon_state = "cement1" }, /area/strata/ag/exterior/landingzone_2) +"jPT" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "jPV" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, @@ -34334,6 +34254,13 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) +"kCa" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/strata{ + icon_state = "orange_cover" + }, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "kCf" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata{ @@ -36006,6 +35933,19 @@ "noq" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/east_dorms) +"npf" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "npy" = ( /obj/structure/closet/secure_closet/medical3{ req_access = null @@ -36209,6 +36149,14 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"nNR" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/obj/item/book/manual/research_and_development, +/turf/open/floor/strata{ + icon_state = "orange_cover" + }, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "nOE" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/far, @@ -36606,6 +36554,18 @@ icon_state = "floor3" }, /area/strata/ag/interior/outpost/engi/drome) +"oCc" = ( +/obj/item/fuel_cell, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata{ + icon_state = "red2" + }, +/area/strata/ag/interior/outpost/engi) "oDw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -36936,6 +36896,15 @@ icon_state = "floor3" }, /area/strata/ag/interior/dorms) +"piu" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata{ + icon_state = "orange_cover" + }, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "piD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/cheesecakeslice, @@ -37906,6 +37875,13 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"qDI" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ag/interior/tcomms) "qFH" = ( /obj/structure/filingcabinet, /turf/open/floor/strata{ @@ -38263,6 +38239,14 @@ icon_state = "floor3" }, /area/strata/ag/exterior/research_decks) +"rfB" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ag/exterior/shed_five_caves) "rgt" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -38351,6 +38335,13 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) +"rjn" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ag/exterior/vanyard) "rjG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/asphalt/cement, @@ -38739,6 +38730,10 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"rXZ" = ( +/obj/item/fuel_cell, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) "sah" = ( /obj/item/weapon/gun/pistol/t73, /turf/open/auto_turf/strata_grass/layer1, @@ -38773,6 +38768,15 @@ icon_state = "purp2" }, /area/strata/ug/interior/jungle/deep/structures/engi) +"scp" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/item/fuel_cell, +/turf/open/floor/strata{ + icon_state = "red2" + }, +/area/strata/ag/interior/outpost/engi) "seb" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, @@ -38910,6 +38914,15 @@ icon_state = "cement9" }, /area/strata/ug/interior/jungle/platform/east/scrub) +"soD" = ( +/obj/item/fuel_cell, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/engi) "spp" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, @@ -39538,6 +39551,12 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) +"tuV" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/engi) "tvk" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -41643,13 +41662,6 @@ icon_state = "fake_wood" }, /area/strata/ag/interior/landingzone_checkpoint) -"wVU" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/shed_five_caves) "wWK" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -47803,7 +47815,7 @@ aac aac aac crA -afB +jIv cEu agD aiE @@ -47998,14 +48010,14 @@ aac aac aac crA -afC +aem aiE agE aiE cnO -coc +jPT ajl -ajP +npf cnO ddp alG @@ -48407,7 +48419,7 @@ apZ ctC ctC ctC -ctE +jqg avr bWy bPs @@ -49771,7 +49783,7 @@ afW afW afW asb -ats +jfh bYE cbj bZV @@ -51134,7 +51146,7 @@ anq auC crY crY -arg +fwi ase att crY @@ -55319,7 +55331,7 @@ qfC aac aac sgG -cIQ +qDI gpr tRC sgG @@ -56067,7 +56079,7 @@ aac aac aac rOB -eUe +rjn khh vtl dOO @@ -57815,7 +57827,7 @@ aac bfg bgJ xdr -wVU +gOC jVg sXu okE @@ -58010,7 +58022,7 @@ aac bfg bgI xdr -wVU +gOC fEW sau okE @@ -58205,7 +58217,7 @@ bfe bfc bgI xdr -elE +rfB hPK hYl okE @@ -62847,7 +62859,7 @@ bXq ajW aUV aGr -aHw +dCb oKo aKx dgB @@ -63042,7 +63054,7 @@ bXq dgB aUV uWG -aHw +dCb oKo oKo aLP @@ -63237,7 +63249,7 @@ aCV bXq aUV vBs -aHw +dCb oKo oKo aLQ @@ -63425,7 +63437,7 @@ oBn oBn avP oKo -aIV +tuV aAn aBR aCW @@ -63627,7 +63639,7 @@ dgB aIV aUV aGr -aHw +dCb oKo aKy aLR @@ -63822,7 +63834,7 @@ dgB aIV aUV uWG -aHw +dCb oKo dgB dgB @@ -64017,7 +64029,7 @@ dgB aIV aUV vBs -aHw +dCb oKo aKA dgB @@ -64395,7 +64407,7 @@ ayw awJ aAR arr -asr +soD atF auA avS @@ -64940,7 +64952,7 @@ aam cdo pIa aax -abG +cZZ cdo cdo cjq @@ -65960,10 +65972,10 @@ ijo auF ijo aHv -ayP -ayP -acf -acC +oCc +oCc +fyU +scp oKo aMX dgB @@ -67089,7 +67101,7 @@ pIa pIa cpV cpV -bjT +ezK aam cdo ahn @@ -67284,7 +67296,7 @@ aag pIa aao pIa -bjT +ezK aam cdo ahn @@ -67870,7 +67882,7 @@ aac aac pIa pIa -aaV +rXZ cdo aam adC @@ -68517,7 +68529,7 @@ bWH bll bll bdI -bfZ +jBp bjf bjc cik @@ -73193,9 +73205,9 @@ chd chd cpU aVE -aXj +piu aZw -bbE +kCa cpU crI aHP @@ -73583,7 +73595,7 @@ cdn aSs cpU aVF -aXl +nNR aZy bbG cpU diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 3cd01dcd50f2..d94beaf747b3 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -304,20 +304,10 @@ /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/lifeboat_pumps/north2) -"abj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "abk" = ( /obj/structure/window/reinforced/toughened, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"abn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "abs" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/north1) @@ -375,6 +365,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"abN" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "abQ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -411,6 +410,15 @@ icon_state = "tcomms" }, /area/almayer/shipboard/weapon_room) +"aca" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "acc" = ( /obj/structure/machinery/door/airlock/almayer/security{ access_modified = 1; @@ -433,6 +441,12 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"ace" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "acf" = ( /turf/closed/wall/almayer/outer, /area/almayer/living/starboard_garden) @@ -798,6 +812,14 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) +"ade" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "adg" = ( /turf/open/floor/almayer, /area/almayer/hallways/repair_bay) @@ -1323,6 +1345,14 @@ "afz" = ( /turf/open/floor/almayer/empty, /area/almayer/hallways/vehiclehangar) +"afA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "afB" = ( /obj/structure/machinery/light{ dir = 1 @@ -1550,27 +1580,6 @@ "agu" = ( /turf/open/floor/almayer, /area/almayer/living/officer_study) -"agv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - access_modified = 1; - dir = 2; - name = "\improper Requisitions Break Room"; - req_one_access_txt = "19;21" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) "agw" = ( /obj/structure/machinery/light{ dir = 8 @@ -1810,14 +1819,6 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) -"ahL" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ - pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "ahM" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -2119,6 +2120,12 @@ icon_state = "silver" }, /area/almayer/hallways/repair_bay) +"ajq" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "ajr" = ( /turf/open/floor/almayer{ dir = 1; @@ -2633,10 +2640,6 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"alh" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "ali" = ( /turf/open/floor/almayer{ dir = 8; @@ -2818,6 +2821,12 @@ "alX" = ( /turf/open/floor/almayer, /area/almayer/command/cic) +"alY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) "alZ" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -2899,14 +2908,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"amu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "amw" = ( /turf/open/floor/almayer{ dir = 9; @@ -3076,19 +3077,6 @@ icon_state = "silvercorner" }, /area/almayer/hallways/aft_hallway) -"ang" = ( -/obj/item/clothing/head/welding{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "anh" = ( /turf/open/floor/almayer{ dir = 6; @@ -3288,18 +3276,6 @@ icon_state = "silvercorner" }, /area/almayer/hallways/repair_bay) -"anU" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/offices/flight) "anV" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ @@ -3341,12 +3317,6 @@ "aoe" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/morgue) -"aog" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) "aoh" = ( /obj/structure/morgue/crematorium, /turf/open/floor/almayer{ @@ -3546,12 +3516,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) -"aoN" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) "aoP" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -3643,6 +3607,15 @@ icon_state = "plating" }, /area/almayer/engineering/upper_engineering) +"aoZ" = ( +/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/hull/upper/u_a_s) "apa" = ( /obj/structure/surface/rack, /obj/item/tool/screwdriver, @@ -3783,6 +3756,9 @@ icon_state = "blue" }, /area/almayer/hallways/aft_hallway) +"apx" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_bow) "apz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -4104,13 +4080,6 @@ icon_state = "plate" }, /area/almayer/medical/medical_science) -"aqH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "aqI" = ( /turf/open/floor/almayer{ dir = 8; @@ -4193,9 +4162,6 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) -"aqZ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_stern) "arb" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) @@ -4681,6 +4647,12 @@ icon_state = "plate" }, /area/almayer/medical/morgue) +"asV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "asW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -4943,12 +4915,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"atS" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "atT" = ( /obj/structure/toilet{ dir = 1 @@ -5111,6 +5077,15 @@ icon_state = "test_floor4" }, /area/almayer/hallways/starboard_hallway) +"aux" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) "auy" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -6007,6 +5982,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"axT" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "axV" = ( /obj/structure/machinery/telecomms/server/presets/command, /turf/open/floor/almayer{ @@ -6381,12 +6360,6 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering) -"azg" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "azh" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer{ @@ -7150,6 +7123,17 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) +"aBK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) +"aBO" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "aBP" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ access_modified = 1; @@ -7160,15 +7144,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/hull/upper/u_m_p) "aBR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ashtray/glass, @@ -7314,6 +7289,11 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) +"aCr" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "aCt" = ( /obj/structure/bed/sofa/south/white/right, /turf/open/floor/almayer{ @@ -7325,10 +7305,14 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/medical/morgue) -"aCA" = ( -/obj/structure/largecrate/random/barrel/white, +"aCB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/lower/l_a_p) "aCC" = ( /turf/open/floor/almayer{ icon_state = "sterile_green" @@ -7571,6 +7555,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) +"aDG" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = 25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "aDH" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -7661,6 +7656,21 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"aDY" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full{ + pixel_y = 8 + }, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/suit/storage/hazardvest/black, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "aDZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -7725,15 +7735,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/stern_hallway) -"aEr" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "aEA" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -7764,6 +7765,14 @@ icon_state = "silver" }, /area/almayer/command/cic) +"aEE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "aEG" = ( /obj/structure/bed/chair{ dir = 8 @@ -7995,6 +8004,20 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) +"aFx" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart/green, +/obj/item/weapon/dart/green, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "aFy" = ( /obj/structure/bed/chair{ dir = 8 @@ -8035,6 +8058,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) +"aFE" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "aFF" = ( /obj/structure/machinery/light{ dir = 4 @@ -8083,13 +8112,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/stern_hallway) -"aGa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "aGb" = ( /obj/structure/ladder{ height = 2; @@ -8128,6 +8150,11 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) +"aGh" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "aGj" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 2; @@ -8138,12 +8165,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"aGm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_p) "aGn" = ( /obj/structure/barricade/handrail, /turf/open/floor/almayer{ @@ -8420,6 +8441,19 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering) +"aHx" = ( +/obj/structure/ladder/fragile_almayer{ + height = 2; + id = "kitchen" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "aHK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -8510,11 +8544,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"aIh" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "aIl" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8831,6 +8860,16 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"aJB" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "aJG" = ( /obj/structure/bed/chair/office/dark{ dir = 8; @@ -9203,11 +9242,6 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"aMf" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "aMg" = ( /obj/structure/sign/safety/intercom{ layer = 2.9; @@ -9354,10 +9388,6 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"aML" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "aMM" = ( /turf/open/floor/almayer{ dir = 4; @@ -9462,6 +9492,18 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) +"aNz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "aNG" = ( /turf/open/floor/almayer{ dir = 4; @@ -9747,14 +9789,12 @@ icon_state = "red" }, /area/almayer/hallways/stern_hallway) -"aPe" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 +"aPd" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/lower/l_f_p) "aPf" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, @@ -9889,19 +9929,13 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/alpha) -"aPN" = ( -/obj/structure/ladder{ - height = 2; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 +"aPP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/s_bow) -"aPO" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_a_s) "aPS" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/almayer{ @@ -10135,6 +10169,14 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering) +"aRm" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "aRo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -10333,18 +10375,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 @@ -10531,6 +10561,24 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_two) +"aSV" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = 35 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + anchored = 1; + chemical = null; + density = 0; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "aTa" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -10610,6 +10658,12 @@ icon_state = "green" }, /area/almayer/living/offices) +"aTu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "aTv" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; @@ -11162,6 +11216,15 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) +"aWj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Officer's Bunk" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/bridgebunks) "aWk" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -11320,6 +11383,14 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) +"aWY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) "aWZ" = ( /obj/structure/pipes/standard/simple/visible, /obj/structure/window/framed/almayer, @@ -11344,6 +11415,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"aXd" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "aXe" = ( /turf/open/floor/almayer{ dir = 1; @@ -11394,6 +11471,9 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/stern_hallway) +"aXO" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper) "aXS" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -11412,12 +11492,31 @@ icon_state = "mono" }, /area/almayer/hallways/stern_hallway) +"aXV" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig"; + closeOtherId = "brigmaint_n" + }, +/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) "aYd" = ( /obj/structure/dropship_equipment/medevac_system, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"aYf" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "aYj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -11508,6 +11607,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/starboard_hallway) +"aYN" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "aYO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -11545,12 +11648,6 @@ icon_state = "plate" }, /area/almayer/hallways/starboard_hallway) -"aYU" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "aYV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -11630,16 +11727,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/starboard_hallway) -"aZl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) "aZr" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -11652,14 +11739,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"aZv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/u_m_p) "aZy" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -11703,12 +11782,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/stern_hallway) -"aZI" = ( -/obj/structure/reagent_dispensers/watertank, +"aZJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "green" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/squads/req) "aZK" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -11927,17 +12013,6 @@ "baZ" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_lobby) -"bba" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "bbd" = ( /obj/structure/machinery/light{ dir = 4 @@ -12309,6 +12384,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_two) +"bcQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/clothing/head/soft/ferret{ + pixel_x = -7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "bcR" = ( /obj/structure/sink{ pixel_y = 32 @@ -12641,6 +12729,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_one) +"beA" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_m_s) "beB" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -12755,9 +12849,6 @@ icon_state = "redcorner" }, /area/almayer/living/cryo_cells) -"bfs" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/l_f_s) "bft" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -12868,6 +12959,18 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"bfO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/photocopier{ + anchored = 0 + }, +/obj/structure/sign/poster/art{ + pixel_y = 32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "bfV" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 @@ -13108,6 +13211,12 @@ icon_state = "red" }, /area/almayer/squads/alpha) +"bhe" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "bhf" = ( /obj/structure/machinery/light{ dir = 4 @@ -13139,13 +13248,6 @@ icon_state = "plate" }, /area/almayer/hallways/starboard_umbilical) -"bhn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) "bho" = ( /obj/structure/machinery/computer/med_data, /turf/open/floor/almayer{ @@ -13169,14 +13271,6 @@ icon_state = "plate" }, /area/almayer/living/chapel) -"bhy" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "bhG" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -13220,22 +13314,20 @@ /turf/open/floor/almayer, /area/almayer/hallways/hangar) "bhV" = ( -/obj/structure/ladder/fragile_almayer{ - height = 2; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, +/area/almayer/maint/hull/lower/l_a_s) +"bib" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/access_button/airlock_exterior, /turf/open/floor/almayer{ 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, +/area/almayer/maint/hull/upper/u_a_s) +"bic" = ( +/obj/structure/largecrate/machine/bodyscanner, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -13276,6 +13368,13 @@ icon_state = "test_floor4" }, /area/almayer/medical/chemistry) +"biv" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/item/frame/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "biy" = ( /obj/structure/pipes/unary/freezer, /obj/structure/machinery/power/apc/almayer{ @@ -13293,13 +13392,6 @@ "biA" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_three) -"biC" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/access_button/airlock_exterior, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "biF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/roller/surgical, @@ -13357,10 +13449,11 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/starboard_garden) -"bjg" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"bjh" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "bjk" = ( /obj/structure/machinery/door_control{ id = "perma_lockdown_2"; @@ -13383,14 +13476,6 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"bjt" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "bju" = ( /turf/open/floor/almayer{ dir = 1; @@ -13415,6 +13500,12 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) +"bjH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "bjJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -13552,6 +13643,14 @@ "bkA" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/chemistry) +"bkB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "bkD" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 2; @@ -13716,22 +13815,6 @@ icon_state = "plate" }, /area/almayer/living/offices) -"blq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/cryo_cells) "bls" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -13772,6 +13855,9 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lockerroom) +"bma" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_stern) "bmb" = ( /turf/open/floor/almayer{ dir = 8; @@ -13955,18 +14041,6 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"bmC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-y" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) "bmD" = ( /turf/open/floor/almayer{ dir = 5; @@ -14133,14 +14207,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/aft_hallway) -"bnF" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_m_p) "bnH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -14240,9 +14306,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"bos" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) "bot" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light{ @@ -14305,11 +14368,6 @@ "boL" = ( /turf/open/floor/almayer, /area/almayer/living/starboard_garden) -"boU" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "boV" = ( /obj/structure/cargo_container/wy/left, /obj/structure/prop/almayer/minigun_crate{ @@ -14547,6 +14605,10 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"bqM" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "bqN" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -14556,14 +14618,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lockerroom) -"bqP" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 5" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "bqR" = ( /turf/open/floor/almayer{ dir = 6; @@ -14710,6 +14764,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) +"brD" = ( +/obj/structure/closet, +/obj/item/clothing/suit/armor/riot/marine/vintage_riot, +/obj/item/clothing/head/helmet/riot/vintage_riot, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "brH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -14938,12 +15003,6 @@ icon_state = "red" }, /area/almayer/squads/alpha) -"bsV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) "bsW" = ( /obj/structure/machinery/cm_vending/clothing/leader/bravo, /turf/open/floor/almayer{ @@ -14979,22 +15038,6 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"btn" = ( -/obj/item/device/camera{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/camera_film, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "btp" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -15042,6 +15085,9 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"btL" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_s) "btM" = ( /obj/effect/spawner/random/toolbox, /obj/structure/pipes/vents/scrubber{ @@ -15061,15 +15107,6 @@ "btO" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"btV" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "btX" = ( /obj/structure/machinery/light{ dir = 4 @@ -15219,6 +15256,25 @@ icon_state = "plate" }, /area/almayer/squads/bravo) +"buY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "bvb" = ( /obj/structure/machinery/light{ dir = 8 @@ -15244,6 +15300,12 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bvm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) "bvr" = ( /obj/structure/bed/chair/office/dark, /obj/effect/decal/warning_stripes{ @@ -15402,9 +15464,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bwG" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_s) "bwH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/crew/alt{ @@ -15415,6 +15474,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"bwM" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "bwR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/med_data/laptop{ @@ -15507,6 +15572,12 @@ icon_state = "redfull" }, /area/almayer/living/cryo_cells) +"bxw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "bxx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ @@ -15565,19 +15636,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/workshop) -"bxY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"bxZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/lower/s_bow) "byb" = ( /obj/structure/barricade/handrail/medical, /turf/open/floor/almayer{ @@ -15654,15 +15718,6 @@ icon_state = "plate" }, /area/almayer/hallways/starboard_hallway) -"byt" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "byu" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -15697,6 +15752,14 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/starboard_hallway) +"byD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "byF" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -15706,15 +15769,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/starboard_hallway) -"byH" = ( -/obj/structure/bed/sofa/south/white/right{ - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/maint/hull/upper/u_m_p) "byI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -15885,13 +15939,6 @@ icon_state = "test_floor4" }, /area/almayer/command/securestorage) -"bAy" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "bAH" = ( /obj/structure/largecrate/random/case, /turf/open/floor/almayer{ @@ -16012,12 +16059,6 @@ icon_state = "greencorner" }, /area/almayer/hallways/starboard_hallway) -"bBc" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "bBd" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -16058,6 +16099,10 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"bBp" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "bBu" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ @@ -16144,6 +16189,21 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bBO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -9; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "bBQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -16155,12 +16215,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"bBU" = ( -/obj/structure/sign/safety/security{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "bBY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer{ @@ -16213,10 +16267,6 @@ icon_state = "redfull" }, /area/almayer/hallways/port_hallway) -"bCk" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "bCl" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -16259,18 +16309,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"bCv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "bCx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -16315,16 +16353,6 @@ icon_state = "silver" }, /area/almayer/living/cryo_cells) -"bCE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) "bCG" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -16332,6 +16360,16 @@ }, /turf/open/floor/almayer, /area/almayer/living/cryo_cells) +"bCI" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_x = 27 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "bCM" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ @@ -16353,12 +16391,6 @@ icon_state = "red" }, /area/almayer/squads/alpha) -"bCR" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "bCS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -16459,6 +16491,10 @@ icon_state = "plate" }, /area/almayer/living/cryo_cells) +"bDN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "bDO" = ( /turf/open/floor/almayer{ icon_state = "tcomms" @@ -16618,6 +16654,14 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) +"bEj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "bEl" = ( /obj/structure/machinery/computer/supply_drop_console/limited, /turf/closed/wall/almayer, @@ -16656,6 +16700,16 @@ icon_state = "cargo" }, /area/almayer/squads/req) +"bEt" = ( +/obj/structure/noticeboard{ + pixel_x = -10; + pixel_y = 31 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/squads/req) "bEv" = ( /turf/open/floor/almayer{ dir = 1; @@ -16860,12 +16914,10 @@ 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) +"bEW" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "bFa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -16874,6 +16926,19 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) +"bFf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "bFj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -16889,21 +16954,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) -"bFl" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "bFp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -17264,13 +17314,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/port_hallway) -"bHg" = ( -/obj/structure/bed, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) "bHk" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 1 @@ -17325,6 +17368,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bHC" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "bHD" = ( /obj/structure/ship_ammo/rocket/banshee, /turf/open/floor/almayer{ @@ -17445,16 +17498,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bIl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) "bIn" = ( /obj/structure/machinery/computer/cameras/almayer_network, /obj/structure/surface/table/almayer, @@ -17667,6 +17710,12 @@ "bJo" = ( /turf/closed/wall/almayer, /area/almayer/hallways/repair_bay) +"bJr" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "bJt" = ( /turf/closed/wall/almayer, /area/almayer/living/grunt_rnr) @@ -17710,6 +17759,14 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"bJK" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "bJO" = ( /obj/structure/machinery/light/small, /obj/structure/sign/safety/nonpress_0g{ @@ -17916,23 +17973,17 @@ icon_state = "orange" }, /area/almayer/hallways/starboard_hallway) -"bKJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"bKG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/almayer/maint/lower/cryo_cells) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "bKM" = ( /obj/effect/landmark/start/marine/medic/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"bKP" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "bKQ" = ( /obj/structure/bed/chair{ dir = 8 @@ -17947,27 +17998,6 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"bLc" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) -"bLf" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "bLh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -18300,16 +18330,9 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"bME" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) +"bMH" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_p) "bMJ" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/canister/oxygen, @@ -18396,12 +18419,6 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"bNc" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/maint/hull/upper/u_a_s) "bNe" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -18636,6 +18653,11 @@ icon_state = "cargo" }, /area/almayer/hallways/vehiclehangar) +"bOb" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "bOe" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -18679,6 +18701,17 @@ icon_state = "test_floor4" }, /area/almayer/squads/charlie) +"bOy" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) +"bOz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "bOC" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; @@ -19034,6 +19067,17 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) +"bQd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "bQt" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -19079,6 +19123,9 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) +"bQF" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) "bQG" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black, @@ -19492,6 +19539,13 @@ }, /turf/open/floor/plating, /area/almayer/powered) +"bTr" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/hull/lower/l_m_s) "bTt" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -19564,6 +19618,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"bTL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "bTM" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -19642,12 +19702,6 @@ icon_state = "plate" }, /area/almayer/living/tankerbunks) -"bTW" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "bUa" = ( /obj/structure/closet, /turf/open/floor/almayer{ @@ -19783,13 +19837,6 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) -"bUz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) "bUE" = ( /turf/open/floor/almayer{ dir = 4; @@ -19801,18 +19848,14 @@ icon_state = "bluecorner" }, /area/almayer/hallways/port_hallway) -"bUH" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"bUJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/upper/u_f_s) "bUM" = ( /turf/open/floor/almayer{ dir = 8; @@ -19833,11 +19876,6 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"bUQ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "bUT" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 @@ -19871,6 +19909,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) +"bVk" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "bVn" = ( /obj/structure/machinery/light{ dir = 8 @@ -19895,14 +19946,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"bVr" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "bVs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -19987,12 +20030,6 @@ icon_state = "plate" }, /area/almayer/living/starboard_garden) -"bWg" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "bWh" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -20003,6 +20040,12 @@ icon_state = "test_floor4" }, /area/almayer/powered) +"bWm" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "bWn" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -20105,14 +20148,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"bXh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "bXo" = ( /obj/structure/ladder{ height = 1; @@ -20187,6 +20222,13 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/aft_hallway) +"bYd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "bYe" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -20265,9 +20307,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"bYW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/panic) "bYY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -20309,18 +20348,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"bZf" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "bZi" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -20347,6 +20374,12 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) +"bZu" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "bZw" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/combat_correspondent) @@ -20490,19 +20523,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/port_hallway) -"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/hull/upper/u_a_s) -"caq" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "car" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -20587,6 +20607,13 @@ icon_state = "plate" }, /area/almayer/hallways/vehiclehangar) +"caL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "caM" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ @@ -20640,17 +20667,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) -"cbc" = ( -/obj/structure/platform_decoration, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +"caZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/u_a_p) "cbg" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; @@ -21160,6 +21184,10 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha) +"cep" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "ces" = ( /obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ @@ -21221,6 +21249,12 @@ "ceE" = ( /turf/closed/wall/almayer, /area/almayer/command/cichallway) +"ceI" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "ceK" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -21248,12 +21282,6 @@ icon_state = "cargo_arrow" }, /area/almayer/hallways/repair_bay) -"ceY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "ceZ" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/almayer{ @@ -21271,24 +21299,6 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"cfm" = ( -/obj/structure/flora/pottedplant{ - desc = "Life is underwhelming, especially when you're a potted plant."; - icon_state = "pottedplant_22"; - name = "Jerry"; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses/prescription{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "cfo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) @@ -21388,6 +21398,57 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"cgd" = ( +/obj/item/clothing/under/blackskirt{ + desc = "A stylish skirt, in a business-black and red colour scheme."; + name = "liaison's skirt" + }, +/obj/item/clothing/under/suit_jacket/charcoal{ + desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; + name = "liaison's black suit" + }, +/obj/item/clothing/under/suit_jacket/navy{ + desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; + name = "liaison's navy suit" + }, +/obj/item/clothing/under/suit_jacket/trainee, +/obj/item/clothing/under/liaison_suit/charcoal, +/obj/item/clothing/under/liaison_suit/blazer, +/obj/item/clothing/suit/storage/snow_suit/liaison, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/marine/dress, +/obj/item/clothing/glasses/sunglasses/big, +/obj/item/clothing/accessory/blue, +/obj/item/clothing/accessory/red, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/clothing/accessory/black, +/obj/item/clothing/accessory/green, +/obj/item/clothing/accessory/gold, +/obj/item/clothing/accessory/purple, +/obj/item/clothing/under/liaison_suit/corporate_formal, +/obj/item/clothing/under/liaison_suit/field, +/obj/item/clothing/under/liaison_suit/ivy, +/obj/item/clothing/under/liaison_suit/blue, +/obj/item/clothing/under/liaison_suit/brown, +/obj/item/clothing/under/liaison_suit/black, +/obj/item/clothing/suit/storage/jacket/marine/vest, +/obj/item/clothing/suit/storage/jacket/marine/vest/grey, +/obj/item/clothing/suit/storage/jacket/marine/vest/tan, +/obj/item/clothing/suit/storage/jacket/marine/bomber, +/obj/item/clothing/suit/storage/jacket/marine/bomber/red, +/obj/item/clothing/suit/storage/jacket/marine/bomber/grey, +/obj/item/clothing/suit/storage/jacket/marine/corporate, +/obj/item/clothing/suit/storage/jacket/marine/corporate/black, +/obj/item/clothing/suit/storage/jacket/marine/corporate/blue, +/obj/item/clothing/suit/storage/jacket/marine/corporate/brown, +/obj/item/clothing/suit/storage/jacket/marine/corporate/formal, +/obj/structure/closet/cabinet{ + storage_capacity = 35 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "cgl" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ @@ -21497,15 +21558,11 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) "cgU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "chb" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/sign/safety/maint{ @@ -21534,6 +21591,12 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie_delta_shared) +"chi" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "chk" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, /turf/open/floor/almayer{ @@ -21792,21 +21855,6 @@ icon_state = "test_floor4" }, /area/almayer/powered) -"ciB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "ciD" = ( /obj/structure/platform_decoration{ dir = 1 @@ -21821,6 +21869,25 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"ciO" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_y = 15 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "ciQ" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -22069,25 +22136,6 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) -"cke" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"ckj" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/nanopaste{ - pixel_x = -3; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "ckl" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -22111,6 +22159,13 @@ icon_state = "red" }, /area/almayer/hallways/port_hallway) +"ckq" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "ckr" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -22118,6 +22173,9 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"ckw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_p) "ckI" = ( /obj/structure/disposalpipe/segment, /obj/item/device/radio/intercom{ @@ -22471,13 +22529,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"clV" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/squads/req) "clW" = ( /obj/structure/machinery/cm_vending/clothing/smartgun/delta, /turf/open/floor/almayer{ @@ -22509,6 +22560,12 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"cmb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_s) "cmd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -22519,17 +22576,6 @@ icon_state = "green" }, /area/almayer/hallways/port_hallway) -"cme" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "cmg" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -22594,9 +22640,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"cmr" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "cmv" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = -30 @@ -22685,18 +22728,6 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"cmN" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"cmV" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "cna" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -22844,13 +22875,11 @@ }, /area/almayer/living/port_emb) "cnP" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/cryo{ + pixel_y = -26 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "cnR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -22952,20 +22981,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"coo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "cop" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/tankerbunks) @@ -23065,12 +23080,16 @@ icon_state = "mono" }, /area/almayer/hallways/aft_hallway) -"cpz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +"cpG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/hull/lower/l_m_s) +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "cpJ" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -23092,13 +23111,56 @@ /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 +"cpU" = ( +/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." }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/obj/structure/machinery/light/small{ + dir = 4; + status = 3; + icon_state = "bulb-burned" + }, +/obj/effect/decal/cleanable/blood, +/obj/item/prop{ + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + desc = "A blood bag with a hole in it. The rats must have gotten to it first." + }, +/obj/item/prop{ + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + desc = "A blood bag with a hole in it. The rats must have gotten to it first." + }, +/obj/item/prop{ + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + desc = "A blood bag with a hole in it. The rats must have gotten to it first." + }, +/obj/item/prop{ + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + name = "circuit board"; + desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; + layer = 2.78; + pixel_y = 10; + pixel_x = 8 + }, +/obj/item/prop{ + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + name = "circuit board"; + desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; + layer = 2.79; + pixel_y = 7; + pixel_x = 8 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) "cqa" = ( /turf/open/floor/almayer{ dir = 10; @@ -23118,23 +23180,11 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"cqp" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "cqz" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"cqH" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_m_s) "cqJ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -23184,15 +23234,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"cri" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "crp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data{ @@ -23203,23 +23244,20 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"crD" = ( -/turf/open/floor/almayer{ +"crr" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "greencorner" + icon_state = "pipe-c" }, -/area/almayer/squads/req) -"crW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"crG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) -"csd" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) +/area/almayer/maint/hull/upper/u_a_p) "csl" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer{ @@ -23233,6 +23271,12 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"csT" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "csZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -23258,19 +23302,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/bravo) -"cth" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"ctp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "cts" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -23325,6 +23356,49 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cryo) +"ctW" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"ctX" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/workshop/hangar) +"cua" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"cuk" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "cuq" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, @@ -23370,33 +23444,12 @@ 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/hull/upper/u_m_s) -"cvb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"cvi" = ( -/obj/structure/machinery/vending/hydroseeds, +"cvp" = ( +/obj/structure/girder, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"cvx" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/maint/hull/upper/u_a_p) "cvH" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -23409,6 +23462,12 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"cvL" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "cvZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -23473,6 +23532,10 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) +"cxi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "cxk" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, @@ -23490,24 +23553,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"cyp" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/plasticflaps, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/maint/hull/lower/l_a_p) -"cyv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) "cyG" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -23515,21 +23560,6 @@ allow_construction = 0 }, /area/almayer/hallways/port_hallway) -"cyL" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) -"cyR" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "cyU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -23568,15 +23598,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"cAz" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "cAF" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -23663,6 +23684,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) +"cBz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "cBA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -23675,6 +23703,16 @@ icon_state = "plate" }, /area/almayer/hallways/starboard_hallway) +"cBE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "cBI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -23694,6 +23732,26 @@ icon_state = "plate" }, /area/almayer/hallways/starboard_hallway) +"cBQ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"cBR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "cBZ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -23753,22 +23811,9 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"cCL" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cDb" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) +"cCG" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "cDn" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/glass{ @@ -23796,15 +23841,6 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) -"cDx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_p) "cDC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -23858,21 +23894,6 @@ icon_state = "plating" }, /area/almayer/command/cic) -"cEA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "cEC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -23895,12 +23916,25 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie) +"cER" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "cES" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, /turf/open/floor/almayer, /area/almayer/hallways/stern_hallway) +"cET" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"cFb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "cFh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -23938,55 +23972,37 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"cGd" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) -"cGe" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) -"cGp" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - pixel_y = 0 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) "cGr" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/hallways/aft_hallway) -"cGA" = ( +"cGC" = ( /obj/structure/sign/poster{ - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cGB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_m_s) -"cGR" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_f_p) +"cGP" = ( +/obj/item/toy/deck{ + pixel_y = 12 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "cGV" = ( /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) -"cGY" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "cHc" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/sign/safety/ladder{ @@ -24009,12 +24025,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_m_p) "cHu" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell/cl) @@ -24045,6 +24055,26 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"cIl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) +"cIq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/toy/deck, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/living/offices/flight) "cIr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24074,6 +24104,17 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) +"cIZ" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." + }, +/obj/item/reagent_container/food/snacks/mre_pack/xmas2, +/obj/item/reagent_container/food/snacks/mre_pack/xmas1, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "cJh" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -24083,17 +24124,6 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"cJm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "cJu" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -24106,6 +24136,13 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"cJz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "cJE" = ( /obj/structure/sign/prop2, /turf/closed/wall/almayer, @@ -24152,24 +24189,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"cKm" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 12 - }, -/obj/item/clothing/head/militia/bucket{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 8; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "cKL" = ( /turf/open/floor/almayer{ dir = 8; @@ -24182,6 +24201,12 @@ icon_state = "silver" }, /area/almayer/hallways/aft_hallway) +"cLk" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) "cLl" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -24212,6 +24237,23 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) +"cLt" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"cLx" = ( +/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/hull/upper/u_m_s) "cLA" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -24247,6 +24289,15 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"cMk" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "cMl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24292,6 +24343,17 @@ icon_state = "orange" }, /area/almayer/living/briefing) +"cNn" = ( +/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/hull/upper/u_m_s) "cNH" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/containment{ id = "Containment Cell 4"; @@ -24307,6 +24369,12 @@ icon_state = "test_floor4" }, /area/almayer/medical/containment/cell/cl) +"cNJ" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_p) "cNK" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -24339,26 +24407,10 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"cOh" = ( -/obj/item/stool{ - pixel_x = 15; - pixel_y = 6 - }, +"cOy" = ( +/obj/item/trash/chips, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"cOo" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_a_p) -"cOt" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "cOK" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -24379,57 +24431,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/starboard_hallway) -"cOY" = ( -/obj/item/clothing/under/blackskirt{ - desc = "A stylish skirt, in a business-black and red colour scheme."; - name = "liaison's skirt" - }, -/obj/item/clothing/under/suit_jacket/charcoal{ - desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; - name = "liaison's black suit" - }, -/obj/item/clothing/under/suit_jacket/navy{ - desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; - name = "liaison's navy suit" - }, -/obj/item/clothing/under/suit_jacket/trainee, -/obj/item/clothing/under/liaison_suit/charcoal, -/obj/item/clothing/under/liaison_suit/blazer, -/obj/item/clothing/suit/storage/snow_suit/liaison, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/marine/dress, -/obj/item/clothing/glasses/sunglasses/big, -/obj/item/clothing/accessory/blue, -/obj/item/clothing/accessory/red, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/clothing/accessory/black, -/obj/item/clothing/accessory/green, -/obj/item/clothing/accessory/gold, -/obj/item/clothing/accessory/purple, -/obj/item/clothing/under/liaison_suit/corporate_formal, -/obj/item/clothing/under/liaison_suit/field, -/obj/item/clothing/under/liaison_suit/ivy, -/obj/item/clothing/under/liaison_suit/blue, -/obj/item/clothing/under/liaison_suit/brown, -/obj/item/clothing/under/liaison_suit/black, -/obj/item/clothing/suit/storage/jacket/marine/vest, -/obj/item/clothing/suit/storage/jacket/marine/vest/grey, -/obj/item/clothing/suit/storage/jacket/marine/vest/tan, -/obj/item/clothing/suit/storage/jacket/marine/bomber, -/obj/item/clothing/suit/storage/jacket/marine/bomber/red, -/obj/item/clothing/suit/storage/jacket/marine/bomber/grey, -/obj/item/clothing/suit/storage/jacket/marine/corporate, -/obj/item/clothing/suit/storage/jacket/marine/corporate/black, -/obj/item/clothing/suit/storage/jacket/marine/corporate/blue, -/obj/item/clothing/suit/storage/jacket/marine/corporate/brown, -/obj/item/clothing/suit/storage/jacket/marine/corporate/formal, -/obj/structure/closet/cabinet{ - storage_capacity = 35 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) "cPg" = ( /obj/structure/sign/safety/north{ pixel_x = 32; @@ -24444,10 +24445,14 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"cPj" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/p_bow) +"cPy" = ( +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "cPK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -24460,23 +24465,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"cPP" = ( -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/obj/structure/sign/poster/hunk{ - pixel_x = -25; - pixel_y = 10 - }, -/obj/item/trash/buritto, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "cQc" = ( /turf/open/floor/almayer{ dir = 1; @@ -24571,6 +24559,15 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) +"cSi" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "cSk" = ( /obj/structure/machinery/door/window/southleft, /turf/open/floor/almayer{ @@ -24578,6 +24575,18 @@ icon_state = "silver" }, /area/almayer/command/securestorage) +"cSl" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/rods/plasteel{ + amount = 36 + }, +/obj/item/stack/catwalk{ + amount = 60; + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "cSm" = ( /obj/structure/sign/safety/ladder{ pixel_x = 8; @@ -24616,6 +24625,18 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) +"cTb" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"cTc" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "cTf" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -24632,29 +24653,12 @@ icon_state = "green" }, /area/almayer/living/offices) -"cTM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/mess) -"cTX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) -"cUl" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +"cUf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "cVb" = ( /obj/structure/machinery/sentry_holder/almayer, /turf/open/floor/almayer{ @@ -24687,37 +24691,12 @@ icon_state = "plate" }, /area/almayer/living/gym) -"cWb" = ( -/obj/structure/largecrate/random/case/double, +"cVZ" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) -"cWm" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/structure/sign/safety/med_life_support{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - 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/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_m_s) "cWr" = ( /obj/structure/machinery/photocopier{ density = 0; @@ -24770,6 +24749,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"cWt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "cWv" = ( /turf/open/floor/almayer{ dir = 8; @@ -24795,17 +24784,78 @@ 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 +"cWF" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "2;7" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_p) +"cWP" = ( +/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/hull/upper/u_m_s) +"cXh" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "cXi" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -24821,12 +24871,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"cXm" = ( -/obj/structure/largecrate/supply/supplies/mre, +"cXy" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/lower/l_f_s) "cXC" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -24865,27 +24915,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"cXX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "cXY" = ( /obj/item/stack/catwalk, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"cYo" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "cYu" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -24918,9 +24953,6 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) -"cZe" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_s) "cZh" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -24951,29 +24983,10 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/aft_hallway) -"cZp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"cZw" = ( +/obj/item/tool/wet_sign, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"cZI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"cZO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/upper/u_f_s) "cZV" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigarettes/wypacket, @@ -25023,15 +25036,16 @@ icon_state = "test_floor4" }, /area/almayer/hallways/starboard_hallway) +"dan" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder4" + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) "daz" = ( /turf/closed/wall/almayer/white/hull, /area/almayer/command/airoom) -"daF" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "dbc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -25055,6 +25069,13 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"dbj" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "dbn" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c200{ @@ -25114,12 +25135,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"dbX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "dcd" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -25153,16 +25168,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/perma) -"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_m_p) "ddf" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/almayer{ @@ -25190,20 +25195,25 @@ }, /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 +"ddC" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_p) "ddM" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop/hangar) +"ddN" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_s) "deg" = ( /obj/structure/platform_decoration{ dir = 1 @@ -25212,23 +25222,26 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"deq" = ( -/turf/open/floor/almayer{ - 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 +"dej" = ( +/obj/structure/machinery/door_control{ + id = "OuterShutter"; + name = "Outer Shutter"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;3" }, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "OfficeSafeRoom"; + name = "Office Safe Room"; + pixel_x = 5; + pixel_y = 5; + req_one_access_txt = "1;3" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/shipboard/panic) "deD" = ( /obj/structure/machinery/prop/almayer/CICmap{ pixel_x = -5 @@ -25236,10 +25249,6 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) -"deF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "deH" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -25300,12 +25309,38 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) +"dfv" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." + }, +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "dfC" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"dfE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) "dfO" = ( /obj/structure/machinery/medical_pod/bodyscanner{ dir = 8 @@ -25365,6 +25400,11 @@ icon_state = "plating_striped" }, /area/almayer/shipboard/brig/execution) +"dhe" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "dho" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -25378,15 +25418,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"dhp" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "dhR" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -25418,6 +25449,9 @@ icon_state = "test_floor4" }, /area/almayer/hallways/starboard_umbilical) +"diy" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_stern) "diz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ id_tag = "Boat1-D4"; @@ -25472,21 +25506,23 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) +"djW" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "dka" = ( /obj/structure/machinery/optable, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_four) -"dkj" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/alamo{ - layer = 2.9 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/offices/flight) "dkq" = ( /obj/structure/machinery/door_control{ id = "hangarentrancenorth"; @@ -25504,36 +25540,10 @@ 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 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) +"dkv" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "dkO" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down2"; @@ -25550,6 +25560,16 @@ allow_construction = 0 }, /area/almayer/stair_clone/upper) +"dkR" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "dkX" = ( /obj/structure/bed/chair/comfy/delta, /obj/effect/decal/cleanable/dirt, @@ -25557,12 +25577,31 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) +"dle" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "dll" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "orangefull" }, /area/almayer/living/briefing) +"dlt" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"dlW" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "dmg" = ( /obj/structure/machinery/vending/coffee, /obj/structure/sign/safety/coffee{ @@ -25591,17 +25630,6 @@ icon_state = "cargo" }, /area/almayer/squads/req) -"dmF" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) "dmR" = ( /obj/effect/glowshroom, /obj/effect/glowshroom{ @@ -25679,19 +25707,13 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"dnZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, +"dnW" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/structure/surface/rack, /turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/p_stern) "dod" = ( /obj/structure/closet/crate/trashcart, /turf/open/floor/almayer, @@ -25725,6 +25747,12 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"doM" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "doP" = ( /obj/structure/disposaloutlet{ density = 0; @@ -25746,6 +25774,12 @@ /obj/structure/surface/rack, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"doX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "dpo" = ( /obj/structure/machinery/light{ dir = 1 @@ -25761,6 +25795,20 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) +"dpD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"dpM" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 + }, +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "dpO" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; @@ -25845,16 +25893,18 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) -"dro" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, +"drQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/lower/l_a_p) "drT" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -25887,6 +25937,14 @@ icon_state = "orange" }, /area/almayer/hallways/stern_hallway) +"dsp" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "dsA" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/almayer{ @@ -25988,6 +26046,18 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"duP" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) "duT" = ( /obj/structure/bed, /obj/structure/machinery/flasher{ @@ -26008,6 +26078,20 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"duX" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) "dvg" = ( /obj/structure/reagent_dispensers/fueltank/custom, /obj/structure/sign/safety/chem_lab{ @@ -26018,6 +26102,14 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/chemistry) +"dvi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "dvl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -26037,24 +26129,46 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) -"dvD" = ( +"dvx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_f_s) -"dvZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/upper/u_m_p) +"dvD" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/upper/mess) +/area/almayer/maint/hull/lower/l_m_p) +"dvN" = ( +/obj/structure/machinery/vending/coffee, +/obj/item/toy/bikehorn/rubberducky{ + desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; + name = "Quackers"; + pixel_x = 5; + pixel_y = 17 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "dwl" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/living/briefing) +"dwn" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "dwr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/centrifuge{ @@ -26082,6 +26196,20 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) +"dwU" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"dwX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "dxu" = ( /obj/structure/sink{ dir = 1; @@ -26221,12 +26349,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"dzX" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 +"dzS" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = -6; + pixel_y = 7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/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/hull/upper/u_m_s) +"dzU" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "dAq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -26239,12 +26399,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/bravo) -"dAA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "dAQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -26348,6 +26502,15 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) +"dCb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "dCe" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -26385,13 +26548,6 @@ icon_state = "plate" }, /area/almayer/command/cichallway) -"dCz" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "dCD" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 32 @@ -26409,6 +26565,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) +"dDd" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"dDo" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) "dDp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -26432,12 +26599,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"dDJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "dDL" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/research/main_terminal{ @@ -26464,12 +26625,24 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"dDT" = ( -/obj/structure/largecrate/random/case/small, +"dDQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/tool/shovel/snow, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) +/area/almayer/maint/hull/lower/l_f_s) +"dDR" = ( +/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_m_s) "dEm" = ( /obj/structure/machinery/power/apc/almayer, /obj/effect/decal/warning_stripes{ @@ -26491,9 +26664,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"dEp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) "dEt" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -26559,15 +26729,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"dFL" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"dFH" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/bed/chair/bolted, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/shipboard/brig/perma) "dFR" = ( /turf/open/floor/almayer{ dir = 9; @@ -26581,21 +26751,18 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) "dFW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/maint/hull/lower/l_f_p) -"dGg" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_s) "dGl" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; @@ -26633,19 +26800,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"dGP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_s) "dGU" = ( /obj/structure/sign/poster/propaganda{ pixel_x = -27 @@ -26752,24 +26906,19 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) -"dJe" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - pixel_y = 10 - }, +"dJm" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"dJy" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/lower/l_a_s) +"dJF" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/maint/hull/upper/p_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "dJI" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 4 @@ -26782,14 +26931,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"dKc" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 9" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "dKm" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -26835,27 +26976,6 @@ "dKL" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/airmix) -"dKO" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = 25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) -"dKS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "dLc" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -26873,14 +26993,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"dLi" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 4" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "dLt" = ( /obj/structure/sign/safety/hazard{ pixel_x = -17; @@ -26894,6 +27006,27 @@ icon_state = "plating_striped" }, /area/almayer/shipboard/sea_office) +"dLx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/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/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "dLz" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ @@ -26952,6 +27085,12 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) +"dNy" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) "dNM" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/tabasco{ @@ -26993,22 +27132,37 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"dPd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 10 +"dOr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"dOX" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) -"dPl" = ( +/area/almayer/maint/hull/upper/u_a_s) +"dPf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - dir = 4; - icon_state = "red" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/living/cryo_cells) "dPm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27017,14 +27171,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"dPq" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "dPC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -27040,12 +27186,6 @@ icon_state = "cargo" }, /area/almayer/engineering/lower/engine_core) -"dPO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "dPQ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen, @@ -27125,6 +27265,13 @@ icon_state = "orangecorner" }, /area/almayer/engineering/lower) +"dRf" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "dRh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27174,6 +27321,12 @@ icon_state = "test_floor4" }, /area/almayer/living/offices/flight) +"dRE" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "dRG" = ( /obj/structure/machinery/light{ dir = 8 @@ -27183,6 +27336,14 @@ icon_state = "red" }, /area/almayer/hallways/starboard_hallway) +"dRN" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "dRP" = ( /obj/structure/bed/chair/comfy/orange, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27200,18 +27361,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"dSm" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "dSp" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" @@ -27222,6 +27371,19 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"dSC" = ( +/obj/structure/largecrate/random/secure, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "dSJ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -27274,6 +27436,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"dUf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"dUA" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "dUE" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -27339,21 +27517,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"dVH" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "dVO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -27363,23 +27526,6 @@ icon_state = "plate" }, /area/almayer/living/offices) -"dVR" = ( -/obj/structure/ladder{ - height = 2; - id = "AftPortMaint" - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_p) -"dWc" = ( -/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/maint/hull/upper/u_f_p) "dWg" = ( /obj/effect/landmark/start/cargo, /obj/structure/machinery/light, @@ -27391,31 +27537,6 @@ icon_state = "bluecorner" }, /area/almayer/living/basketball) -"dWA" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"dWJ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "dWX" = ( /obj/structure/machinery/light{ dir = 8 @@ -27424,12 +27545,18 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"dXb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"dXc" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/maint/hull/lower/l_a_p) "dXd" = ( /obj/item/storage/fancy/cigarettes/kpack, /obj/structure/surface/rack, @@ -27440,6 +27567,10 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"dXm" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "dXo" = ( /obj/structure/surface/table/almayer, /obj/item/device/taperecorder, @@ -27465,14 +27596,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 = -2 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) "dXI" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Exterior Airlock"; @@ -27482,6 +27605,17 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/stern_point_defense) +"dXU" = ( +/obj/item/tool/warning_cone{ + pixel_x = -20; + pixel_y = 18 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "dXV" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -27501,12 +27635,6 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) -"dYc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "dYu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -27524,6 +27652,13 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"dYM" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "dYR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder{ @@ -27531,30 +27666,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"dYU" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8; - plane = -6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) "dYX" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo{ dir = 1 @@ -27591,14 +27702,16 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"dZZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/effect/spawner/random/tool, +"dZT" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/lower/l_m_s) "eaf" = ( /obj/structure/machinery/cm_vending/clothing/military_police{ density = 0; @@ -27629,12 +27742,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_m_p) "eas" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27651,33 +27758,10 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"eaz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "ebd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"ebf" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." - }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "ebn" = ( /obj/structure/sign/safety/airlock{ pixel_x = 15; @@ -27696,18 +27780,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"ebt" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) "ebv" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -27724,29 +27796,30 @@ icon_state = "sterile_green_side" }, /area/almayer/shipboard/brig/surgery) -"ebI" = ( -/obj/item/clothing/shoes/red, +"ebz" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"ebL" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_m_p) "ebN" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/command/airoom) -"ecb" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"ecj" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, +"ecf" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/lower/l_m_s) "eco" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17; @@ -27773,15 +27846,6 @@ icon_state = "plating" }, /area/almayer/hallways/vehiclehangar) -"ecS" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "ecZ" = ( /obj/structure/ladder{ height = 1; @@ -27791,6 +27855,15 @@ icon_state = "plate" }, /area/almayer/shipboard/navigation) +"edn" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/poster/ad{ + pixel_x = 30 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "edo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -27803,16 +27876,15 @@ icon_state = "sterile_green" }, /area/almayer/medical/medical_science) -"edG" = ( -/obj/structure/largecrate/random/barrel/yellow, +"edx" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) -"edV" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/almayer, -/area/almayer/maint/upper/mess) +/area/almayer/maint/hull/lower/p_bow) "eed" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -27874,28 +27946,24 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"eeA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +"eeL" = ( +/obj/structure/flora/pottedplant{ + desc = "Life is underwhelming, especially when you're a potted plant."; + icon_state = "pottedplant_22"; + name = "Jerry"; + pixel_y = 8 }, -/area/almayer/maint/hull/upper/s_bow) -"eeC" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/item/clothing/glasses/sunglasses/prescription{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) -"eeR" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/u_a_p) "efj" = ( /turf/open/floor/almayer{ dir = 4; @@ -27911,11 +27979,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"efJ" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "efK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27927,20 +27990,6 @@ icon_state = "plate" }, /area/almayer/squads/alpha) -"efP" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "efT" = ( /obj/structure/machinery/atm{ pixel_y = 32 @@ -27994,27 +28043,17 @@ icon_state = "test_floor4" }, /area/almayer/living/chapel) -"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 +"egM" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"egW" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/upper/u_f_s) "ehc" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -28073,14 +28112,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) -"ehM" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "ehR" = ( /obj/structure/window/reinforced{ dir = 4; @@ -28177,15 +28208,16 @@ icon_state = "plate" }, /area/almayer/living/gym) -"ejj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/wrench{ - pixel_x = -2; - pixel_y = -1 +"eje" = ( +/obj/structure/closet, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/newspaper, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/tile/carpet{ + amount = 20 }, -/obj/item/tool/wrench{ - pixel_x = 2; - pixel_y = 7 +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" @@ -28219,17 +28251,6 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"ejV" = ( -/obj/structure/closet, -/obj/item/device/flashlight/pen, -/obj/item/attachable/reddot, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "ejY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -28240,7 +28261,7 @@ /turf/open/floor/almayer, /area/almayer/command/lifeboat) "ekz" = ( -/obj/structure/girder/displaced, +/obj/structure/platform, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -28303,6 +28324,18 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_one) +"elF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_s) "elR" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 1 @@ -28335,12 +28368,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"emA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_s) -"emC" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) "emK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -28348,6 +28375,20 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"emX" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "ene" = ( /turf/open/floor/almayer{ dir = 4; @@ -28362,6 +28403,12 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"enq" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "enx" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/status_display{ @@ -28372,38 +28419,15 @@ icon_state = "green" }, /area/almayer/hallways/starboard_hallway) -"enQ" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"enY" = ( -/obj/item/storage/firstaid, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"eob" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"enA" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/maint/hull/lower/l_m_s) -"eox" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"eoE" = ( -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_m_p) "eoG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -28411,12 +28435,25 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"eoK" = ( -/obj/structure/machinery/optable, +"epp" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters/clippers, +/obj/item/handcuffs/zip, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/maint/hull/lower/l_f_p) +"epq" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/headband/red{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "epu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -28437,6 +28474,13 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"epW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) "eqb" = ( /obj/structure/surface/table/almayer, /obj/item/tool/stamp/denied{ @@ -28463,27 +28507,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"eqd" = ( -/obj/item/stack/folding_barricade/three, -/obj/item/stack/folding_barricade/three, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/panic) -"eqm" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/machinery/door_control{ - id = "Secretroom"; - indestructible = 1; - layer = 2.5; - name = "Shutters"; - use_power = 0 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"eqh" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "eqB" = ( /obj/item/bedsheet/brown{ layer = 3.2 @@ -28537,6 +28566,12 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) +"era" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "erd" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -28546,12 +28581,6 @@ dir = 1 }, /area/almayer/medical/containment/cell/cl) -"ere" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "erh" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -28579,14 +28608,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"erE" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "erF" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/toxin{ @@ -28607,25 +28628,6 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"erL" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/crushed_cup, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/ashtray/plastic{ - pixel_x = 5; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "erN" = ( /obj/structure/machinery/light{ dir = 8 @@ -28637,6 +28639,14 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"erR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "erS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -28660,13 +28670,17 @@ icon_state = "plate" }, /area/almayer/hallways/starboard_hallway) -"esm" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +"esl" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "esC" = ( /obj/structure/toilet{ pixel_y = 13 @@ -28711,6 +28725,11 @@ dir = 9 }, /area/almayer/command/lifeboat) +"esV" = ( +/obj/effect/landmark/start/researcher, +/obj/effect/landmark/late_join/researcher, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) "etf" = ( /turf/open/floor/almayer{ dir = 1; @@ -28753,11 +28772,11 @@ }, /area/almayer/engineering/upper_engineering) "ety" = ( -/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 6; + icon_state = "silver" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_m_p) "etE" = ( /obj/structure/prop/almayer/name_stencil, /turf/open/floor/almayer_hull{ @@ -28772,10 +28791,6 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) -"etN" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "eua" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ @@ -28790,18 +28805,16 @@ icon_state = "test_floor4" }, /area/almayer/living/officer_study) -"euL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Starboard Railguns and Viewing Room" - }, +"euu" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"euw" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/upper/u_a_s) "euN" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -28873,6 +28886,24 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/starboard) +"evF" = ( +/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_m_s) +"evQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "evR" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical/green{ @@ -28937,17 +28968,20 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"exb" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "exi" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"exx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "exy" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" @@ -28959,25 +28993,27 @@ icon_state = "tcomms" }, /area/almayer/engineering/upper_engineering/starboard) +"exX" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"eyp" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "eyG" = ( /obj/structure/platform, /turf/open/floor/almayer{ 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/hull/upper/u_m_p) -"eyM" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "eyQ" = ( /obj/structure/machinery/light{ dir = 1 @@ -29028,10 +29064,19 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"ezR" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/l_f_s) "ezX" = ( /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) +"eAa" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "eAg" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -29061,21 +29106,21 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"eAG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/clipboard, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) "eAI" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "orangecorner" }, /area/almayer/engineering/lower/engine_core) +"eAK" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "eAL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -29086,6 +29131,16 @@ "eAN" = ( /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"eAP" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "eAT" = ( /obj/structure/machinery/door_control/cl/office/door{ pixel_y = -20 @@ -29148,18 +29203,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"eBG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "eBO" = ( /obj/structure/bed, /turf/open/floor/almayer{ @@ -29244,13 +29287,20 @@ icon_state = "plating" }, /area/almayer/shipboard/brig/execution) -"eDk" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, +"eCZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_m_p) "eDo" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -29261,12 +29311,6 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"eDq" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "eDt" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ @@ -29283,6 +29327,14 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) +"eDF" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "eDG" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -29297,6 +29349,12 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/port_hallway) +"eDN" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "eEc" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -29321,12 +29379,37 @@ /obj/structure/filingcabinet, /turf/open/floor/almayer, /area/almayer/command/computerlab) +"eEq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) +"eEv" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "eEw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"eFg" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) "eFj" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -29355,6 +29438,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/chemistry) +"eFI" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "eFK" = ( /obj/structure/bed{ icon_state = "abed" @@ -29516,22 +29605,12 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"eHy" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/maint/hull/lower/l_a_p) -"eHz" = ( -/obj/structure/largecrate/supply/supplies/mre, +"eHJ" = ( +/obj/structure/machinery/vending/hydronutrients, /turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_a_s) "eHY" = ( /obj/structure/surface/rack, /obj/item/device/taperecorder, @@ -29539,20 +29618,6 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"eIN" = ( -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"eJj" = ( -/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/hull/upper/u_m_s) "eJQ" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -29569,10 +29634,6 @@ "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/hull/upper/u_m_s) "eKa" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ dir = 2; @@ -29584,6 +29645,17 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/processing) +"eKi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"eKk" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "eKy" = ( /obj/structure/pipes/standard/simple/visible{ dir = 6 @@ -29595,6 +29667,12 @@ icon_state = "plate" }, /area/almayer/engineering/lower) +"eKE" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "eKH" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -29639,15 +29717,12 @@ icon_state = "green" }, /area/almayer/living/offices) -"eKZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Port Viewing Room" - }, +"eLq" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/upper/u_m_p) "eLz" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -29656,34 +29731,6 @@ icon_state = "silver" }, /area/almayer/hallways/repair_bay) -"eLC" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"eLH" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -27; - serial_number = 11 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "eMh" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Laundry Room" @@ -29692,11 +29739,11 @@ icon_state = "test_floor4" }, /area/almayer/engineering/laundry) -"eMx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"eMt" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) "eMJ" = ( /obj/structure/machinery/light{ @@ -29724,13 +29771,38 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) +"eNf" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "eNi" = ( /turf/closed/wall/almayer, /area/almayer/engineering/ce_room) +"eNq" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "eNv" = ( /obj/structure/largecrate/random, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) +"eNw" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) "eNI" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -29741,6 +29813,12 @@ icon_state = "test_floor4" }, /area/almayer/medical/containment) +"eNO" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "eNR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -29768,6 +29846,19 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"eOY" = ( +/obj/structure/surface/rack, +/obj/item/facepaint/sniper, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"ePc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "ePA" = ( /obj/structure/machinery/light{ dir = 1 @@ -29817,40 +29908,12 @@ 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/hull/upper/u_m_s) -"eQm" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"eQJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/poster/ad{ - pixel_x = 30 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"eQR" = ( +"eQa" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/lower/l_a_p) "eRi" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/folder/black{ @@ -29863,6 +29926,21 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"eRm" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/item/storage/firstaid{ + pixel_x = -13; + pixel_y = 13 + }, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "eRu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -29891,14 +29969,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/hull/upper/u_a_s) "eRL" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) @@ -29942,6 +30012,16 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"eSp" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"eSH" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "eSU" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer1" @@ -29950,9 +30030,12 @@ icon_state = "outerhull_dir" }, /area/space) -"eTb" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/stern) +"eSZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "eTd" = ( /obj/structure/surface/table/almayer, /obj/item/trash/boonie{ @@ -29963,10 +30046,8 @@ /obj/effect/landmark/crap_item, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eTD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +"eTJ" = ( +/obj/structure/curtain/red, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -29981,11 +30062,18 @@ }, /area/almayer/hallways/stern_hallway) "eUe" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/plating/plating_catwalk, +/obj/item/device/radio, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"eUf" = ( +/turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/stern) "eUh" = ( /obj/structure/window/reinforced{ @@ -30066,6 +30154,16 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"eVP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "eVQ" = ( /obj/structure/machinery/light{ dir = 4 @@ -30103,6 +30201,18 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"eVY" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "eWp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy/charlie{ @@ -30112,9 +30222,6 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"eWs" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_s) "eWF" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -30123,6 +30230,15 @@ icon_state = "test_floor4" }, /area/almayer/living/basketball) +"eWV" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "eXb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -30151,17 +30267,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/offices) -"eXD" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "eYj" = ( /obj/structure/machinery/light{ dir = 8 @@ -30177,15 +30282,6 @@ /obj/structure/filingcabinet/security, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"eYp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) "eYr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -30213,6 +30309,14 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"eYw" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "eYz" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ dir = 1 @@ -30225,6 +30329,18 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"eYC" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Disposals" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_a_p) "eYD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -30254,6 +30370,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"eYN" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "eYQ" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -32 @@ -30280,9 +30402,6 @@ allow_construction = 0 }, /area/almayer/hallways/port_hallway) -"eZm" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_stern) "eZo" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -30316,6 +30435,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"eZK" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) "fad" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ @@ -30329,6 +30454,17 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) +"far" = ( +/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/hull/upper/u_m_s) "fau" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -30337,6 +30473,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/starboard_hallway) +"faC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "faE" = ( /obj/structure/bookcase{ icon_state = "book-5"; @@ -30360,18 +30506,6 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"faR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "faX" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -30404,15 +30538,6 @@ icon_state = "plate" }, /area/almayer/squads/alpha) -"fbe" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "fbo" = ( /obj/structure/machinery/door_control{ id = "kitchen2"; @@ -30452,22 +30577,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/upper_medical) -"fbC" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/maint/hull/lower/l_m_s) -"fbH" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) "fbR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -30481,30 +30590,27 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"fca" = ( -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "fcf" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"fco" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 +"fcl" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) +"fcx" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/device/radio, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/lower/l_a_p) "fcy" = ( /obj/structure/machinery/light{ dir = 8 @@ -30526,6 +30632,14 @@ icon_state = "bluecorner" }, /area/almayer/living/basketball) +"fcK" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "fcM" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" @@ -30549,6 +30663,9 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"fcW" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_p) "fcX" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/light{ @@ -30571,6 +30688,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"fdD" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "fdE" = ( /obj/item/clothing/mask/rebreather/scarf, /obj/structure/closet/secure_closet/personal/cabinet{ @@ -30592,20 +30718,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lockerroom) -"fea" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "feb" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/brig/execution) @@ -30631,10 +30743,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"feG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "feI" = ( /obj/item/trash/cigbutt, /turf/open/floor/almayer, @@ -30659,55 +30767,32 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_two) +"feZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "ffg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/perma) -"ffq" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_y = 15 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 7; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ffx" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/head/helmet/marine/tech/tanker, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "ffE" = ( /turf/open/floor/almayer/no_build{ icon_state = "plating" }, /area/almayer/command/airoom) -"ffN" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, +"ffL" = ( /obj/structure/sign/safety/water{ pixel_x = 8; pixel_y = -32 }, -/obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/lower/l_m_p) +"ffX" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "fgh" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -30734,6 +30819,26 @@ icon_state = "green" }, /area/almayer/squads/req) +"fgv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"fgA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "fgE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -30772,14 +30877,13 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"fgU" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"fhb" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "fhf" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, @@ -30791,19 +30895,24 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) +"fhT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_a_s) "fie" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"fix" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"fiz" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/shipboard/panic) "fiE" = ( /obj/structure/machinery/computer/cameras/containment/hidden{ dir = 4; @@ -30814,10 +30923,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/hull/upper/u_a_s) "fiQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -30826,23 +30931,12 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"fjz" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) -"fkK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, +"fkF" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_m_p) "fkO" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ @@ -30855,14 +30949,10 @@ dir = 8 }, /area/almayer/medical/containment/cell/cl) -"flr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) +"flK" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "flW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light{ @@ -30874,6 +30964,15 @@ icon_state = "silver" }, /area/almayer/living/briefing) +"flY" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "fmv" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -30895,6 +30994,15 @@ icon_state = "bluecorner" }, /area/almayer/living/pilotbunks) +"fmY" = ( +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/maint/hull/upper/u_a_s) +"fmZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "fnv" = ( /obj/structure/machinery/light{ dir = 4 @@ -30948,6 +31056,19 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) +"foa" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "foC" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -30994,26 +31115,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"foS" = ( -/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 +"foU" = ( +/obj/item/tool/screwdriver, +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) -"fpi" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/upper/u_a_p) +"fpj" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/maint/hull/lower/stern) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "fpA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -31057,21 +31173,6 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"fqb" = ( -/obj/item/paper/prison_station/interrogation_log{ - pixel_x = 10; - pixel_y = 7 - }, -/obj/structure/largecrate/random/barrel/green, -/obj/item/limb/hand/l_hand{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "fqc" = ( /obj/structure/machinery/vending/cigarette, /obj/structure/machinery/light, @@ -31079,24 +31180,17 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) +"fqh" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "fqC" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"fqJ" = ( -/obj/structure/machinery/door_control{ - id = "safe_armory"; - name = "Hangar Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) "fqO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -31104,6 +31198,12 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) +"fqP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "fqW" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/almayer{ @@ -31121,6 +31221,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"fra" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "frb" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -31144,6 +31252,11 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"frq" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "frz" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Exterior Airlock"; @@ -31174,12 +31287,6 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"frV" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "frX" = ( /obj/structure/machinery/optable, /obj/structure/sign/safety/medical{ @@ -31253,20 +31360,30 @@ icon_state = "mono" }, /area/almayer/hallways/vehiclehangar) -"ftx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"ftr" = ( /obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"ftG" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/hull/lower/l_m_s) +"ftA" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/lower/p_bow) +"ftE" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/upper/u_a_s) +"ful" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "fut" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -31331,23 +31448,11 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"fvo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/glasses/welding{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/weldingtool{ - pixel_x = -11; - pixel_y = 5 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, +"fvs" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/s_bow) "fvA" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer, @@ -31358,13 +31463,6 @@ icon_state = "redfull" }, /area/almayer/command/cic) -"fvJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) "fvK" = ( /obj/structure/sign/safety/galley{ pixel_x = 8; @@ -31403,13 +31501,22 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"fwP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ +"fwQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"fwT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_s) "fwY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31458,14 +31565,6 @@ icon_state = "plate" }, /area/almayer/shipboard/weapon_room) -"fyd" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 1" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "fyp" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -31475,6 +31574,10 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) +"fyq" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "fyD" = ( /obj/structure/machinery/light, /obj/structure/ladder{ @@ -31483,24 +31586,6 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"fyT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - dir = 1; - name = "\improper Command Power Substation" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/mess) "fzq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -31513,18 +31598,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/charlie) -"fzx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "fzP" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -31541,30 +31614,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) -"fzT" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"fAa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/pistol{ - current_rounds = 0 - }, -/obj/item/weapon/gun/pistol/m4a3{ - current_mag = null - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/living/offices/flight) "fAr" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, /turf/open/floor/plating/plating_catwalk, @@ -31575,14 +31624,12 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/main_office) -"fBo" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"fAH" = ( +/obj/structure/largecrate/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/p_stern) "fBD" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -31615,25 +31662,39 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"fCi" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/lungs/prosthetic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "fCp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) +"fCG" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/s_bow) "fCL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"fCZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/handcard/uno_reverse_red{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/toy/deck/uno, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "fDh" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -31656,6 +31717,27 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) +"fDm" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/nanopaste{ + pixel_x = -3; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"fDC" = ( +/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/hull/upper/u_m_p) "fDG" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ @@ -31678,6 +31760,12 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"fDT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "fDU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -31774,6 +31862,10 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) +"fFN" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "fFO" = ( /obj/structure/machinery/light{ dir = 4 @@ -31785,23 +31877,6 @@ icon_state = "plate" }, /area/almayer/medical/morgue) -"fFQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) -"fFU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "fGa" = ( /obj/structure/surface/rack, /obj/effect/decal/warning_stripes{ @@ -31816,12 +31891,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"fGi" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "fGu" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -31849,15 +31918,15 @@ }, /area/almayer/medical/medical_science) "fGB" = ( -/obj/structure/largecrate/random/case/small, +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"fGG" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/l_a_s) -"fHb" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/shipboard/panic) "fHh" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -31880,10 +31949,16 @@ icon_state = "greenfull" }, /area/almayer/living/offices) -"fHM" = ( -/obj/docking_port/stationary/escape_pod/cl, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) +"fHY" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"fII" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "fIM" = ( /obj/effect/landmark/start/marine/tl/bravo, /obj/effect/landmark/late_join/bravo, @@ -31921,16 +31996,6 @@ icon_state = "plate" }, /area/almayer/command/cichallway) -"fJp" = ( -/obj/structure/girder, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"fJu" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) "fJy" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/toy/deck{ @@ -31939,6 +32004,16 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) +"fJA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "fJO" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -31996,6 +32071,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) +"fKj" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "fKt" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/prop/dam/crane{ @@ -32012,6 +32097,13 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"fKv" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade/three, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "fKw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 @@ -32031,6 +32123,20 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) +"fKC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"fKL" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) "fKT" = ( /obj/structure/machinery/vending/coffee, /obj/structure/sign/safety/coffee{ @@ -32070,26 +32176,10 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"fLi" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "fLl" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_stern) -"fLt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "fLu" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -32119,6 +32209,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) +"fLI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -27; + serial_number = 11 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "fMe" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -32146,6 +32248,12 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"fMn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "fMt" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "ARES Interior"; @@ -32187,19 +32295,23 @@ icon_state = "green" }, /area/almayer/hallways/aft_hallway) -"fMU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fMK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 +/area/almayer/squads/req) +"fMZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "fNi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -32215,6 +32327,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"fNv" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "fNC" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -32222,6 +32342,16 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/aft_hallway) +"fNY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "fOk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -32253,15 +32383,6 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering) -"fOK" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "fOL" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -32271,6 +32392,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) +"fOO" = ( +/obj/item/ammo_box/magazine/misc/mre, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "fPn" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -32327,26 +32454,6 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"fPF" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/gloves/yellow, -/obj/item/device/multitool, -/obj/item/tool/screwdriver{ - icon_state = "screwdriver7" - }, -/obj/item/tool/crowbar/red, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/almayer{ - 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/hull/upper/u_a_p) "fQn" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -32368,14 +32475,6 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"fQy" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "fQS" = ( /obj/structure/bed/chair/comfy/orange, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -32386,16 +32485,6 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"fRg" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_s) "fRr" = ( /obj/structure/machinery/light{ dir = 1 @@ -32411,6 +32500,12 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"fRD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "fRS" = ( /obj/effect/landmark/start/warden, /obj/effect/decal/warning_stripes{ @@ -32419,6 +32514,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) +"fSj" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "fSl" = ( /obj/structure/machinery/line_nexter{ id = "line2"; @@ -32463,9 +32564,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"fTl" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_s) "fTm" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, @@ -32499,17 +32597,6 @@ icon_state = "green" }, /area/almayer/hallways/starboard_hallway) -"fUz" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/storage/box/cups, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "fUA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) @@ -32528,22 +32615,24 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"fUZ" = ( -/obj/structure/largecrate/random/barrel/green, +"fUF" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) -"fVa" = ( -/obj/item/stack/catwalk, -/obj/structure/platform_decoration{ - dir = 4 +/area/almayer/maint/hull/upper/s_stern) +"fUL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_p) -"fVe" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_p) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) "fVo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -32580,14 +32669,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/chemistry) -"fWg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "fWi" = ( /obj/structure/toilet{ dir = 1 @@ -32600,6 +32681,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"fWj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/maint/hull/upper/u_m_p) +"fWP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "fXg" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -32614,6 +32711,16 @@ icon_state = "silver" }, /area/almayer/command/computerlab) +"fXy" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "fXz" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -32640,6 +32747,17 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) +"fXG" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "fXN" = ( /obj/effect/landmark/start/marine/delta, /obj/effect/landmark/late_join/delta, @@ -32674,17 +32792,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"fYr" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/radio, +"fYV" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/medical/upper_medical) "fYZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -32715,6 +32829,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) +"fZu" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "fZx" = ( /obj/structure/sign/safety/security{ pixel_x = 15; @@ -32727,15 +32847,6 @@ icon_state = "plate" }, /area/almayer/hallways/port_hallway) -"fZy" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "fZA" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -32757,22 +32868,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"fZI" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 7; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"fZR" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "fZX" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -32822,6 +32917,15 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"gaW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "gba" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/faxmachine/uscm/command{ @@ -32884,6 +32988,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"gbz" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"gck" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "gcm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -32907,6 +33021,22 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) +"gcu" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"gcz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) "gcN" = ( /obj/structure/machinery/door/airlock/almayer/command{ access_modified = 1; @@ -32988,20 +33118,6 @@ "gel" = ( /turf/closed/wall/almayer/research/containment/wall/west, /area/almayer/medical/containment/cell/cl) -"gen" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "ger" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/wy{ @@ -33021,6 +33137,10 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) +"gew" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "geH" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" @@ -33101,16 +33221,35 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"ggx" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/structure/machinery/keycard_auth{ + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 26 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower/workshop) "ggz" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_four) -"ggD" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "ggJ" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -33128,30 +33267,15 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/airmix) -"ggS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/perma) -"ghA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/handcard/uno_reverse_red{ - pixel_x = 5; - pixel_y = 5 +"ght" = ( +/obj/item/stack/tile/carpet{ + amount = 20 }, -/obj/item/toy/deck/uno, -/obj/structure/machinery/light/small, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_a_p) "ghD" = ( /obj/structure/sign/safety/autoopenclose{ pixel_x = 7; @@ -33159,14 +33283,15 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/port_hallway) -"ghX" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 14" +"gib" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower/p_bow) "gio" = ( /obj/structure/closet/emcloset, /obj/structure/sign/safety/restrictedarea{ @@ -33286,20 +33411,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"gkr" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"gkE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/mess) "gkK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/surface/table/reinforced/almayer_B, @@ -33316,6 +33427,10 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"glm" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "gls" = ( /obj/structure/filingcabinet/filingcabinet, /obj/item/clipboard, @@ -33328,6 +33443,17 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"glz" = ( +/obj/structure/largecrate/supply/generator, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + layer = 2.9; + pixel_x = -10; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "glB" = ( /obj/structure/sign/safety/chem_lab{ pixel_x = 5; @@ -33338,6 +33464,12 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"glC" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "glH" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -33378,6 +33510,10 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"gnh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "gnu" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/green, @@ -33389,15 +33525,16 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"gnM" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/almayer{ - icon_state = "plate" +"gnI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bag/trash{ + pixel_x = -3 }, -/area/almayer/maint/hull/lower/l_f_p) +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "gob" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 32 @@ -33407,12 +33544,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"gof" = ( -/obj/structure/platform_decoration{ - dir = 1 +"gog" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 12; + pixel_y = -5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "goj" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 2; @@ -33452,23 +33593,22 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) +"goF" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower/engine_core) "goL" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"goM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"goY" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) "gpc" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -33493,18 +33633,21 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"gpO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "gpY" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/lifeboat_pumps/north1) -"gqt" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +"gqy" = ( +/obj/structure/machinery/door_control{ + id = "safe_armory"; + name = "Hangar Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) "gqP" = ( /obj/structure/largecrate/random/case, /obj/structure/machinery/camera/autoname/almayer{ @@ -33515,33 +33658,11 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) -"gqQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/obj/structure/sign/poster/hero/voteno{ - pixel_y = 32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"grd" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +"grf" = ( +/obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"grv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/s_bow) "grF" = ( /obj/structure/pipes/vents/scrubber, @@ -33562,22 +33683,6 @@ icon_state = "orangecorner" }, /area/almayer/living/briefing) -"grT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/tool/wet_sign{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "gsd" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler{ @@ -33634,28 +33739,14 @@ /obj/effect/landmark/late_join, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"gsp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"gsy" = ( +"gsA" = ( /obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/s_bow) "gsC" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -33692,13 +33783,28 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"gtQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"gtA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/transmitter{ + dir = 8; + name = "Medical Telephone"; + phone_category = "Almayer"; + phone_id = "Medical Lower"; + pixel_x = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) +"gtF" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "gtU" = ( /obj/structure/machinery/power/apc/almayer{ dir = 8 @@ -33729,16 +33835,13 @@ 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" +"guv" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/area/almayer/maint/upper/u_m_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "guS" = ( /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer{ @@ -33765,6 +33868,21 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"gvj" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "gvq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 @@ -33773,6 +33891,12 @@ icon_state = "silver" }, /area/almayer/command/cic) +"gvt" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "gvU" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -33812,6 +33936,15 @@ icon_state = "plate" }, /area/almayer/living/gym) +"gwD" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/clipboard, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) "gwM" = ( /obj/structure/pipes/vents/pump, /obj/structure/mirror{ @@ -33859,18 +33992,12 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) -"gxm" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/stairs) "gxn" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"gxI" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/s_bow) "gxO" = ( /turf/open/floor/almayer{ dir = 10; @@ -33886,14 +34013,18 @@ dir = 8 }, /area/almayer/medical/containment/cell) -"gxU" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, +"gxS" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" + icon_state = "plate" }, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/maint/upper/u_m_p) +"gxW" = ( +/obj/item/stack/catwalk, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_p) "gyv" = ( /obj/structure/platform_decoration{ dir = 4 @@ -33927,13 +34058,6 @@ icon_state = "orange" }, /area/almayer/hallways/starboard_hallway) -"gyH" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "gyN" = ( /obj/structure/machinery/prop{ desc = "It's a server box..."; @@ -33953,6 +34077,13 @@ icon_state = "orange" }, /area/almayer/engineering/ce_room) +"gyT" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "gyU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -33995,6 +34126,16 @@ /obj/item/reagent_container/hypospray/autoinjector/skillless, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"gzx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"gzE" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "gzI" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -34013,13 +34154,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"gzN" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "gzV" = ( /obj/structure/sink{ dir = 1; @@ -34095,34 +34229,21 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"gBd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "gBo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"gBs" = ( -/obj/structure/machinery/door/airlock/almayer/maint, +"gBO" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) -"gBU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/bag/trash{ - pixel_x = -3 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 + icon_state = "orange" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/upper/u_a_s) +"gBP" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "gBW" = ( /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" @@ -34146,15 +34267,6 @@ icon_state = "plate" }, /area/almayer/hallways/vehiclehangar) -"gCu" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "gCw" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = 10 @@ -34182,12 +34294,6 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"gCQ" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_a_s) "gDp" = ( /obj/structure/machinery/light{ dir = 4 @@ -34229,19 +34335,16 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"gDX" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) "gEg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"gEh" = ( +"gEk" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/lower/l_f_s) "gEo" = ( /obj/structure/machinery/cryopod/right, /obj/structure/machinery/light{ @@ -34265,12 +34368,47 @@ icon_state = "plate" }, /area/almayer/engineering/lower) +"gEM" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) +"gER" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "gFa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) +"gFc" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_m_s) "gFd" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/atmospipes{ @@ -34290,14 +34428,6 @@ icon_state = "cargo" }, /area/almayer/living/commandbunks) -"gGb" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "gGf" = ( /obj/structure/machinery/light{ dir = 1 @@ -34381,6 +34511,9 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"gGX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "gHh" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -34388,12 +34521,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"gHi" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_m_s) "gHj" = ( /obj/structure/machinery/light, /obj/structure/closet/secure_closet/fridge/groceries/stock, @@ -34407,6 +34534,12 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"gHm" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "gHo" = ( /obj/structure/machinery/door/airlock/almayer/marine/delta/tl, /turf/open/floor/almayer{ @@ -34420,6 +34553,20 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"gHx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "gHZ" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" @@ -34437,12 +34584,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/ce_room) -"gIm" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "gII" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -34472,15 +34613,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/evidence_storage) -"gJf" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"gJF" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_stern) "gJO" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door/window/southleft{ @@ -34500,20 +34632,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_m_p) "gKd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -34524,12 +34642,12 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"gKv" = ( -/obj/effect/landmark/yautja_teleport, +"gKl" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/lower/l_f_p) "gKB" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/firealarm{ @@ -34582,12 +34700,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"gLm" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) +"gLo" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "gLz" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -34674,10 +34790,13 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"gMJ" = ( -/obj/structure/largecrate/supply/weapons/pistols, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +"gMj" = ( +/obj/item/tool/weldingtool, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "gMN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -34719,18 +34838,19 @@ dir = 4 }, /area/almayer/living/briefing) -"gNg" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"gMX" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"gNo" = ( +/area/almayer/maint/hull/lower/stern) +"gNj" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_p) +/area/almayer/maint/hull/upper/s_stern) "gNp" = ( /turf/open/floor/almayer{ dir = 9; @@ -34748,23 +34868,6 @@ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) -"gNG" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) -"gNN" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "gNO" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -34774,22 +34877,13 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"gNQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/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) -"gOk" = ( -/obj/structure/largecrate/guns/merc{ - name = "\improper dodgy crate" +"gOf" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/upper/u_m_p) "gOs" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -34817,6 +34911,15 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"gOu" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "gOC" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/almayer{ @@ -34857,6 +34960,12 @@ dir = 4 }, /area/almayer/command/airoom) +"gPs" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "gPF" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -34864,15 +34973,6 @@ icon_state = "orange" }, /area/almayer/hallways/stern_hallway) -"gPS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "gQk" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/terminal{ @@ -34881,16 +34981,12 @@ /obj/structure/machinery/faxmachine/corporate/liaison, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"gQu" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/storage/firstaid/rad, -/obj/structure/surface/rack, +"gQz" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_a_s) "gQF" = ( /obj/structure/bed/chair/comfy{ buckling_y = 2; @@ -34907,18 +35003,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"gQQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"gRc" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "gRd" = ( /obj/structure/platform, /obj/structure/target{ @@ -34927,6 +35011,42 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"gRq" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_s) +"gRt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"gRz" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) +"gRB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "gRP" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -34967,26 +35087,30 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"gSy" = ( -/obj/item/frame/rack{ - layer = 3.1; - pixel_y = 19 - }, -/obj/structure/surface/rack, -/obj/item/tool/weldpack{ - pixel_x = 5 - }, -/obj/item/tool/weldpack{ - pixel_x = -2 +"gSq" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 12 }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"gSH" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" +"gTi" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -8 }, -/area/almayer/maint/hull/lower/l_m_s) +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 12 + }, +/obj/item/clothing/head/militia/bucket{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "gTH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/skills{ @@ -35004,14 +35128,16 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"gTK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"gTV" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = 32 }, +/obj/structure/machinery/power/reactor, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/engineering/lower/engine_core) "gUf" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/floor/almayer{ @@ -35027,31 +35153,12 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"gUi" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"gUn" = ( +"gUo" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"gUu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"gUG" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_s) "gUL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -35137,6 +35244,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) +"gVP" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/hull/lower/l_m_s) +"gWj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) "gWu" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -35155,6 +35275,16 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) +"gWL" = ( +/obj/structure/ladder{ + height = 2; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/p_bow) "gXl" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access_txt = "5" @@ -35221,23 +35351,12 @@ icon_state = "redfull" }, /area/almayer/living/offices/flight) -"gYI" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"gYU" = ( -/obj/structure/machinery/light/small{ +"gYL" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "gZw" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, @@ -35313,11 +35432,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"haO" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "haQ" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -35331,36 +35445,12 @@ icon_state = "plate" }, /area/almayer/living/offices) -"haR" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) "haT" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "green" }, /area/almayer/hallways/port_hallway) -"hbl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/u_m_s) -"hbp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/p_stern) "hbs" = ( /obj/structure/surface/table/almayer, /obj/item/frame/fire_alarm, @@ -35378,20 +35468,6 @@ icon_state = "silver" }, /area/almayer/living/auxiliary_officer_office) -"hbE" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/snacks/cheesecakeslice{ - pixel_y = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "hbI" = ( /obj/structure/sign/safety/ammunition{ pixel_x = 32; @@ -35457,6 +35533,16 @@ icon_state = "plate" }, /area/almayer/living/cryo_cells) +"hcx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) "hcI" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -35471,6 +35557,12 @@ icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) +"hdf" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) "hdh" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -35489,13 +35581,6 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"hdy" = ( -/obj/item/storage/firstaid/fire, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "hdE" = ( /obj/structure/filingcabinet, /obj/item/reagent_container/food/drinks/coffeecup/uscm{ @@ -35505,6 +35590,10 @@ icon_state = "green" }, /area/almayer/squads/req) +"hdO" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "heb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -35547,6 +35636,14 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/armory) +"heI" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "heK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -35556,10 +35653,6 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) -"heO" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "heS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -35596,27 +35689,16 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"hfv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"hfO" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full{ - pixel_y = 8 - }, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/suit/storage/hazardvest/black, -/obj/item/tool/crowbar, +"hfs" = ( +/obj/item/tool/kitchen/utensil/pfork, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/p_stern) +"hfx" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "hfQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ @@ -35632,12 +35714,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"hgk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "hgo" = ( /obj/structure/machinery/light{ dir = 8 @@ -35680,28 +35756,15 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"hgO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +"hgR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/tool/stamp/approved{ - pixel_y = -11; - pixel_x = -3 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"hgV" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 15" - }, -/obj/structure/machinery/light{ - dir = 8 - }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower/l_a_p) "hgZ" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -35714,25 +35777,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) -"hhd" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = -9; - pixel_y = 16 - }, -/obj/item/clothing/suit/storage/hazardvest/blue{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "hhe" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_y = 32 @@ -35744,12 +35788,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/starboard_umbilical) -"hhg" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "hhn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -35789,16 +35827,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"hiu" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "hiy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -35814,12 +35842,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hja" = ( -/obj/structure/machinery/light/small, +"hiU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) "hji" = ( /obj/structure/bed/chair{ dir = 4 @@ -35873,30 +35907,21 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) -"hjT" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/largecrate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "hki" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"hkz" = ( -/obj/structure/machinery/light/small{ +"hko" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "red" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/living/cryo_cells) "hkB" = ( /obj/structure/sign/safety/rewire{ pixel_x = 8; @@ -35910,6 +35935,16 @@ icon_state = "cargo" }, /area/almayer/hallways/port_hallway) +"hkF" = ( +/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/hull/upper/u_m_s) "hkG" = ( /obj/structure/sign/safety/ammunition{ pixel_y = -32 @@ -35946,6 +35981,14 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"hkN" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "hkX" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -35965,6 +36008,17 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"hlm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "hlH" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -36070,9 +36124,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"hmA" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/p_bow) "hmC" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; @@ -36111,36 +36162,18 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/main_office) +"hmM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "hmS" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ icon_state = "blue" }, /area/almayer/command/cichallway) -"hmV" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "medical manuals bookcase"; - opacity = 0 - }, -/obj/item/book/manual/surgery, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"hmZ" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "hng" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/accessory/storage/black_vest/acid_harness, @@ -36156,18 +36189,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) -"hnt" = ( -/obj/item/toy/deck{ - pixel_y = 12 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/obj/structure/surface/table/woodentable/poor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "hnI" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -36181,15 +36202,21 @@ icon_state = "test_floor4" }, /area/almayer/living/pilotbunks) -"hog" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"hnK" = ( +/obj/structure/coatrack, +/obj/structure/sign/poster/clf{ + pixel_x = -28 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_m_s) "hon" = ( /obj/structure/sign/safety/medical{ pixel_x = 8; @@ -36209,11 +36236,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/port_hallway) -"hoT" = ( +"hoC" = ( +/obj/item/storage/firstaid/fire, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_s) +"hpa" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "hpk" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -36230,6 +36266,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"hpO" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control{ + id = "Secretroom"; + indestructible = 1; + layer = 2.5; + name = "Shutters"; + use_power = 0 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "hpS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "crate_room3"; @@ -36249,10 +36298,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"hqb" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) "hqc" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -36271,20 +36316,18 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell) -"hqm" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"hqJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 }, -/area/almayer/maint/hull/upper/u_m_s) -"hqu" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 32 }, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "hqU" = ( /obj/structure/bed/chair{ dir = 8; @@ -36332,15 +36375,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/medical_science) -"hro" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "hrF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -36350,19 +36384,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/starboard_point_defense) -"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) "hrO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36372,6 +36393,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) +"hsf" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "hsg" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -36382,21 +36406,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"hsh" = ( -/obj/structure/coatrack, -/obj/structure/sign/poster/clf{ - pixel_x = -28 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "hsj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -36414,19 +36423,9 @@ icon_state = "test_floor4" }, /area/almayer/squads/delta) -"hsu" = ( -/obj/structure/bed/sofa/south/grey{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "hsy" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/lower/engine_core) -"hsK" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "hsW" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -36443,33 +36442,33 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) -"htg" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"htn" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"htk" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 + icon_state = "test_floor4" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/upper/p_bow) +"hts" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/lower/cryo_cells) -"htq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/lower/stern) +"htB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "htG" = ( /obj/item/tool/soap, /obj/structure/machinery/light/small{ @@ -36499,10 +36498,8 @@ }, /area/almayer/living/offices) "huD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, /area/almayer/maint/hull/upper/u_f_s) "huK" = ( /turf/open/floor/almayer{ @@ -36539,15 +36536,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/port_hallway) -"hvq" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "hvv" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -36577,30 +36565,13 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/plating, /area/almayer/powered/agent) -"hvx" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_p) "hvH" = ( /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"hwd" = ( -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) +"hvP" = ( +/obj/item/trash/barcardine, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "hwC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -36610,6 +36581,13 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) +"hwQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "hxe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36656,22 +36634,33 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"hyb" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "hyc" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/aft_hallway) +"hyj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "hyk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) +"hys" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) "hyt" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -36706,6 +36695,14 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) +"hyL" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "hyQ" = ( /turf/closed/wall/almayer, /area/almayer/living/synthcloset) @@ -36723,16 +36720,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_m_s) "hzs" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -36768,10 +36755,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"hzN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "hAc" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/flare, @@ -36780,6 +36763,13 @@ icon_state = "cargo" }, /area/almayer/squads/req) +"hAd" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_s) +"hAu" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "hAz" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -36857,20 +36847,15 @@ icon_state = "cargo" }, /area/almayer/command/lifeboat) -"hCk" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"hCq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"hBR" = ( +/obj/structure/platform{ + dir = 1 }, +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/u_a_s) "hCt" = ( /obj/structure/sign/safety/terminal{ pixel_x = 15; @@ -36883,6 +36868,11 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"hCv" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) "hCS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin/uscm{ @@ -36917,6 +36907,26 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"hDA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) "hDL" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; @@ -36961,33 +36971,12 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"hEj" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "hEl" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"hEr" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "hEw" = ( /obj/structure/pipes/standard/simple/visible{ dir = 10 @@ -36997,6 +36986,32 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"hEy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"hEB" = ( +/obj/structure/ladder{ + height = 2; + id = "AftStarboardMaint" + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"hEQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Wheelchair Storage"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) "hEV" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -37026,6 +37041,17 @@ icon_state = "test_floor4" }, /area/almayer/medical/morgue) +"hFR" = ( +/obj/structure/ladder{ + height = 1; + id = "AftStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_s) "hGG" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -37114,15 +37140,31 @@ icon_state = "orange" }, /area/almayer/hallways/starboard_umbilical) -"hIp" = ( +"hIh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"hIl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NW-out"; + layer = 2.5 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/p_bow) +"hIq" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "hIs" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -37133,10 +37175,6 @@ icon_state = "dark_sterile" }, /area/almayer/command/corporateliaison) -"hIG" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "hII" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -37151,12 +37189,14 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"hIX" = ( -/obj/structure/largecrate/random/case/double, +"hIT" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/upper/mess) "hJg" = ( /obj/structure/pipes/trinary/mixer{ dir = 4; @@ -37185,12 +37225,6 @@ icon_state = "green" }, /area/almayer/hallways/aft_hallway) -"hJD" = ( -/obj/structure/bed/sofa/south/grey/right{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "hJI" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -37220,40 +37254,30 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"hKO" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - 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 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"hLq" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"hLu" = ( -/obj/structure/sign/safety/hvac_old{ +/obj/structure/sign/safety/water{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/l_m_p) "hLC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/grunt_rnr) +"hLD" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "hLI" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -37271,6 +37295,14 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) +"hLW" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) "hMc" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 @@ -37292,24 +37324,22 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/engineering/lower) -"hMM" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "hMN" = ( /obj/structure/machinery/power/apc/almayer, /turf/open/floor/almayer{ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) +"hMV" = ( +/obj/item/storage/firstaid, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "hNh" = ( -/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/s_bow) "hNl" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21"; @@ -37321,6 +37351,17 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"hNn" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "hNw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -37328,6 +37369,14 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/charlie) +"hNJ" = ( +/obj/structure/surface/rack, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/hatchet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "hNM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/metal{ @@ -37354,6 +37403,12 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) +"hOc" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "hOR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37363,9 +37418,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/port_hallway) -"hOV" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/constr) "hPe" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, @@ -37378,6 +37430,12 @@ icon_state = "test_floor4" }, /area/almayer/medical/medical_science) +"hPf" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) "hPh" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/almayer{ @@ -37385,13 +37443,6 @@ icon_state = "silver" }, /area/almayer/living/auxiliary_officer_office) -"hPu" = ( -/obj/structure/largecrate/supply, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) "hPI" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/brig/perma) @@ -37433,10 +37484,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"hQK" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) "hQP" = ( /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer{ @@ -37518,17 +37565,6 @@ icon_state = "plate" }, /area/almayer/living/numbertwobunks) -"hRA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "hRW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -37556,26 +37592,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"hSb" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"hSj" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig"; - closeOtherId = "brigmaint_n" - }, -/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) @@ -37588,18 +37604,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"hSv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "hSw" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -37643,6 +37647,12 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"hTj" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "hTl" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -37707,28 +37717,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"hTU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"hUb" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "hUk" = ( /turf/open/floor/almayer{ dir = 10; @@ -37771,6 +37759,15 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"hVl" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "hVz" = ( /obj/structure/machinery/light{ dir = 1 @@ -37780,12 +37777,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"hVL" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "hWq" = ( /obj/structure/platform{ layer = 3.1 @@ -37834,23 +37825,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"hWH" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/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 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "hWJ" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ @@ -37865,6 +37839,15 @@ icon_state = "blue" }, /area/almayer/command/cichallway) +"hWV" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "hXb" = ( /turf/open/floor/almayer{ dir = 1; @@ -37902,12 +37885,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hXD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "hXG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -37946,12 +37923,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"hYf" = ( -/obj/effect/landmark/yautja_teleport, +"hYj" = ( +/obj/structure/platform_decoration, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_a_s) "hYn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37964,14 +37941,34 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"hYE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"hYw" = ( +/obj/item/tool/wet_sign, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) +"hYE" = ( +/obj/structure/closet/crate{ + desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; + name = "special operations crate" + }, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "hYG" = ( /obj/structure/bed/chair{ dir = 1 @@ -38000,12 +37997,14 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"hZw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"hZp" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "hZE" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -38050,10 +38049,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"hZZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "iaa" = ( /obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, /turf/open/floor/almayer{ @@ -38092,6 +38087,14 @@ icon_state = "red" }, /area/almayer/squads/alpha) +"iao" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/mgoggles/prescription, +/obj/item/clothing/glasses/mbcg, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "iaq" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/almayer{ @@ -38104,6 +38107,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"iay" = ( +/obj/item/paper/almayer_storage, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "iaF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -38130,24 +38137,6 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"ibf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"ibP" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "icp" = ( /turf/open/floor/almayer{ dir = 8; @@ -38181,6 +38170,17 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) +"idf" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "idx" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -38193,7 +38193,7 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"idL" = ( +"idV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -38211,22 +38211,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"ied" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"ien" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "ieu" = ( /obj/structure/window/reinforced{ dir = 4; @@ -38297,6 +38281,21 @@ dir = 4 }, /area/almayer/command/airoom) +"ieG" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "ieX" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/distribution_pipes{ @@ -38321,13 +38320,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"igb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "igr" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -38347,39 +38339,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"igw" = ( -/obj/structure/sign/poster/ad{ - pixel_x = 30 - }, -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"igS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"iho" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/lower/constr) "ihw" = ( /obj/structure/machinery/cm_vending/sorted/medical, /turf/open/floor/almayer{ @@ -38387,6 +38346,15 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"ihF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"ihI" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "ihM" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; @@ -38481,6 +38449,14 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"ijw" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "ijQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -38520,19 +38496,24 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"ikA" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +"ikL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/maint/hull/lower/s_bow) -"ikC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + 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/hull/upper/u_a_s) +/area/almayer/maint/upper/mess) "ikQ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/tool/stamp/hop{ @@ -38554,9 +38535,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"ikT" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "ilq" = ( /turf/open/floor/almayer{ dir = 4; @@ -38602,26 +38580,25 @@ }, /area/almayer/medical/morgue) "imt" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_f_p) "imy" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"inh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-y" +"inq" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "cargo" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/maint/hull/lower/l_m_s) "ins" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -38635,6 +38612,17 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) +"iny" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "inL" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -38645,6 +38633,9 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"iov" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) "iow" = ( /obj/structure/machinery/cm_vending/sorted/attachments/squad{ req_access = null; @@ -38665,9 +38656,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"ioM" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "ioP" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -38681,6 +38669,12 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) +"ioT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "ioU" = ( /turf/closed/wall/almayer, /area/almayer/command/securestorage) @@ -38712,39 +38706,6 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"ipk" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"ipn" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - 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/hull/upper/u_m_s) -"ipB" = ( -/obj/structure/surface/rack, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/hatchet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "ipE" = ( /obj/structure/bed/chair{ dir = 8 @@ -38753,6 +38714,16 @@ icon_state = "orangefull" }, /area/almayer/squads/alpha_bravo_shared) +"ipF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "ipK" = ( /obj/effect/step_trigger/message/memorial, /turf/open/floor/almayer{ @@ -38779,21 +38750,20 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) +"ipY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) "iqd" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"iqo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/squads/req) "iqp" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; @@ -38815,6 +38785,13 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"iqN" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "iqR" = ( /obj/structure/sign/safety/cryo{ pixel_x = -16 @@ -38833,6 +38810,13 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) +"irA" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "irF" = ( /obj/structure/closet/emcloset/legacy, /turf/open/floor/almayer{ @@ -38871,15 +38855,15 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"isq" = ( +"isz" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/upper/s_bow) "isC" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -38985,17 +38969,6 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"iuf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "iun" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, @@ -39036,12 +39009,6 @@ /obj/structure/machinery/computer/emails, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"iuI" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "ivf" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/camera, @@ -39062,10 +39029,9 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"ivu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +"ivy" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) "ivz" = ( /obj/structure/closet, /turf/open/floor/almayer{ @@ -39078,12 +39044,27 @@ icon_state = "test_floor4" }, /area/almayer/hallways/port_hallway) -"ivL" = ( -/obj/structure/platform{ - dir = 8 +"ivG" = ( +/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/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_m_p) "ivM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -39170,6 +39151,14 @@ icon_state = "green" }, /area/almayer/squads/req) +"ixc" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "ixj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/crew/alt, @@ -39177,14 +39166,13 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) -"ixu" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ixl" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "ixv" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 @@ -39193,6 +39181,14 @@ icon_state = "plate" }, /area/almayer/command/cic) +"ixB" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/u_m_s) "ixC" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -39231,15 +39227,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"iyE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "iyF" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -39297,6 +39284,9 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"izT" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_p) "izY" = ( /obj/structure/machinery/autodoc_console, /turf/open/floor/almayer{ @@ -39304,6 +39294,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"iAo" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "iAw" = ( /obj/item/tool/warning_cone{ pixel_x = -12 @@ -39361,14 +39357,12 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"iBu" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, +"iBs" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/l_f_p) "iBY" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/almayer{ @@ -39396,14 +39390,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"iCD" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "iCF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -39416,24 +39402,46 @@ icon_state = "green" }, /area/almayer/living/offices) +"iCI" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "iDd" = ( /obj/structure/machinery/door/poddoor/railing{ id = "vehicle_elevator_railing_aux" }, /turf/open/floor/almayer, /area/almayer/hallways/vehiclehangar) -"iDk" = ( -/obj/structure/closet/emcloset, +"iDe" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + pixel_y = 0 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, -/area/almayer/maint/hull/lower/l_m_p) -"iDs" = ( -/obj/structure/largecrate/random/barrel/red, +/area/almayer/medical/upper_medical) +"iDx" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/firealarm, +/obj/item/circuitboard, +/obj/item/clipboard, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/s_stern) +"iDD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "iDN" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -39444,12 +39452,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/starboard_hallway) -"iEa" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "iEb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -39499,6 +39501,10 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"iED" = ( +/obj/structure/curtain/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "iFc" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood/ship, @@ -39508,18 +39514,6 @@ icon_state = "bluefull" }, /area/almayer/living/pilotbunks) -"iFA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Railguns and Viewing Room" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) "iFC" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -39559,21 +39553,6 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) -"iFY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) -"iGc" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "iGn" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/closet/secure_closet/surgical{ @@ -39584,6 +39563,29 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) +"iGH" = ( +/obj/structure/platform_decoration, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"iGO" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/offices/flight) "iGQ" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 @@ -39606,6 +39608,10 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cells) +"iIa" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "iIj" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -39627,20 +39633,12 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"iIH" = ( -/obj/structure/largecrate/supply/medicine/medivend{ - pixel_x = 3 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = 3; - pixel_y = 11; - density = 1 - }, +"iIt" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" + icon_state = "plate" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/upper/u_a_s) "iIP" = ( /obj/structure/toilet{ pixel_y = 16 @@ -39666,6 +39664,21 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"iJb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -34 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"iJA" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "iJB" = ( /obj/structure/sign/safety/galley{ pixel_x = 8; @@ -39686,13 +39699,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"iJT" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +"iJU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_a_s) "iKb" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -39722,6 +39734,15 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) +"iKB" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "iKD" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -39749,15 +39770,6 @@ icon_state = "mono" }, /area/almayer/engineering/port_atmos) -"iKV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "iKZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -39825,6 +39837,13 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_lobby) +"iLv" = ( +/obj/item/stool{ + pixel_x = 15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "iLG" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -39833,6 +39852,15 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) +"iLH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "iLO" = ( /turf/open/floor/almayer{ dir = 4; @@ -39867,20 +39895,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"iNk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"iNR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "iNY" = ( /obj/structure/machinery/status_display{ pixel_x = 32; @@ -39888,30 +39902,33 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"iOt" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "iOD" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"iOX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"iPe" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" }, +/area/almayer/maint/hull/upper/u_a_p) +"iPm" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) -"iPf" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"iPq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/l_m_p) "iPv" = ( /obj/structure/bed/chair/comfy, /obj/structure/window/reinforced/ultra, @@ -39923,6 +39940,16 @@ icon_state = "silver" }, /area/almayer/living/briefing) +"iPy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) "iPD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -39939,21 +39966,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"iPN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "iPS" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ @@ -40042,16 +40054,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"iQJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ +"iQK" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/stern) +"iQR" = ( +/obj/structure/sign/safety/storage{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_m_p) "iRr" = ( /obj/structure/machinery/light{ dir = 1 @@ -40087,6 +40099,9 @@ dir = 4 }, /area/almayer/medical/containment/cell) +"iSe" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) "iSm" = ( /obj/structure/pipes/vents/pump, /obj/structure/mirror{ @@ -40133,25 +40148,18 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) -"iSB" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"iSr" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/area/almayer/maint/hull/upper/u_a_s) -"iSV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "2;7" +/obj/structure/sign/safety/water{ + pixel_x = -17 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/upper/u_m_s) "iSZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40188,10 +40196,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"iTq" = ( -/obj/structure/curtain/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "iTw" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -40223,20 +40227,9 @@ icon_state = "silver" }, /area/almayer/hallways/aft_hallway) -"iTQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"iUh" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, +"iTV" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/upper/u_m_p) "iUk" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie{ dir = 1 @@ -40278,6 +40271,18 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) +"iUD" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"iUS" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/u_m_p) "iUW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -40288,6 +40293,17 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"iVj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/item/tool/stamp/approved{ + pixel_y = -11; + pixel_x = -3 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) "iVy" = ( /turf/open/floor/almayer{ dir = 1; @@ -40300,15 +40316,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"iVG" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "iVP" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17; @@ -40320,13 +40327,11 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"iWa" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) +"iVQ" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "iWc" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -40356,26 +40361,12 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"iWH" = ( -/obj/structure/machinery/light/small{ +"iWD" = ( +/obj/structure/platform{ dir = 4 }, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/structure/janitorialcart, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"iWJ" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "iWL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -40389,17 +40380,16 @@ icon_state = "silver" }, /area/almayer/hallways/aft_hallway) -"iWQ" = ( -/obj/effect/landmark/start/researcher, -/obj/effect/landmark/late_join/researcher, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) "iWR" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/prison{ icon_state = "kitchen" }, /area/almayer/engineering/upper_engineering) +"iWW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "iXb" = ( /obj/structure/bed/chair/comfy/delta{ dir = 8 @@ -40408,28 +40398,12 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"iXm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/panic) "iXA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"iXB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "iXT" = ( /obj/item/trash/uscm_mre, /turf/open/floor/almayer, @@ -40486,12 +40460,6 @@ icon_state = "red" }, /area/almayer/hallways/stern_hallway) -"iYm" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "iYr" = ( /obj/structure/machinery/light{ dir = 4 @@ -40517,12 +40485,20 @@ icon_state = "plate" }, /area/almayer/living/gym) -"iZd" = ( -/obj/structure/largecrate/random/barrel/blue, +"iYR" = ( +/obj/structure/largecrate/supply/medicine/medivend{ + pixel_x = 3 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = 3; + pixel_y = 11; + density = 1 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "sterile_green_side" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/medical/lower_medical_medbay) "iZg" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -40532,6 +40508,14 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"iZh" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "iZw" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; @@ -40620,17 +40604,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"jay" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 +"jaF" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/u_a_s) "jaH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/paper_bin/uscm{ @@ -40641,13 +40624,6 @@ icon_state = "plating" }, /area/almayer/command/airoom) -"jaI" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "jaK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -40683,10 +40659,15 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) -"jaW" = ( -/obj/effect/landmark/start/reporter, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +"jbl" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "jbq" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -40752,31 +40733,26 @@ }, /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) +"jbS" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "jbX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) +"jca" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "jcf" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"jcE" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +"jcs" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "jcP" = ( /turf/open/floor/almayer{ icon_state = "plating_striped" @@ -40802,17 +40778,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"jdn" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"jdu" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "jdG" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -40826,11 +40791,6 @@ "jeb" = ( /turf/closed/wall/almayer, /area/almayer/squads/alpha_bravo_shared) -"jei" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "jeq" = ( /obj/structure/surface/rack, /obj/item/storage/box/pillbottles{ @@ -40846,27 +40806,6 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"jer" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"jev" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/device/taperecorder{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "jew" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer{ @@ -40904,15 +40843,13 @@ icon_state = "red" }, /area/almayer/living/cryo_cells) -"jeR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - icon_state = "plate" +"jfn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/shipboard/brig/perma) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "jfD" = ( /obj/structure/sign/safety/security{ pixel_y = -32 @@ -40935,13 +40872,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"jfS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "jfY" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -41047,14 +40977,6 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"jgK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) "jgU" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -41109,23 +41031,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"jhK" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"jhR" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "jhW" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ @@ -41144,6 +41049,15 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/lobby) +"jiq" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower/engine_core) "jiw" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -41152,17 +41066,6 @@ icon_state = "plate" }, /area/almayer/hallways/port_hallway) -"jiM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "jiU" = ( /obj/structure/sink{ dir = 1; @@ -41251,6 +41154,10 @@ icon_state = "cargo" }, /area/almayer/hallways/vehiclehangar) +"jkb" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "jkd" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 @@ -41276,17 +41183,6 @@ icon_state = "plate" }, /area/almayer/medical/morgue) -"jkq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "jks" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -41346,18 +41242,20 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"jkN" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "jlc" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"jln" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "jlA" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -41414,6 +41312,12 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"jmm" = ( +/obj/structure/machinery/gel_refiller, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) "jmn" = ( /obj/structure/surface/table/almayer, /obj/item/prop/magazine/dirty{ @@ -41427,15 +41331,6 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"jmz" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "jmK" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -41462,20 +41357,12 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"jne" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) -"jnh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +"jnl" = ( +/obj/structure/largecrate/supply/floodlights, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/mess) +/area/almayer/maint/hull/upper/u_m_p) "jnw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -41516,6 +41403,11 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/command/cic) +"jon" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "joG" = ( /obj/structure/machinery/washing_machine, /obj/structure/sign/poster{ @@ -41566,6 +41458,25 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) +"jpu" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_s) +"jpX" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/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/maint/upper/mess) "jqP" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "ARES Interior"; @@ -41600,10 +41511,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"jri" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "jrm" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -41614,27 +41521,6 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"jrB" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"jrI" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "jrM" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ dir = 4 @@ -41644,6 +41530,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"jrN" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) +"jsj" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_f_s) +"jsn" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "jss" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -41652,14 +41554,6 @@ icon_state = "bluefull" }, /area/almayer/living/captain_mess) -"jsu" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "jsx" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -41671,17 +41565,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"jsA" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) -"jsE" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "jsP" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -41691,6 +41574,19 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"jta" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/effect/landmark/yautja_teleport, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "jtj" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -41699,6 +41595,14 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"jtv" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) +"jtG" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "jtJ" = ( /obj/structure/machinery/door_control{ id = "laddernorthwest"; @@ -41712,9 +41616,6 @@ icon_state = "greencorner" }, /area/almayer/hallways/starboard_hallway) -"jtU" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "juD" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -41722,6 +41623,23 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/port_emb) +"juV" = ( +/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_m_s) "juX" = ( /obj/structure/platform_decoration{ dir = 1 @@ -41767,17 +41685,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) -"jvt" = ( -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "jvB" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer/no_build{ @@ -41826,35 +41733,20 @@ "jvY" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/telecomms) -"jwi" = ( -/obj/structure/machinery/door_control{ - id = "InnerShutter"; - name = "Inner Shutter"; - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/obj/item/ashtray/plastic, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 +"jwa" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 8 }, -/area/almayer/shipboard/panic) -"jwq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = -7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"jwJ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) "jwK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -41862,12 +41754,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/hull/upper/u_m_p) "jxi" = ( /obj/structure/machinery/sleep_console, /turf/open/floor/almayer{ @@ -41907,20 +41793,6 @@ /obj/structure/machinery/light, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"jyJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/ladder{ - height = 2; - id = "cicladder3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) "jyR" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_one_access_txt = "7;23;27" @@ -41929,6 +41801,24 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"jyU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"jzb" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"jzp" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "jzD" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; @@ -41963,6 +41853,12 @@ "jAi" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/hallways/vehiclehangar) +"jAl" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) "jAz" = ( /obj/structure/platform, /obj/structure/platform{ @@ -42004,6 +41900,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/morgue) +"jBI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "jBO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -42027,10 +41929,6 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) -"jCg" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) "jCn" = ( /obj/structure/surface/table/almayer, /obj/item/tool/screwdriver, @@ -42042,12 +41940,13 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"jCr" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +"jCu" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/maint/hull/lower/s_bow) +/obj/item/tool/mop, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "jCK" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft"; @@ -42058,6 +41957,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"jDf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"jDh" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "jDk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -42115,28 +42030,28 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"jEA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"jEj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/maint/hull/lower/l_m_s) +"jEm" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_y = 16 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/hull/upper/u_m_p) +"jEB" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"jEM" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_m_s) "jES" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 @@ -42169,14 +42084,6 @@ icon_state = "mono" }, /area/almayer/hallways/stern_hallway) -"jFt" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "jFx" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/bucket{ @@ -42203,16 +42110,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"jFy" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/clipboard, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) "jFE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -42220,14 +42117,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"jFI" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "jFY" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ @@ -42261,18 +42150,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/port_hallway) -"jGQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "jGR" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -42282,15 +42159,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"jHe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) "jHh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -42300,12 +42168,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"jHn" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) "jHC" = ( /turf/open/floor/almayer{ dir = 1; @@ -42337,13 +42199,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/hull/upper/u_m_p) "jIo" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -42351,16 +42206,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) -"jIC" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "jIH" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/straight_jacket, @@ -42374,17 +42219,20 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/execution) -"jIJ" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "jIT" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm/brig/chief, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) +"jIU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "jIV" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -42415,11 +42263,31 @@ icon_state = "blue" }, /area/almayer/living/port_emb) +"jJl" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "jJs" = ( /turf/open/floor/almayer{ icon_state = "green" }, /area/almayer/hallways/starboard_hallway) +"jJu" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/structure/sign/safety/med_life_support{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) "jKn" = ( /turf/open/floor/almayer{ dir = 5; @@ -42484,6 +42352,15 @@ icon_state = "green" }, /area/almayer/hallways/aft_hallway) +"jLa" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "jLj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -42508,12 +42385,19 @@ icon_state = "green" }, /area/almayer/hallways/starboard_hallway) -"jLH" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - icon_state = "plate" +"jLB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_m_p) +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "jLK" = ( /obj/structure/machinery/light{ dir = 4 @@ -42540,12 +42424,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"jMb" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"jLY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "jMm" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null @@ -42659,17 +42547,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/containment/cell) -"jNo" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "jND" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -42677,11 +42554,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"jNG" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "jNT" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/execution) @@ -42740,16 +42612,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"jOq" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"jOt" = ( -/obj/item/trash/barcardine, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "jOx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -42802,24 +42664,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"jPu" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_x = 27 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) -"jPx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "jPP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -42832,19 +42676,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) -"jPU" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"jQa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "jQt" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 8 }, /area/almayer/medical/containment/cell) +"jQK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "jRc" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/status_display{ @@ -42854,13 +42709,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"jRp" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/item/toy/deck{ - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "jRz" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -42883,6 +42731,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"jRH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) "jRK" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -42936,6 +42793,28 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) +"jSz" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"jSF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + dir = 1; + name = "\improper Command Power Substation" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) "jSU" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -42964,6 +42843,20 @@ icon_state = "green" }, /area/almayer/living/offices) +"jTb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/device/flash, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) "jTj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -43003,10 +42896,6 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"jUh" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "jUl" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -43044,6 +42933,18 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"jUK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_s) "jUM" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ dir = 8 @@ -43053,16 +42954,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) -"jUV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "jUY" = ( /turf/open/floor/almayer{ icon_state = "silver" @@ -43080,6 +42971,16 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) +"jVi" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "jVr" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; @@ -43107,6 +43008,17 @@ icon_state = "test_floor5" }, /area/almayer/command/computerlab) +"jVM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "jVP" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -43126,6 +43038,15 @@ "jWh" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/port) +"jWn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "jWr" = ( /obj/structure/machinery/light{ dir = 4 @@ -43163,15 +43084,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"jXf" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - id_tag = "or03"; - name = "Lobby" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_medbay) "jXk" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -43184,6 +43096,19 @@ icon_state = "plating" }, /area/almayer/hallways/vehiclehangar) +"jXC" = ( +/obj/effect/landmark/start/doctor, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"jXL" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "jYc" = ( /obj/item/bedsheet/blue{ layer = 3.2 @@ -43234,24 +43159,13 @@ icon_state = "mono" }, /area/almayer/hallways/vehiclehangar) -"jYm" = ( -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/surface/rack, +"jYh" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_stern) -"jYM" = ( -/obj/structure/ladder{ - height = 1; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/upper/u_a_s) "jYR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -43277,21 +43191,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_four) -"jZj" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) -"jZo" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) "jZs" = ( /obj/structure/machinery/light/containment{ dir = 4 @@ -43327,6 +43226,15 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) +"jZz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "jZC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -43339,6 +43247,18 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"jZD" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_s) +"jZS" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) "jZU" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -43351,25 +43271,10 @@ icon_state = "redfull" }, /area/almayer/medical/upper_medical) -"kac" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"kag" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 16" - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) +"kai" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "kaj" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -43485,6 +43390,23 @@ icon_state = "kitchen" }, /area/almayer/engineering/upper_engineering) +"kbz" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical/green, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "kbH" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresDown"; @@ -43538,12 +43460,6 @@ "kcp" = ( /turf/closed/wall/almayer, /area/almayer/living/auxiliary_officer_office) -"kcs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "kcA" = ( /obj/structure/machinery/light{ dir = 1 @@ -43553,12 +43469,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"kcG" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "kcH" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/synthcloset) @@ -43589,12 +43499,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"kdo" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "kdv" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -43610,22 +43514,35 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"keE" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small, +"kdX" = ( +/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/hull/upper/u_m_p) +"kel" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/revolver/m44{ + desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"keO" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/almayer/maint/hull/lower/l_f_p) +"keN" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/lower/l_m_p) "keR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -43654,13 +43571,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/port) -"kfB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "kfE" = ( /obj/structure/bed/sofa/south/grey/right, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -43688,6 +43598,17 @@ "kfU" = ( /turf/open/floor/plating, /area/almayer/powered/agent) +"kfV" = ( +/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/maint/hull/upper/u_f_p) "kgp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -43727,14 +43648,6 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"kgD" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 35 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "kgQ" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/adv{ @@ -43767,6 +43680,36 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"khh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 + }, +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"khz" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/largecrate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "khD" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -43778,15 +43721,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"khI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "khJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -43812,6 +43746,24 @@ icon_state = "green" }, /area/almayer/hallways/aft_hallway) +"kil" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) +"kin" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "kio" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -43847,14 +43799,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"kiR" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_s) "kiT" = ( /obj/structure/platform{ dir = 8 @@ -43891,6 +43835,18 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"kiY" = ( +/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/hull/upper/u_m_s) "kjk" = ( /obj/structure/machinery/cryopod/right, /obj/structure/sign/safety/cryo{ @@ -43913,6 +43869,15 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"kjE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "kjO" = ( /turf/open/floor/almayer{ dir = 1; @@ -43920,11 +43885,32 @@ }, /area/almayer/engineering/lower/engine_core) "kjY" = ( -/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_a_p) +"kkg" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"kkj" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/structure/largecrate/random/barrel/red, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -2; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "kkk" = ( /obj/structure/machinery/power/monitor{ name = "Core Power Monitoring" @@ -43937,6 +43923,13 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) +"kkm" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kks" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) "kkt" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/marine_law, @@ -43989,10 +43982,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) -"klT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "kmd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -44021,12 +44010,30 @@ icon_state = "plate" }, /area/almayer/living/offices) +"kmu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "kmE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) +"kmL" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kmZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) "kng" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -44066,6 +44073,13 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"koa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "koc" = ( /obj/structure/machinery/status_display{ pixel_y = -30 @@ -44074,13 +44088,10 @@ icon_state = "plate" }, /area/almayer/hallways/port_hallway) -"kow" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +"kog" = ( +/obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/lower/l_f_s) "koB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -44114,11 +44125,12 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/engine_core) -"kpj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +"kpl" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "kpo" = ( /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" @@ -44139,14 +44151,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"kqb" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "kqt" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -44157,6 +44161,22 @@ icon_state = "test_floor4" }, /area/almayer/living/bridgebunks) +"kqu" = ( +/obj/item/folder/red{ + desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; + name = "folder: 28"; + pixel_x = -4; + pixel_y = 5 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/crayon{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "kqv" = ( /obj/structure/machinery/light{ dir = 1 @@ -44183,32 +44203,13 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"kqB" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"kqC" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"kqI" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "kqK" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -44230,6 +44231,21 @@ icon_state = "bluecorner" }, /area/almayer/living/basketball) +"krm" = ( +/obj/item/paper/prison_station/interrogation_log{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/structure/largecrate/random/barrel/green, +/obj/item/limb/hand/l_hand{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "kro" = ( /turf/open/floor/almayer{ icon_state = "green" @@ -44254,17 +44270,13 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"krG" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +"krA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 }, -/area/almayer/maint/hull/upper/s_bow) -"krJ" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "krN" = ( /obj/structure/machinery/conveyor{ id = "req_belt" @@ -44334,20 +44346,22 @@ icon_state = "cargo" }, /area/almayer/squads/bravo) -"ksw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) "ksN" = ( /turf/open/floor/almayer/uscm/directional{ dir = 6 }, /area/almayer/living/briefing) -"ktR" = ( -/obj/item/trash/crushed_cup, -/turf/open/floor/almayer{ - icon_state = "plate" +"ktH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/maint/hull/lower/l_m_s) +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "ktX" = ( /turf/open/floor/almayer{ dir = 4; @@ -44371,6 +44385,12 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"kus" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "kuu" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -44384,6 +44404,9 @@ icon_state = "emeraldcorner" }, /area/almayer/living/briefing) +"kuI" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "kuJ" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer{ @@ -44391,14 +44414,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"kuK" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "kvf" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -44423,6 +44438,15 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) +"kvj" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "kvU" = ( /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, @@ -44447,15 +44471,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering) -"kwg" = ( -/obj/structure/bookcase/manuals/medical, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "kwo" = ( /obj/structure/surface/rack, /turf/open/floor/almayer, @@ -44479,6 +44494,13 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"kwU" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) "kxd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -44492,14 +44514,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) -"kxe" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "kxo" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -44541,9 +44555,13 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) -"kyw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_m_s) +"kyH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "kyN" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/safety/distribution_pipes{ @@ -44554,9 +44572,19 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"kyP" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_p) +"kyQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/heart/prosthetic{ + pixel_x = -4 + }, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "kyR" = ( /obj/structure/safe/co_office, /obj/item/weapon/pole/fancy_cane, @@ -44592,16 +44620,12 @@ /obj/structure/machinery/vending/walkman, /turf/open/floor/almayer, /area/almayer/living/briefing) -"kzc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, +"kzd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_a_p) "kzk" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -44620,13 +44644,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/execution) -"kzs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "kzy" = ( /obj/structure/bed/chair, /turf/open/floor/almayer{ @@ -44713,72 +44730,43 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) +"kAk" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "kAm" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer{ 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; - status = 3; - icon_state = "bulb-burned" - }, -/obj/effect/decal/cleanable/blood, -/obj/item/prop{ - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - desc = "A blood bag with a hole in it. The rats must have gotten to it first." - }, -/obj/item/prop{ - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - desc = "A blood bag with a hole in it. The rats must have gotten to it first." - }, -/obj/item/prop{ - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - desc = "A blood bag with a hole in it. The rats must have gotten to it first." - }, -/obj/item/prop{ - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - name = "circuit board"; - desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; - layer = 2.78; - pixel_y = 10; - pixel_x = 8 - }, -/obj/item/prop{ - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - name = "circuit board"; - desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; - layer = 2.79; - pixel_y = 7; - pixel_x = 8 - }, -/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, -/area/almayer/maint/hull/lower/l_a_s) "kAL" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"kAN" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"kAO" = ( +/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/hull/upper/u_a_p) "kAU" = ( /obj/structure/platform{ dir = 4 @@ -44864,12 +44852,12 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"kCu" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" +"kCo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "kCE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -44885,17 +44873,23 @@ icon_state = "dark_sterile" }, /area/almayer/medical/containment) +"kCN" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "kCS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/vehiclehangar) -"kDd" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +"kDj" = ( +/obj/structure/bed, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/medical/lower_medical_medbay) "kDk" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -44918,6 +44912,13 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"kDP" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/broken_arcade, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "kDR" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -44931,6 +44932,18 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"kDT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "kEb" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -44990,6 +45003,16 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"kEJ" = ( +/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_m_s) "kFe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/firealarm{ @@ -45000,6 +45023,12 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"kFi" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "kFs" = ( /obj/structure/machinery/light{ dir = 4 @@ -45014,6 +45043,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"kFL" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"kFM" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "kFO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -45025,22 +45067,22 @@ icon_state = "plating" }, /area/almayer/squads/req) -"kFU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "kFY" = ( /obj/structure/sign/safety/cryo{ pixel_x = 7 }, /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) -"kGi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +"kGh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "kGu" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -45086,6 +45128,17 @@ icon_state = "containment_corner_variant_2" }, /area/almayer/medical/containment/cell) +"kGZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "kHa" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/surgery) @@ -45108,6 +45161,31 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/starboard_hallway) +"kHq" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_s) +"kHv" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"kHx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "kHS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -45132,25 +45210,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"kIf" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"kIk" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"kIl" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"kIj" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer{ + icon_state = "cargo" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/engineering/lower/engine_core) "kIm" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -45160,6 +45228,17 @@ icon_state = "orange" }, /area/almayer/hallways/starboard_umbilical) +"kIr" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "kIP" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -45168,17 +45247,6 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) -"kJc" = ( -/obj/structure/ladder{ - height = 1; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/s_bow) "kJi" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -45191,18 +45259,22 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"kJn" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 17" +"kJr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/hallways/port_hallway) +"kJD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower/l_a_s) "kJH" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -45244,12 +45316,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/commandbunks) -"kJZ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "kKb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -45311,16 +45377,6 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"kLm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "kLp" = ( /obj/structure/sign/safety/stairs{ pixel_x = -17; @@ -45335,36 +45391,6 @@ icon_state = "red" }, /area/almayer/hallways/starboard_hallway) -"kLB" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) -"kLP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 8; - 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/hull/upper/u_a_s) -"kMa" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "kMp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -45377,17 +45403,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"kMr" = ( -/obj/item/trash/uscm_mre, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "kMH" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 1"; @@ -45411,37 +45426,14 @@ icon_state = "outerhull_dir" }, /area/almayer/engineering/upper_engineering/port) -"kMR" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "kMW" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/s_bow) -"kNf" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/upper/u_a_p) "kNk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -45454,9 +45446,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"kNq" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_p) "kNx" = ( /obj/structure/sign/safety/ref_bio_storage{ pixel_x = -17; @@ -45544,40 +45533,6 @@ icon_state = "dark_sterile" }, /area/almayer/command/corporateliaison) -"kOJ" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"kOR" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) -"kOW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) "kPx" = ( /obj/structure/surface/table/almayer, /obj/item/device/mass_spectrometer, @@ -45656,14 +45611,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"kQr" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/pistachios, -/obj/item/tool/lighter/random{ - pixel_x = 13 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "kQu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45675,6 +45622,17 @@ allow_construction = 0 }, /area/almayer/shipboard/brig/processing) +"kQZ" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "kRd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45690,21 +45648,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/hull/upper/u_m_s) "kRD" = ( /obj/item/reagent_container/glass/bucket/janibucket, /obj/structure/machinery/light{ @@ -45722,13 +45665,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/hull/upper/u_a_p) "kRP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/prop/magazine/dirty/torn, @@ -45738,15 +45674,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"kSn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "kSv" = ( /obj/item/reagent_container/glass/bucket/janibucket, /turf/open/floor/almayer{ @@ -45769,6 +45696,12 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) +"kSA" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "kSH" = ( /obj/structure/sign/prop1{ pixel_y = 32 @@ -45810,6 +45743,14 @@ icon_state = "plating" }, /area/almayer/squads/req) +"kTt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "kTv" = ( /obj/structure/machinery/light{ dir = 4 @@ -45847,6 +45788,15 @@ icon_state = "test_floor4" }, /area/almayer/living/pilotbunks) +"kUr" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "kUw" = ( /obj/structure/surface/rack, /obj/item/storage/bag/trash{ @@ -45865,15 +45815,6 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/port) -"kUL" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "kUQ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/machinery/constructable_frame, @@ -45911,6 +45852,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"kWc" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "kWk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -45933,14 +45882,15 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"kWI" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, +"kWA" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/p_bow) +"kWG" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "redfull" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/shipboard/panic) "kWN" = ( /obj/structure/sign/poster{ desc = "It says DRUG."; @@ -45985,6 +45935,17 @@ icon_state = "plate" }, /area/almayer/squads/bravo) +"kXe" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "kXf" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -46014,6 +45975,12 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) +"kXq" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "kXu" = ( /turf/open/floor/almayer{ dir = 8; @@ -46035,6 +46002,38 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"kXV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Railguns and Viewing Room" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) +"kYb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "Under Construction Shutters"; + name = "shutter-control"; + pixel_x = -25 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"kYj" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 35 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "kYt" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/bible{ @@ -46148,6 +46147,12 @@ icon_state = "emerald" }, /area/almayer/living/gym) +"laB" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "laM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -46169,13 +46174,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/hull/upper/u_a_s) "laQ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -46266,6 +46264,20 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) +"lcL" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"lcM" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "lcV" = ( /obj/structure/bed/chair{ dir = 4 @@ -46314,9 +46326,6 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"ldF" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "lea" = ( /obj/structure/sink{ dir = 4; @@ -46363,12 +46372,27 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"leM" = ( +"leL" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, /obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_stern) +/area/almayer/maint/hull/lower/l_m_p) +"leQ" = ( +/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/hull/upper/u_m_s) "leY" = ( /obj/structure/bed/sofa/south/white/left, /turf/open/floor/almayer{ @@ -46376,6 +46400,32 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"leZ" = ( +/obj/structure/machinery/door_control/cl/quarter/backdoor{ + pixel_x = -25; + pixel_y = 23 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"lfa" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"lfs" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "lft" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/fire, @@ -46384,9 +46434,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"lfx" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "lfH" = ( /obj/structure/machinery/light{ dir = 4 @@ -46396,12 +46443,6 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"lgk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "lgt" = ( /obj/structure/sink{ dir = 4; @@ -46451,6 +46492,17 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"lgI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lgM" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "lgX" = ( /obj/structure/sign/safety/storage{ pixel_y = 32 @@ -46460,15 +46512,6 @@ icon_state = "green" }, /area/almayer/hallways/port_hallway) -"lhj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -34 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "lht" = ( /turf/open/floor/almayer{ dir = 6; @@ -46510,6 +46553,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"lhS" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "lhX" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -46518,23 +46567,15 @@ /turf/open/floor/wood/ship, /area/almayer/living/basketball) "lia" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"lib" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/machinery/cm_vending/sorted/medical/bolted, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "sterile_green_side" }, -/area/almayer/maint/hull/lower/stern) +/area/almayer/medical/lower_medical_medbay) "lid" = ( /obj/structure/machinery/chem_master{ vial_maker = 1 @@ -46543,6 +46584,34 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"lij" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"lim" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "lin" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -46561,17 +46630,9 @@ }, /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, +/obj/structure/closet/firecloset, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/stern) "liJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -46614,29 +46675,43 @@ icon_state = "plate" }, /area/almayer/living/gym) -"ljm" = ( -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +"ljl" = ( +/obj/structure/prop/invuln/pipe_water, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/obj/structure/closet/crate, -/obj/item/clothing/suit/storage/hazardvest/black, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/upper/u_m_s) "ljs" = ( /obj/effect/landmark/start/marine/spec/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"ljv" = ( -/turf/closed/wall/almayer, +"lju" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ljD" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, /area/almayer/maint/hull/lower/l_a_p) "ljG" = ( /obj/structure/closet/crate/freezer, @@ -46681,16 +46756,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"lka" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "lkd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -46717,6 +46782,14 @@ icon_state = "red" }, /area/almayer/living/offices/flight) +"lkg" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "lkm" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ @@ -46749,6 +46822,14 @@ icon_state = "plate" }, /area/almayer/squads/charlie) +"lkN" = ( +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "lkV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -46767,6 +46848,28 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"lln" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"lls" = ( +/obj/item/trash/crushed_cup, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"llF" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "llK" = ( /obj/structure/platform_decoration{ dir = 4 @@ -46782,13 +46885,6 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"lmi" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) "lml" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -46796,13 +46892,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"lmq" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "lmw" = ( /obj/structure/closet/l3closet/general, /obj/structure/machinery/light{ @@ -46814,6 +46903,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) +"lmy" = ( +/obj/structure/sign/safety/restrictedarea, +/obj/structure/sign/safety/security{ + pixel_x = 15 + }, +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) "lmz" = ( /turf/closed/wall/almayer/white/hull, /area/space) @@ -46828,6 +46924,21 @@ "lmK" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/securestorage) +"lmW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/bulbs{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"lnb" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_a_s) "lne" = ( /obj/structure/bed/chair, /turf/open/floor/almayer{ @@ -46857,10 +46968,15 @@ icon_state = "silvercorner" }, /area/almayer/shipboard/brig/cic_hallway) -"lnD" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_s) +"lnG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "lnP" = ( /obj/structure/machinery/vending/cola, /obj/structure/window/reinforced, @@ -46961,9 +47077,6 @@ }, /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) "loK" = ( /obj/structure/closet/crate/medical, /obj/item/storage/firstaid/adv, @@ -46978,6 +47091,19 @@ "loP" = ( /turf/closed/wall/almayer, /area/almayer/engineering/laundry) +"loQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_s) "loS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -47023,15 +47149,12 @@ icon_state = "cargo" }, /area/almayer/living/commandbunks) -"lpl" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"lpj" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/shipboard/panic) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "lpt" = ( /turf/open/floor/almayer{ icon_state = "blue" @@ -47056,6 +47179,25 @@ icon_state = "greencorner" }, /area/almayer/hallways/starboard_hallway) +"lpH" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"lqd" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "lqF" = ( /turf/open/floor/almayer{ dir = 9; @@ -47083,6 +47225,10 @@ icon_state = "emerald" }, /area/almayer/hallways/hangar) +"lqL" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) "lqN" = ( /obj/item/device/assembly/mousetrap/armed, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -47096,21 +47242,18 @@ "lrq" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/armory) -"lrE" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/s_bow) +"lrD" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "lrF" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"lrH" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "lrT" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, @@ -47134,15 +47277,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/hull/upper/u_a_s) "lsn" = ( /obj/structure/surface/table/almayer, /obj/item/paper{ @@ -47154,12 +47288,6 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"lso" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "lsp" = ( /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Conference Room" @@ -47187,6 +47315,12 @@ icon_state = "red" }, /area/almayer/living/offices/flight) +"lsQ" = ( +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower/engine_core) "lsV" = ( /obj/structure/largecrate/random/barrel/red, /obj/structure/sign/safety/fire_haz{ @@ -47212,12 +47346,6 @@ /obj/effect/landmark/start/working_joe, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/airoom) -"ltm" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "lto" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/almayer{ @@ -47225,15 +47353,13 @@ }, /area/almayer/medical/containment) "ltw" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"lty" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_p) "ltA" = ( /obj/item/tool/weldingtool, /turf/open/floor/almayer, @@ -47276,12 +47402,9 @@ icon_state = "test_floor4" }, /area/almayer/hallways/starboard_hallway) -"luE" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +"luJ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "luS" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/cardboard{ @@ -47398,14 +47521,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) -"lwY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" - }, +"lxm" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/engineering/lower/engine_core) "lxo" = ( /obj/structure/sign/safety/hazard{ pixel_x = -17; @@ -47456,31 +47579,12 @@ icon_state = "green" }, /area/almayer/squads/req) -"lym" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "lyw" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"lyz" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/heart/prosthetic{ - pixel_x = -4 - }, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "lyE" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -47488,14 +47592,17 @@ icon_state = "silvercorner" }, /area/almayer/command/computerlab) -"lyP" = ( -/obj/structure/largecrate/random/case/small, +"lyL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"lyV" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/s_bow) -"lyW" = ( -/turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_m_p) "lyX" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ @@ -47554,19 +47661,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) -"lAa" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "lAl" = ( /turf/open/floor/almayer{ dir = 4; @@ -47610,18 +47704,22 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) +"lAX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "lBg" = ( /obj/structure/bedsheetbin, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"lBl" = ( -/obj/structure/sink{ - pixel_y = 24 - }, +"lBj" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) +/area/almayer/maint/hull/lower/l_m_p) "lBv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -47634,17 +47732,6 @@ 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/hull/upper/u_m_p) "lBz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47652,23 +47739,16 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/starboard_hallway) -"lBB" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) -"lCm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, +"lBF" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/clipboard, +/obj/item/tool/pen, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "green" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/squads/req) "lCp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -47703,12 +47783,14 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"lDa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29" +"lCT" = ( +/obj/structure/machinery/conveyor_switch{ + id = "lower_garbage" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "lDg" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "laddernorthwest"; @@ -47730,13 +47812,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"lDA" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "lDJ" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 @@ -47746,19 +47821,6 @@ icon_state = "orange" }, /area/almayer/hallways/starboard_hallway) -"lDL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) "lDN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -47777,15 +47839,6 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"lDT" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "lDV" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, @@ -47821,6 +47874,18 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) +"lEz" = ( +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "lEF" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -47874,16 +47939,6 @@ "lFp" = ( /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop/hangar) -"lFr" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "lFt" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, /obj/structure/sign/safety/maint{ @@ -47895,6 +47950,10 @@ icon_state = "cargo" }, /area/almayer/engineering/starboard_atmos) +"lFv" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "lFA" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pouch/tools/tank, @@ -47935,6 +47994,9 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"lFL" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_bow) "lGg" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer{ @@ -47949,25 +48011,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/starboard_hallway) -"lHk" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +"lGi" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"lGo" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/lower/l_a_p) +"lGH" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) +"lGV" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"lGW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) +"lGZ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "lHu" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "greencorner" }, /area/almayer/living/grunt_rnr) -"lHB" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) +"lHE" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "lHG" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; @@ -47982,9 +48083,18 @@ icon_state = "test_floor4" }, /area/almayer/living/grunt_rnr) -"lIj" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/mess) +"lHU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"lHV" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "lIp" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 @@ -48011,18 +48121,21 @@ icon_state = "mono" }, /area/almayer/engineering/port_atmos) -"lIQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "lIU" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/port) +"lJb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "lJu" = ( /obj/structure/barricade/metal{ dir = 1 @@ -48086,12 +48199,6 @@ icon_state = "dark_sterile" }, /area/almayer/shipboard/brig/cells) -"lJM" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "lJO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -48147,6 +48254,18 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"lLx" = ( +/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/hull/upper/u_a_s) "lLC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, @@ -48184,33 +48303,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"lMw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) "lMx" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/starboard) -"lMO" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "lMY" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -48220,12 +48318,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"lNk" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "lNl" = ( /turf/open/floor/almayer{ dir = 6; @@ -48258,6 +48350,13 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop) +"lOa" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "lOr" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -48268,6 +48367,10 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) +"lOt" = ( +/obj/effect/landmark/start/liaison, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "lOH" = ( /obj/structure/sink{ pixel_y = 32 @@ -48343,6 +48446,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"lPE" = ( +/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/hull/upper/u_a_s) "lPO" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ @@ -48350,10 +48461,10 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"lPW" = ( -/obj/structure/reagent_dispensers/fueltank, +"lPP" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_a_s) "lQa" = ( /obj/structure/machinery/light{ dir = 8 @@ -48366,18 +48477,12 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"lQf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, +"lQk" = ( +/obj/structure/largecrate/supply/supplies/water, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_p) "lQz" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/almayer{ @@ -48433,10 +48538,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"lRt" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "lRE" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -48458,6 +48559,10 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/starboard_hallway) +"lRV" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "lRX" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, @@ -48490,21 +48595,23 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"lSJ" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"lSF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/maint/hull/upper/s_bow) -"lSX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/squads/req) +"lSH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "lTt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -48524,6 +48631,10 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) +"lTL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "lUm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ name = "\improper Brig Cells"; @@ -48536,14 +48647,12 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/processing) -"lUQ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"lUr" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/u_f_p) "lVl" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer, @@ -48552,17 +48661,28 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"lVR" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, +"lVv" = ( /obj/structure/platform{ - dir = 8 + dir = 1 }, +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_a_s) +"lVK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "greencorner" + }, +/area/almayer/squads/req) "lVS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -48573,17 +48693,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"lVW" = ( -/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/maint/hull/upper/u_f_p) "lVX" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/overwatch/almayer{ @@ -48612,25 +48721,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"lWt" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"lWO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"lWY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "lXb" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -48664,10 +48754,6 @@ icon_state = "green" }, /area/almayer/living/offices) -"lYg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "lYi" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply, @@ -48682,14 +48768,9 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"lYt" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +"lYm" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) "lYL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -48707,18 +48788,16 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"lZb" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"lYS" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) +"lYZ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/s_bow) "lZs" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/radio/intercom{ @@ -48741,32 +48820,25 @@ icon_state = "plate" }, /area/almayer/command/cic) -"lZI" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"lZM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"lZD" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/maint/lower/cryo_cells) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "lZZ" = ( /obj/structure/machinery/autolathe/medilathe/full, /turf/open/floor/almayer{ icon_state = "test_floor4" }, /area/almayer/medical/hydroponics) +"maG" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "maI" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -48775,10 +48847,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"maK" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "maL" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/protein_pack, @@ -48808,6 +48876,32 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) +"maU" = ( +/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_m_p) +"mbp" = ( +/obj/structure/platform, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + 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/hull/upper/u_a_s) "mbx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -48817,15 +48911,40 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"mbR" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) "mce" = ( /turf/open/floor/almayer{ icon_state = "greencorner" }, /area/almayer/hallways/aft_hallway) +"mch" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "safe_armory"; + name = "\improper Hangar Armory Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) +"mcs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "mcL" = ( /obj/structure/machinery/vending/snack, /obj/structure/sign/safety/maint{ @@ -48849,6 +48968,42 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"mdF" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) +"mdG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"mdT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 + }, +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/living/offices/flight) "mdW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/warning_stripes{ @@ -48865,19 +49020,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"mem" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "meu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -48892,6 +49034,28 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"meC" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "meJ" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; @@ -48902,32 +49066,37 @@ icon_state = "blue" }, /area/almayer/hallways/aft_hallway) -"meT" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +"meM" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_m_p) +"meQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "meY" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/alpha) -"mfH" = ( +"mfc" = ( /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/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_m_s) "mfM" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -48947,19 +49116,6 @@ 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_m_s) -"mgb" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "mgd" = ( /obj/structure/machinery/autolathe/armylathe/full, /turf/open/floor/almayer{ @@ -49005,14 +49161,15 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie_delta_shared) -"mgX" = ( -/obj/structure/platform{ - dir = 4 +"mgZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/lower/cryo_cells) "mha" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -49097,34 +49254,21 @@ icon_state = "redfull" }, /area/almayer/command/cic) -"mji" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"mjs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "mjt" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ allow_construction = 0 }, /area/almayer/shipboard/brig/processing) -"mjy" = ( -/obj/structure/machinery/conveyor_switch{ - id = "lower_garbage" +"mjC" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/s_bow) "mjS" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -49134,6 +49278,12 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) +"mkb" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "mkc" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -49190,6 +49340,14 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"mkk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "mkl" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -49209,12 +49367,19 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/workshop/hangar) -"mkF" = ( -/obj/structure/largecrate/random/barrel/blue, +"mkq" = ( +/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 = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/upper/u_a_s) "mkG" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -49271,6 +49436,16 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/workshop) +"mkW" = ( +/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/hull/upper/u_a_s) "mlb" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -49382,21 +49557,15 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"moc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) -"moq" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ - dir = 4 +"mod" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_p) +/area/almayer/maint/hull/lower/l_f_p) "mor" = ( /obj/structure/machinery/light{ dir = 8 @@ -49407,6 +49576,17 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"mot" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "mov" = ( /obj/structure/bed/chair{ dir = 1 @@ -49422,27 +49602,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) -"moK" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_s) -"moL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -9; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "moM" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ @@ -49454,18 +49613,18 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"mph" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"moT" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/lower/l_a_p) "mpn" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/almayer, @@ -49529,6 +49688,18 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_two) +"mre" = ( +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -9; + pixel_y = 19 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"mrm" = ( +/obj/effect/landmark/start/professor, +/obj/effect/landmark/late_join/cmo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) "mru" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -49608,16 +49779,6 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"msC" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) "msP" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -49632,6 +49793,14 @@ icon_state = "plate" }, /area/almayer/living/gym) +"mtj" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "mtl" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/execution) @@ -49672,6 +49841,32 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"mtQ" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"mtR" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/crushed_cup, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/ashtray/plastic{ + pixel_x = 5; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "mtZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -49715,6 +49910,14 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"muJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "muQ" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -49735,19 +49938,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"mvg" = ( -/obj/docking_port/stationary/escape_pod/west, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"mvi" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/revolver/m44{ - desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "mvl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -49761,6 +49951,14 @@ icon_state = "bluecorner" }, /area/almayer/squads/delta) +"mvu" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "mvE" = ( /obj/item/bedsheet/brown{ pixel_y = 13 @@ -49834,11 +50032,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_medbay) -"mwP" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "mwQ" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 @@ -49866,13 +50059,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"mxV" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "myl" = ( /obj/structure/machinery/power/apc/almayer/hardened{ cell_type = /obj/item/cell/hyper; @@ -49894,6 +50080,30 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) +"myy" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"myA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "myJ" = ( /obj/structure/machinery/light{ dir = 4 @@ -49915,38 +50125,17 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"mza" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Armory" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/armory) "mzg" = ( /turf/open/floor/almayer{ icon_state = "emerald" }, /area/almayer/squads/charlie) +"mzk" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "mzq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -49979,15 +50168,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"mzI" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "mzR" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; @@ -50026,6 +50206,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"mAO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "mAV" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ @@ -50052,6 +50241,9 @@ icon_state = "dark_sterile" }, /area/almayer/living/pilotbunks) +"mBf" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_s) "mBp" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -50097,6 +50289,30 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"mBT" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) +"mBZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) "mCo" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -50104,15 +50320,6 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"mCE" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "mCL" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -50136,13 +50343,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/hull/upper/u_a_s) "mDJ" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) @@ -50218,6 +50418,40 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"mEL" = ( +/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/hull/upper/u_m_s) +"mEN" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"mFa" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "mFc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -50288,9 +50522,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"mFQ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/s_bow) "mGe" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, @@ -50301,6 +50532,17 @@ icon_state = "silver" }, /area/almayer/command/securestorage) +"mGE" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "mGT" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -50325,6 +50567,14 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"mHj" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "mHm" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_y = -32 @@ -50348,6 +50598,14 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"mHv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) "mHx" = ( /obj/structure/bed/chair{ dir = 4 @@ -50397,17 +50655,6 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"mHF" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/headband/red{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "mHO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, @@ -50415,17 +50662,6 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"mId" = ( -/obj/structure/closet, -/obj/item/clothing/suit/armor/riot/marine/vintage_riot, -/obj/item/clothing/head/helmet/riot/vintage_riot, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "mIy" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -50469,6 +50705,12 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/upper_engineering/port) +"mIQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "mIW" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -50476,6 +50718,20 @@ icon_state = "blue" }, /area/almayer/hallways/aft_hallway) +"mIX" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -16; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "mJa" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/boonie, @@ -50529,9 +50785,6 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) -"mJO" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_p) "mJP" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -50573,17 +50826,6 @@ "mKq" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/bridgebunks) -"mKs" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "mKw" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -50670,6 +50912,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"mLr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "mLu" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -50710,17 +50958,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) -"mLN" = ( -/obj/structure/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "mLR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -50784,20 +51021,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/hull/upper/u_m_s) "mNX" = ( /turf/open/floor/almayer_hull{ dir = 4; @@ -50827,14 +51050,12 @@ "mOi" = ( /turf/closed/wall/almayer/outer, /area/almayer/command/airoom) -"mOE" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"mOw" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "mOL" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; @@ -50845,22 +51066,6 @@ icon_state = "green" }, /area/almayer/hallways/aft_hallway) -"mOR" = ( -/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_m_s) -"mPc" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "mPf" = ( /turf/open/floor/almayer/uscm/directional{ dir = 6 @@ -50893,27 +51098,15 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"mPw" = ( -/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_y = 7; - pixel_x = -17 - }, -/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) +"mPB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"mPQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "mPR" = ( /obj/structure/machinery/light{ dir = 8 @@ -50923,6 +51116,14 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"mPW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "mPX" = ( /turf/open/floor/almayer{ icon_state = "orange" @@ -50955,15 +51156,9 @@ icon_state = "blue" }, /area/almayer/hallways/aft_hallway) -"mQY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +"mQQ" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) "mRl" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -51022,12 +51217,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"mRI" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_s) "mRQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -51054,22 +51243,33 @@ icon_state = "test_floor4" }, /area/almayer/hallways/starboard_hallway) -"mRU" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) "mRW" = ( /turf/open/floor/almayer/research/containment/corner1, /area/almayer/medical/containment/cell/cl) +"mSc" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Secretroom"; + indestructible = 1; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_s) "mSi" = ( /obj/structure/bed/sofa/vert/grey/top{ pixel_y = 11 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mSr" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +"mSm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "mSs" = ( /obj/structure/machinery/light{ dir = 8 @@ -51079,6 +51279,9 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"mSu" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/mess) "mSz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/crew/alt, @@ -51086,6 +51289,12 @@ icon_state = "silverfull" }, /area/almayer/command/securestorage) +"mSG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "mSK" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/window/reinforced{ @@ -51096,13 +51305,6 @@ icon_state = "test_floor5" }, /area/almayer/medical/hydroponics) -"mSM" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "mSU" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -51165,15 +51367,6 @@ icon_state = "cargo_arrow" }, /area/almayer/medical/hydroponics) -"mTL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "mTN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -51223,35 +51416,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"mUE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - 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/hull/upper/u_a_s) -"mUY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_m_s) -"mVh" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "mVr" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -51262,17 +51426,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"mVA" = ( -/obj/item/reagent_container/glass/bucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "mVE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -51295,21 +51448,18 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"mVF" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "officers_mess"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;30" +"mVY" = ( +/obj/structure/platform_decoration{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"mWh" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/upper/mess) +/area/almayer/maint/hull/upper/p_bow) "mWs" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -51380,12 +51530,6 @@ "mXj" = ( /turf/closed/wall/almayer, /area/almayer/living/commandbunks) -"mXm" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) "mYv" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; @@ -51431,24 +51575,6 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"mZc" = ( -/obj/structure/sign/poster/blacklight{ - pixel_y = 35 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/reagent_dispensers/beerkeg/alt_dark{ - anchored = 1; - chemical = null; - density = 0; - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "mZf" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -51560,6 +51686,15 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"naN" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "naR" = ( /obj/structure/machinery/iv_drip, /obj/effect/decal/warning_stripes{ @@ -51587,14 +51722,17 @@ icon_state = "test_floor4" }, /area/almayer/living/gym) -"nbv" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 3" +"naW" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 9 }, +/obj/item/storage/box/cups, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower/s_bow) "ncf" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -51621,6 +51759,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"ncw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "ncE" = ( /obj/structure/machinery/light{ dir = 8 @@ -51648,31 +51795,48 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"ncV" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/welding, +"nda" = ( +/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 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"ndl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/almayer/maint/hull/lower/l_a_p) +"ndc" = ( +/obj/structure/machinery/door_control{ + id = "InnerShutter"; + name = "Inner Shutter"; + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"ndm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ +/area/almayer/shipboard/panic) +"ndd" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/maint/hull/upper/u_a_s) "ndJ" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -51702,6 +51866,9 @@ icon_state = "test_floor4" }, /area/almayer/powered) +"nel" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) "new" = ( /obj/item/reagent_container/glass/bucket/janibucket, /obj/item/reagent_container/glass/bucket/janibucket{ @@ -51733,12 +51900,6 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"neH" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "neO" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -51763,6 +51924,13 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) +"neX" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "nff" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -51780,6 +51948,20 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/stern_hallway) +"ngc" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "panicroomback"; + name = "\improper Safe Room Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_s) "ngf" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -51919,10 +52101,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/workshop) -"nhw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "nhx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck{ @@ -51966,15 +52144,23 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"nhV" = ( -/obj/structure/machinery/light/small, +"nhJ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"nhU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/p_bow) -"nic" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stern) +/area/almayer/shipboard/panic) "nig" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -52022,15 +52208,23 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"niF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"niy" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = -30 + }, +/obj/structure/sign/poster/hunk{ + pixel_x = -25; + pixel_y = 10 + }, +/obj/item/trash/buritto, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/medical/medical_science) +/area/almayer/maint/hull/lower/l_m_s) "niL" = ( /obj/structure/machinery/light{ dir = 1 @@ -52088,9 +52282,19 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"njn" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_s) +"njr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/lights/tubes{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "njy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -52122,12 +52326,6 @@ icon_state = "emerald" }, /area/almayer/hallways/port_hallway) -"njO" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/panic) "nka" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 2; @@ -52141,13 +52339,6 @@ icon_state = "cargo_arrow" }, /area/almayer/hallways/vehiclehangar) -"nkj" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "nkn" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -52165,6 +52356,16 @@ icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) +"nkE" = ( +/obj/structure/ladder{ + height = 2; + id = "ForeStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/s_bow) "nkF" = ( /obj/structure/bed/chair/bolted{ dir = 4 @@ -52188,6 +52389,10 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"nkR" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "nkX" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ @@ -52204,12 +52409,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"nlh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "nlz" = ( /obj/structure/machinery/brig_cell/cell_3{ pixel_x = 32; @@ -52250,17 +52449,21 @@ }, /area/almayer/command/cichallway) "nmp" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 9; + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_a_p) +"nmq" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "nmx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -52293,6 +52496,12 @@ icon_state = "cargo" }, /area/almayer/squads/req) +"nmS" = ( +/obj/item/tool/pen, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "nmV" = ( /turf/open/floor/almayer{ dir = 1; @@ -52311,6 +52520,9 @@ icon_state = "plate" }, /area/almayer/command/cichallway) +"nnw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_s) "nny" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -52329,24 +52541,25 @@ 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/hull/upper/u_m_s) "nnL" = ( /obj/structure/toilet{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/corporateliaison) +"nnT" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "nnX" = ( /obj/structure/machinery/sentry_holder/almayer, /turf/open/floor/almayer{ @@ -52388,18 +52601,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"noy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"noE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "noP" = ( /obj/structure/machinery/light{ dir = 1 @@ -52417,17 +52618,6 @@ }, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) -"npn" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) "npt" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -52477,6 +52667,9 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"nqC" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_s) "nqG" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -52488,6 +52681,12 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"nqL" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "nqO" = ( /obj/structure/closet/secure_closet/fridge/fish/stock, /turf/open/floor/almayer{ @@ -52512,17 +52711,27 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"nrb" = ( -/obj/item/robot_parts/arm/l_arm, -/obj/item/robot_parts/leg/l_leg, -/obj/item/robot_parts/arm/r_arm, -/obj/item/robot_parts/leg/r_leg, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 +"nrg" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/device/binoculars, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) +"nrh" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) +/area/almayer/maint/lower/s_bow) "nri" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/working_joe{ @@ -52557,6 +52766,18 @@ icon_state = "emeraldcorner" }, /area/almayer/squads/charlie) +"nrD" = ( +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"nrG" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "nrN" = ( /obj/structure/machinery/sleep_console, /turf/open/floor/almayer{ @@ -52578,15 +52799,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"nsd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/bulbs{ - pixel_x = 3; - pixel_y = 7 +"nsh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "nsQ" = ( /obj/structure/sink{ dir = 4; @@ -52688,6 +52908,13 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) +"nuH" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "nuK" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/franks{ @@ -52709,19 +52936,22 @@ /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"nvd" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +"nvA" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/maint/hull/upper/u_m_p) -"nve" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_f_s) "nvG" = ( /obj/structure/machinery/light{ dir = 8 @@ -52740,14 +52970,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) -"nvI" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "nvM" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -52767,18 +52989,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"nvX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 8; - pixel_y = -4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "nwb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -52802,32 +53012,12 @@ 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/hull/upper/u_a_p) "nwD" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orange" }, /area/almayer/command/cic) -"nwG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) "nwL" = ( /obj/structure/bed, /obj/item/bedsheet/brown, @@ -52835,10 +53025,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/hull/upper/u_a_s) "nwU" = ( /obj/structure/machinery/light{ dir = 4 @@ -52876,28 +53062,15 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"nxe" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/toolbox, -/obj/item/stack/sheet/metal{ - desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; - icon = 'icons/obj/structures/props/semiotic_standard.dmi'; - icon_state = "coffee"; - name = "coffee semiotic"; - pixel_x = 20; - pixel_y = 12; - singular_name = "coffee semiotic" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "nxx" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/lower) +"nxJ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "nxK" = ( /obj/structure/sign/safety/high_voltage{ pixel_y = -32 @@ -52910,17 +53083,12 @@ icon_state = "blue" }, /area/almayer/hallways/aft_hallway) -"nxZ" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 10" - }, -/obj/structure/machinery/light{ - dir = 8 - }, +"nxM" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower/l_a_p) "nyj" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal2" @@ -52979,6 +53147,9 @@ icon_state = "blue" }, /area/almayer/hallways/aft_hallway) +"nzC" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_stern) "nzD" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer, @@ -53000,10 +53171,18 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"nAm" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +"nAC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-y" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) "nAY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -53054,15 +53233,6 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"nBF" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"nBJ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/s_bow) "nBK" = ( /turf/open/floor/almayer{ dir = 8; @@ -53126,12 +53296,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"nCM" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "nCR" = ( /obj/structure/sink{ dir = 4; @@ -53197,18 +53361,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"nEc" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"nEl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "nEo" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -53253,16 +53405,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"nEO" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"nEZ" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "nFm" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/surgery/scalpel, @@ -53296,6 +53438,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"nFG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) "nFI" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -53325,14 +53477,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"nFM" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 18" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "nFV" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -53375,48 +53519,35 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"nGk" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"nGM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"nGp" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/item/stack/sheet/metal, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/u_a_p) +"nGz" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"nGH" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) "nGY" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ 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/hull/upper/u_a_p) -"nHu" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"nHG" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +"nHf" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/upper/u_a_s) "nHJ" = ( /obj/structure/machinery/light{ dir = 8 @@ -53440,16 +53571,14 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"nHX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"nHN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/p_bow) "nIj" = ( /turf/open/floor/almayer{ icon_state = "green" @@ -53504,9 +53633,6 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"nIN" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_p) "nIS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -53521,6 +53647,13 @@ icon_state = "orangecorner" }, /area/almayer/engineering/lower/engine_core) +"nJm" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "nJs" = ( /obj/structure/largecrate/random/case, /turf/open/floor/almayer{ @@ -53587,9 +53720,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"nLp" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_p) "nLt" = ( /turf/open/floor/almayer{ dir = 1; @@ -53620,6 +53750,20 @@ icon_state = "plating" }, /area/almayer/engineering/upper_engineering) +"nLN" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) +"nLT" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "nLZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -53654,6 +53798,17 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) +"nMN" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"nMT" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "nMV" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -53705,16 +53860,6 @@ icon_state = "emeraldcorner" }, /area/almayer/living/briefing) -"nNI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"nNT" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "nNV" = ( /obj/structure/bed/chair{ dir = 8; @@ -53761,22 +53906,9 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) -"nOx" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "nOC" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"nOX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "nPa" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -53816,6 +53948,9 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) +"nPh" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/upper/mess) "nPs" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -53852,13 +53987,12 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"nPO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +"nPF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "nPT" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; @@ -53882,18 +54016,6 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"nQn" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) -"nQo" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "nQv" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -53903,14 +54025,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/hull/upper/u_a_s) "nQx" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, @@ -53918,9 +54032,14 @@ "nQA" = ( /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"nRE" = ( +"nRC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) @@ -53932,12 +54051,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"nRN" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "nRR" = ( /turf/open/floor/almayer{ dir = 1; @@ -53948,29 +54061,14 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"nSk" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/stack/tile/carpet{ - amount = 20 +"nSm" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"nSq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_m_s) "nSu" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -53991,39 +54089,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) +"nSI" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "nSS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /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_m_p) "nTl" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "red" }, /area/almayer/squads/alpha) -"nTo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/transmitter{ - dir = 8; - name = "Medical Telephone"; - phone_category = "Almayer"; - phone_id = "Medical Lower"; - pixel_x = 16 - }, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) "nTs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -54049,9 +54134,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"nTT" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper) "nTZ" = ( /turf/open/floor/almayer{ dir = 5; @@ -54104,16 +54186,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"nUm" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 12; - pixel_y = -5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "nUn" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -54122,6 +54194,14 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"nUs" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "nUv" = ( /obj/structure/machinery/light{ dir = 1 @@ -54130,9 +54210,9 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"nUT" = ( -/obj/structure/platform{ - dir = 8 +"nUS" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" @@ -54156,13 +54236,6 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) -"nVn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "nVq" = ( /obj/structure/sign/safety/security{ pixel_x = -17; @@ -54177,15 +54250,24 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"nVz" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_p) "nVB" = ( /turf/open/floor/almayer, /area/almayer/command/securestorage) -"nVE" = ( -/obj/structure/closet/emcloset, +"nVC" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_f_s) "nVF" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -54207,13 +54289,33 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) +"nVY" = ( +/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/hull/upper/u_a_s) +"nWt" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"nWx" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "nWN" = ( /obj/structure/surface/table/almayer, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"nXo" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, +"nXv" = ( +/obj/structure/closet, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/regular/hipster, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -54280,12 +54382,6 @@ icon_state = "silverfull" }, /area/almayer/command/securestorage) -"nYi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "nYn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -54304,6 +54400,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"nYu" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "nYv" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -54322,6 +54428,18 @@ dir = 8 }, /area/almayer/command/lifeboat) +"nZp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "nZy" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -54330,29 +54448,18 @@ /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"nZG" = ( -/obj/structure/platform{ - dir = 4 +"oac" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"nZR" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) -"nZW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = 2; - pixel_y = 3 + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/lower/p_bow) "oap" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -54360,28 +54467,10 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"oaw" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "oaK" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"oaO" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/machinery/recycler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/maint/hull/lower/l_a_p) "oaW" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ @@ -54395,6 +54484,17 @@ }, /turf/closed/wall/almayer, /area/almayer/squads/req) +"obx" = ( +/obj/structure/ladder{ + height = 1; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/p_bow) "oby" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -54420,14 +54520,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/hull/upper/u_a_s) "obQ" = ( /obj/structure/bed/chair{ dir = 8 @@ -54495,27 +54587,16 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"ocI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) +"ocS" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/s_bow) "odb" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"ode" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/s_bow) "odl" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -54550,22 +54631,6 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"odG" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - 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/hull/upper/u_a_s) "odN" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -54576,6 +54641,14 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/sea_office) +"odT" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, +/obj/item/tool/lighter/random{ + pixel_x = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "odV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -54603,17 +54676,17 @@ icon_state = "cargo" }, /area/almayer/squads/alpha_bravo_shared) +"oeq" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "oer" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/delta) -"oes" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "oex" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light, @@ -54627,20 +54700,31 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) -"oeH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "oeM" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "silver" }, /area/almayer/command/computerlab) +"oeY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"ofp" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "medical manuals bookcase"; + opacity = 0 + }, +/obj/item/book/manual/surgery, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) "ofH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -54658,6 +54742,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"ofP" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "ofU" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -54672,6 +54762,23 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"ogi" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"ogj" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"ogI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "ogK" = ( /obj/structure/bed/bedroll{ desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; @@ -54686,25 +54793,28 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"ogM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "ohj" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/charlie) -"ohu" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig Maintenance" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +"ohw" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/lower/l_m_s) "ohA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -54742,19 +54852,6 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) -"ohI" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "ohJ" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, @@ -54777,10 +54874,6 @@ icon_state = "test_floor4" }, /area/almayer/living/captain_mess) -"oif" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "oih" = ( /obj/structure/bed{ icon_state = "abed" @@ -54810,16 +54903,18 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"oiq" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) +"oin" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_f_p) "oir" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -54829,6 +54924,12 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"ois" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "oit" = ( /obj/effect/landmark/railgun_computer{ dir = 1 @@ -54856,6 +54957,14 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"oiR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "oiY" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -54872,6 +54981,21 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"ojg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "ojh" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -54944,13 +55068,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/hull/upper/u_a_p) "okD" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer6" @@ -54959,28 +55076,26 @@ icon_state = "outerhull_dir" }, /area/space) -"okQ" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 12" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"olk" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/engineering/lower/engine_core) -"old" = ( -/obj/structure/machinery/light/small, -/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 +/area/almayer/maint/hull/lower/stern) +"olv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_p) "olM" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -55017,12 +55132,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"olQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "olU" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -55030,12 +55139,6 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"olW" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/lower/s_bow) "omb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -55045,12 +55148,12 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"ome" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +"omi" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/hull/upper/p_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "omo" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, @@ -55060,20 +55163,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"omx" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_f_s) "omy" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -55084,6 +55173,10 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) +"omL" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) "omP" = ( /obj/item/tool/mop, /obj/structure/surface/rack, @@ -55107,20 +55200,13 @@ icon_state = "dark_sterile" }, /area/almayer/shipboard/brig/surgery) -"onv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +"onr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_m_p) "onN" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -55184,13 +55270,9 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"ooA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, +"opf" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/p_stern) "opC" = ( /obj/structure/machinery/door/airlock/almayer/command/reinforced{ name = "\improper Combat Information Center" @@ -55239,13 +55321,22 @@ /obj/docking_port/stationary/emergency_response/external/port4, /turf/open/space/basic, /area/space) -"oqc" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/toxin, +"opU" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, /area/almayer/maint/hull/upper/u_a_s) +"oqn" = ( +/obj/item/stool{ + pixel_x = -15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "oqt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -55284,10 +55375,6 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"oqI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "oqS" = ( /obj/structure/toilet{ dir = 1 @@ -55302,6 +55389,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"oqW" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_f_s) "oqY" = ( /obj/structure/machinery/conveyor{ id = "req_belt" @@ -55348,14 +55449,16 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"orq" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ory" = ( +/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 }, -/area/almayer/maint/hull/upper/u_m_s) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) "orH" = ( /turf/open/floor/almayer/uscm/directional{ dir = 10 @@ -55378,23 +55481,16 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"osn" = ( -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 10 - }, +"osd" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, +/obj/item/fuel_cell, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/engineering/lower/engine_core) "osx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -55456,14 +55552,16 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"osM" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 8" +"osQ" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "orange" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/upper/mess) "osT" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/prop/ice_colony/hula_girl{ @@ -55485,15 +55583,6 @@ "otu" = ( /turf/closed/wall/almayer/research/containment/wall/connect_w, /area/almayer/medical/containment/cell) -"otW" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "ouf" = ( /obj/structure/stairs{ dir = 1; @@ -55542,6 +55631,16 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) +"ouy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "ouB" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, @@ -55555,18 +55654,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"ouU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "ouW" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -55581,10 +55668,6 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"ove" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "ovi" = ( /turf/open/floor/almayer{ dir = 4; @@ -55602,6 +55685,16 @@ icon_state = "silver" }, /area/almayer/living/briefing) +"ovx" = ( +/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/hull/upper/u_a_s) "ovG" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -55626,6 +55719,13 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) +"owD" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "owH" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/poddoor/almayer{ @@ -55637,12 +55737,10 @@ icon_state = "test_floor4" }, /area/almayer/hallways/starboard_hallway) -"owU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +"owS" = ( +/obj/docking_port/stationary/escape_pod/west, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) "owW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -55672,39 +55770,46 @@ }, /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) -"oxl" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"oxo" = ( +/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/hull/upper/u_m_s) +"oxt" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"oxn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "plating_striped" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/squads/req) "oxu" = ( /obj/structure/sign/safety/galley{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"oxy" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "oxU" = ( /obj/structure/machinery/photocopier, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"oyg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "oyy" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -55724,25 +55829,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/port_atmos) -"oyO" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +"oyJ" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) "oyR" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/lower) -"oyX" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "ozq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -55752,6 +55847,22 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) +"ozt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"ozw" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "ozz" = ( /obj/structure/surface/table/almayer, /obj/item/tank/emergency_oxygen/double, @@ -55759,18 +55870,6 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"ozH" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "ozN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ id_tag = "Boat2-D2"; @@ -55781,6 +55880,15 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) +"ozP" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "ozT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -55799,6 +55907,14 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) +"oAr" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "oAB" = ( /obj/structure/platform{ dir = 8; @@ -55808,32 +55924,12 @@ dir = 10 }, /area/almayer/living/briefing) -"oAK" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "oAO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"oAT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "oBq" = ( /obj/structure/bed, /obj/structure/machinery/flasher{ @@ -55845,9 +55941,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"oBr" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_s) "oBA" = ( /obj/structure/sign/safety/conference_room{ pixel_x = -17; @@ -55862,6 +55955,29 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"oBM" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"oBQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"oBS" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "oCf" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -55889,13 +56005,19 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"oCK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +"oCV" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "oDh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "oDi" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -55948,23 +56070,14 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"oDJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/spiderling_remains{ - pixel_x = 18; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/ash{ - pixel_x = 11; - pixel_y = 25 +"oDI" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" + icon_state = "plate" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/upper/p_stern) "oDL" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -56062,6 +56175,25 @@ icon_state = "red" }, /area/almayer/living/port_emb) +"oFb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) +"oFg" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_s) "oFm" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -56070,20 +56202,21 @@ }, /area/almayer/engineering/lower/workshop) "oFn" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters/clippers, -/obj/item/handcuffs/zip, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform, +/obj/structure/largecrate/random/case/double{ + layer = 2.98 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 32 }, -/area/almayer/maint/hull/lower/l_f_p) -"oFr" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/upper/u_a_s) +"oFv" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "oFV" = ( /obj/structure/sign/poster{ pixel_x = -32; @@ -56094,25 +56227,6 @@ "oFY" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/lobby) -"oGf" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"oGi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"oGj" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "oGx" = ( /obj/structure/closet/secure_closet/surgical{ pixel_x = 30 @@ -56190,21 +56304,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie) -"oHf" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"oHg" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "oHl" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/electrical, @@ -56221,6 +56320,10 @@ icon_state = "test_floor4" }, /area/almayer/engineering/laundry) +"oHy" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "oIa" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -56308,6 +56411,18 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"oJX" = ( +/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/hull/upper/u_m_s) "oKb" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -56316,6 +56431,15 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"oKi" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) "oKv" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 @@ -56332,15 +56456,19 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"oLf" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 +"oKB" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"oLa" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/lower/p_bow) "oLi" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, @@ -56436,6 +56564,12 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"oMp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "oMs" = ( /obj/structure/machinery/computer/cameras/almayer{ dir = 1 @@ -56493,12 +56627,6 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"oNM" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "oNP" = ( /obj/structure/machinery/vending/cola{ density = 0; @@ -56519,13 +56647,16 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"oOp" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, +"oOh" = ( +/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/hull/upper/u_m_p) +/area/almayer/maint/upper/u_m_s) "oOw" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -56592,6 +56723,27 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"oPs" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"oPu" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"oPv" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"oPx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "oPy" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -56630,14 +56782,17 @@ icon_state = "red" }, /area/almayer/command/cic) -"oPF" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"oPS" = ( +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_a_s) +"oPY" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) "oQj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -56667,15 +56822,6 @@ icon_state = "cargo_arrow" }, /area/almayer/living/briefing) -"oQJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"oQL" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "oQM" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -56705,14 +56851,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"oRm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "oRJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -56784,6 +56922,15 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"oSy" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "oSC" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -56793,14 +56940,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"oSG" = ( -/obj/structure/surface/table/almayer, -/obj/item/card/id/visa, -/obj/item/tool/crew_monitor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "oSL" = ( /obj/structure/window/reinforced{ dir = 8 @@ -56824,23 +56963,6 @@ icon_state = "plate" }, /area/almayer/squads/alpha_bravo_shared) -"oSR" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - 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/hull/upper/u_a_s) "oTe" = ( /obj/item/prop/almayer/box, /obj/item/prop{ @@ -56870,6 +56992,12 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) +"oTn" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) "oTA" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light{ @@ -56879,6 +57007,17 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) +"oTN" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/device/radio, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "oTO" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -56892,19 +57031,16 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"oUt" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 +"oTR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"oUx" = ( -/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_m_s) "oUG" = ( /obj/structure/machinery/light{ dir = 8 @@ -56914,15 +57050,13 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"oUZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" +"oUM" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "oVf" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/evidence{ @@ -56940,12 +57074,12 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"oVY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"oVn" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "oWf" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -56974,10 +57108,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"oWq" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "oWx" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -57056,35 +57186,16 @@ icon_state = "red" }, /area/almayer/living/offices/flight) -"oYr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_p) -"oYs" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, +"oYP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + layer = 2.5; pixel_y = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"oZn" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_f_p) "oZp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, @@ -57136,6 +57247,9 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"oZF" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) "oZV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/roller, @@ -57176,6 +57290,10 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) +"pau" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "paI" = ( /obj/structure/sign/safety/debark_lounge{ pixel_x = 15; @@ -57185,26 +57303,23 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"paJ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "paL" = ( /turf/open/floor/almayer/uscm/directional{ dir = 1 }, /area/almayer/command/cic) -"pbo" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" +"paN" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/maint/hull/upper/s_stern) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"pbd" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "pbp" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -57232,22 +57347,6 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"pcc" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) -"pcf" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "pcj" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -57302,18 +57401,31 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"pcR" = ( +/obj/item/frame/rack{ + layer = 3.1; + pixel_y = 19 + }, +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = 5 + }, +/obj/item/tool/weldpack{ + pixel_x = -2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "pcY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"pdp" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/maint/hull/upper/p_bow) +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "pdy" = ( /obj/structure/machinery/door_control{ id = "OTStore"; @@ -57339,15 +57451,12 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"pek" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_bow) -"peM" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +"pep" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "peO" = ( /obj/structure/sign/safety/medical{ pixel_x = -17; @@ -57390,27 +57499,20 @@ allow_construction = 0 }, /area/almayer/stair_clone) -"pfD" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +"pfy" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "pfH" = ( /obj/structure/platform_decoration, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"pfL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "pfM" = ( /obj/structure/machinery/light{ dir = 4 @@ -57426,6 +57528,16 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) +"pga" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "pgw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -57455,13 +57567,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"pgJ" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "pgM" = ( /obj/structure/reagent_dispensers/water_cooler/walk_past{ pixel_x = 10; @@ -57520,15 +57625,21 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) -"phw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 - }, +"phn" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/lower/s_bow) +"phx" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + id_tag = "or03"; + name = "Lobby" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) "phN" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -57539,12 +57650,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"piJ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "piK" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -57559,12 +57664,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"pjh" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "pji" = ( /turf/closed/wall/almayer, /area/almayer/hallways/stern_hallway) @@ -57577,15 +57676,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"pjr" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "pjw" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"pjz" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_bow) "pjF" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -57627,6 +57726,18 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"pkv" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) +"pkx" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "pky" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ @@ -57649,9 +57760,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"plv" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) "plI" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, /turf/open/floor/almayer{ @@ -57689,6 +57797,14 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"pmS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) "pmV" = ( /obj/structure/prop/server_equipment/yutani_server/broken{ density = 0; @@ -57701,16 +57817,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"pnh" = ( -/obj/structure/ladder{ - height = 2; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/p_bow) "pno" = ( /obj/structure/sign/safety/escapepod{ pixel_y = 32 @@ -57727,12 +57833,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"pnC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +"pnI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ - icon_state = "sterile_green_side" + icon_state = "plate" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/upper/s_bow) "pnL" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_2" @@ -57750,21 +57860,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"pok" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "poA" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/bucket/mopbucket, @@ -57803,15 +57898,6 @@ /obj/item/device/camera, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"ppG" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) -"ppM" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "pqc" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -57853,6 +57939,10 @@ /obj/item/trash/cigbutt, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) +"pqG" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/p_bow) "pqK" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ @@ -57874,27 +57964,25 @@ icon_state = "plating" }, /area/almayer/hallways/vehiclehangar) -"pqX" = ( -/obj/structure/bed/chair{ - dir = 4 +"pqU" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"prf" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = -6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"pri" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/maint/hull/upper/u_m_s) +"pqX" = ( +/obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/living/gym) "prx" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -57919,13 +58007,22 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"prX" = ( -/obj/structure/ladder{ - height = 2; - id = "AftStarboardMaint" +"prS" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_s) +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "prY" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray, @@ -57941,6 +58038,12 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) +"psl" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "psK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -58001,6 +58104,18 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"ptr" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "ptv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform{ @@ -58028,14 +58143,6 @@ "ptK" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/starboard) -"ptQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/s_stern) "ptZ" = ( /obj/structure/platform{ dir = 4; @@ -58098,34 +58205,12 @@ }, /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_m_s) "puO" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"puT" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "pvh" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/item/tool/warning_cone{ @@ -58151,6 +58236,22 @@ icon_state = "green" }, /area/almayer/hallways/aft_hallway) +"pvv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "pvJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -58190,12 +58291,27 @@ icon_state = "redcorner" }, /area/almayer/shipboard/starboard_missiles) +"pwx" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "pwG" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"pwJ" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "pxj" = ( /obj/structure/bed, /obj/item/bedsheet/brown, @@ -58238,6 +58354,12 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) +"pxO" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "pyc" = ( /obj/structure/bed/stool, /turf/open/floor/almayer{ @@ -58335,15 +58457,6 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) -"pzc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "pzd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -58354,6 +58467,19 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"pzi" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"pzA" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "pzG" = ( /obj/docking_port/stationary/emergency_response/port1, /turf/open/floor/almayer{ @@ -58382,6 +58508,9 @@ "pAm" = ( /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) +"pAH" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_s) "pAR" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 @@ -58391,13 +58520,6 @@ icon_state = "orange" }, /area/almayer/hallways/starboard_umbilical) -"pAV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/tool/mop, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "pBn" = ( /obj/structure/sign/safety/escapepod{ pixel_x = 8; @@ -58408,9 +58530,18 @@ icon_state = "greencorner" }, /area/almayer/hallways/port_hallway) +"pBE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "pBG" = ( /turf/closed/wall/almayer, /area/almayer/command/corporateliaison) +"pCe" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) "pCq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -58440,17 +58571,6 @@ icon_state = "mono" }, /area/almayer/hallways/stern_hallway) -"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/hull/upper/u_m_s) "pDh" = ( /obj/structure/machinery/power/monitor{ name = "Core Power Monitoring" @@ -58469,6 +58589,14 @@ icon_state = "tcomms" }, /area/almayer/engineering/upper_engineering/starboard) +"pDk" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/s_bow) "pDo" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -58482,6 +58610,18 @@ icon_state = "plating" }, /area/almayer/shipboard/starboard_point_defense) +"pDq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "pDr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -58529,6 +58669,15 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) +"pDZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "pEl" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -58547,6 +58696,14 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"pEp" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "pEB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -58580,43 +58737,31 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) -"pFq" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/obj/item/device/whistle{ - pixel_y = 5 +"pFx" = ( +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" }, -/area/almayer/maint/hull/upper/u_f_s) -"pFr" = ( -/obj/structure/machinery/light/small, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/structure/closet/crate, +/obj/item/clothing/suit/storage/hazardvest/black, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) -"pGh" = ( -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -9; - pixel_y = 19 +/area/almayer/maint/hull/lower/l_f_p) +"pGD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"pGj" = ( -/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) -"pGG" = ( -/obj/effect/landmark/start/doctor, -/obj/structure/sign/safety/maint{ - pixel_y = 26 - }, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) +/area/almayer/maint/hull/lower/l_a_p) "pGK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -58653,14 +58798,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"pHD" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "pHG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -58679,40 +58816,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/hull/upper/u_a_s) -"pIo" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"pIC" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/lower/constr) "pIU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -58736,6 +58839,10 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/north1) +"pJa" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) "pJr" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -58776,6 +58883,17 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) +"pJE" = ( +/obj/item/trash/uscm_mre, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "pJJ" = ( /turf/open/floor/almayer{ dir = 1; @@ -58795,23 +58913,6 @@ dir = 4 }, /area/almayer/command/airoom) -"pKh" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"pKB" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/firealarm, -/obj/item/circuitboard, -/obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "pKZ" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -58844,6 +58945,13 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"pLB" = ( +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "pLO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -58894,13 +59002,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"pMH" = ( -/obj/item/tool/wet_sign, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"pMI" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "pMJ" = ( /obj/structure/bed/chair{ dir = 1 @@ -58950,6 +59060,11 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/execution) +"pNu" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "pNM" = ( /obj/structure/platform{ dir = 4 @@ -58972,20 +59087,18 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) +"pOa" = ( +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "pOi" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/offices) -"pOp" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "pOD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -58996,21 +59109,25 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"pOH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) "pON" = ( /turf/open/floor/almayer/uscm/directional{ dir = 8 }, /area/almayer/command/cic) +"pOR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/ladder{ + height = 2; + id = "cicladder3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) "pOY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/microwave{ @@ -59021,16 +59138,14 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"pPd" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" +"pPq" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/upper/u_m_s) "pPv" = ( /obj/structure/closet/cabinet, /obj/item/reagent_container/food/drinks/bottle/wine, @@ -59055,14 +59170,16 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"pPy" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 +"pPw" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "pPA" = ( /obj/structure/sign/poster{ desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; @@ -59079,15 +59196,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"pPG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "pPM" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ @@ -59167,10 +59275,6 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"pRs" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "pRy" = ( /turf/open/floor/almayer/research/containment/corner_var1{ dir = 4 @@ -59222,6 +59326,13 @@ }, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop) +"pSK" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "pSL" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -59231,6 +59342,13 @@ icon_state = "blue" }, /area/almayer/hallways/aft_hallway) +"pSP" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "pSQ" = ( /obj/structure/reagent_dispensers/fueltank{ anchored = 1 @@ -59264,16 +59382,24 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"pTX" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ +"pTD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; pixel_y = -32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"pTQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/lower/s_bow) "pUd" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -59342,13 +59468,12 @@ 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" +"pVg" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/maint/hull/upper/u_m_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "pVx" = ( /obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, /turf/open/floor/almayer{ @@ -59386,27 +59511,29 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"pVF" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/atm{ - pixel_y = 32 +"pVG" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" }, +/area/almayer/maint/hull/upper/u_a_s) +"pVK" = ( /turf/open/floor/almayer, -/area/almayer/command/corporateliaison) +/area/almayer/maint/hull/upper/u_f_p) "pWb" = ( /obj/effect/landmark/start/marine/tl/delta, /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"pWd" = ( -/obj/structure/surface/table/almayer, +"pWg" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/l_m_s) "pWr" = ( /obj/structure/surface/rack, /obj/item/tool/minihoe{ @@ -59434,16 +59561,17 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"pWw" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"pWA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "green" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/squads/req) "pWN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -59516,13 +59644,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"pYQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "pYS" = ( /obj/structure/pipes/binary/pump/on{ dir = 4 @@ -59585,10 +59706,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"qan" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "qaV" = ( /turf/open/floor/almayer{ dir = 10; @@ -59603,6 +59720,9 @@ icon_state = "red" }, /area/almayer/living/briefing) +"qbs" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_p) "qbx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -59668,6 +59788,12 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"qcM" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_p) "qdk" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -59718,6 +59844,9 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) +"qdy" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_s) "qdz" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -59783,6 +59912,16 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) +"qev" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "qeF" = ( /obj/structure/sign/safety/reception{ pixel_x = 8; @@ -59808,6 +59947,13 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"qeO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/headset/almayer/mt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "qeY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/beach_ball/holoball, @@ -59864,13 +60010,6 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qfQ" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade/three, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "qga" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ dir = 1 @@ -59906,16 +60045,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/aft_hallway) -"qgK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic/press{ - dir = 1; - name = "\improper Combat Correspondent Room" +"qgM" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/command/combat_correspondent) +/area/almayer/maint/lower/cryo_cells) "qgN" = ( /obj/structure/bed/chair{ dir = 4 @@ -59980,31 +60117,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) -"qhG" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -7; - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "qhU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -60020,22 +60132,6 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"qid" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"qig" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "qih" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -60055,6 +60151,16 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"qip" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "qit" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light{ @@ -60072,6 +60178,14 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) +"qiD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/s_bow) "qjz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/clipboard, @@ -60088,28 +60202,11 @@ icon_state = "silvercorner" }, /area/almayer/command/computerlab) -"qjL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "qjN" = ( /turf/open/floor/almayer{ 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/hull/upper/u_m_s) "qjV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -60121,6 +60218,13 @@ "qjZ" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/stern_point_defense) +"qkc" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "qki" = ( /obj/effect/landmark/start/marine/smartgunner/charlie, /obj/effect/landmark/late_join/charlie, @@ -60179,6 +60283,12 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/starboard_umbilical) +"qll" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) "qlm" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/warning_stripes{ @@ -60196,12 +60306,18 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qlu" = ( -/obj/structure/largecrate/random/case/double, +"qlt" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_s) "qlz" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -60234,6 +60350,28 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"qmb" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + access_modified = 1; + name = "\improper Requisition's Office"; + req_one_access = null; + req_one_access_txt = "1;26" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) "qmk" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -60248,27 +60386,6 @@ icon_state = "bluecorner" }, /area/almayer/squads/delta) -"qmq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/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/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "qmy" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -60337,19 +60454,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/starboard_hallway) -"qmM" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "qmP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm, @@ -60411,14 +60515,15 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"qnA" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 +"qny" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Under Construction Shutters"; + name = "\improper Construction Site" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/constr) "qnC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -60434,6 +60539,22 @@ icon_state = "test_floor4" }, /area/almayer/living/pilotbunks) +"qnN" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"qoj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "qom" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/chem_dispenser/soda{ @@ -60479,11 +60600,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"qoN" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) "qoR" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -60517,16 +60633,15 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/chemistry) -"qpV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ +"qqi" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "qqn" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -60584,12 +60699,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"qqS" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "qqV" = ( /obj/structure/machinery/cm_vending/clothing/military_police_warden, /turf/open/floor/wood/ship, @@ -60618,10 +60727,27 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"qsp" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +"qrS" = ( +/obj/item/clothing/head/welding{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"qsr" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "qsC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction, @@ -60664,6 +60790,17 @@ icon_state = "plate" }, /area/almayer/living/gym) +"qtO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) +"qtZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/p_stern) "quj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -60762,12 +60899,33 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"qvd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"qvl" = ( +/obj/item/stack/folding_barricade/three, +/obj/item/stack/folding_barricade/three, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/shipboard/panic) "qvC" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 }, /turf/open/floor/plating, /area/almayer/living/port_emb) +"qvG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "qvI" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 @@ -60822,6 +60980,9 @@ icon_state = "plate" }, /area/almayer/living/offices) +"qwE" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_s) "qwJ" = ( /obj/structure/machinery/door_control{ id = "ARES Operations Left"; @@ -60835,12 +60996,22 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"qwY" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" +"qwT" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/cryo_cells) +"qxb" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer{ + pixel_x = 4; + pixel_y = 4 }, -/area/almayer/maint/hull/upper/u_f_s) +/obj/item/storage/toolbox/emergency, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "qxe" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 @@ -60921,15 +61092,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"qxI" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) -"qxJ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "qxL" = ( /obj/structure/machinery/medical_pod/autodoc, /turf/open/floor/almayer{ @@ -60961,6 +61123,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"qyj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "qyo" = ( /turf/open/floor/almayer{ dir = 1; @@ -60973,6 +61141,21 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"qyu" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"qyw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "qyD" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -60995,13 +61178,6 @@ icon_state = "plating" }, /area/almayer/hallways/vehiclehangar) -"qyG" = ( -/obj/structure/sign/safety/hazard{ - desc = "A sign that warns of a hazardous environment nearby"; - name = "\improper Warning: Hazardous Environment" - }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) "qyK" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -61040,12 +61216,26 @@ icon_state = "plating" }, /area/almayer/shipboard/port_point_defense) -"qzA" = ( -/obj/structure/largecrate/random/secure, +"qzm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/upper/u_a_s) "qAs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -61075,29 +61265,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"qAG" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"qAK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "qAT" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, @@ -61120,12 +61287,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"qBl" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "qBq" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -61138,6 +61299,12 @@ icon_state = "test_floor4" }, /area/almayer/living/commandbunks) +"qBE" = ( +/obj/structure/closet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) "qBM" = ( /obj/item/storage/fancy/crayons{ layer = 3.1; @@ -61149,18 +61316,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"qBS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "qCc" = ( /obj/structure/sign/safety/security{ pixel_x = 15; @@ -61188,16 +61343,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"qCH" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Secretroom"; - indestructible = 1; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) "qCU" = ( /obj/structure/machinery/light{ dir = 4 @@ -61232,12 +61377,6 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) -"qDB" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_p) "qDN" = ( /obj/structure/machinery/light{ dir = 8 @@ -61256,15 +61395,10 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) -"qDS" = ( -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +"qEa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "qEk" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -61323,18 +61457,12 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"qEZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"qEP" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/stern) "qFb" = ( /obj/structure/sign/safety/storage{ pixel_y = -32 @@ -61349,6 +61477,33 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) +"qFm" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Medical Storage" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) +"qFp" = ( +/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/hull/upper/u_m_s) +"qFr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "qFu" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -61386,16 +61541,6 @@ icon_state = "bluefull" }, /area/almayer/squads/delta) -"qFS" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "qGc" = ( /turf/open/floor/almayer{ dir = 1; @@ -61419,18 +61564,21 @@ icon_state = "cargo" }, /area/almayer/engineering/lower/workshop/hangar) -"qGC" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "qGF" = ( /obj/structure/machinery/optable, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_two) +"qGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/living/cryo_cells) "qGU" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ @@ -61466,14 +61614,30 @@ icon_state = "test_floor4" }, /area/almayer/powered) -"qHG" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"qHK" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/area/almayer/maint/hull/upper/p_stern) +/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/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "qHM" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -61484,14 +61648,16 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) -"qIa" = ( -/obj/structure/platform{ - dir = 4 +"qHZ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/shipboard/panic) "qIx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; @@ -61503,6 +61669,18 @@ icon_state = "test_floor4" }, /area/almayer/command/corporateliaison) +"qIB" = ( +/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) "qIL" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/camera/autoname/almayer{ @@ -61552,6 +61730,18 @@ icon_state = "red" }, /area/almayer/shipboard/brig/perma) +"qJr" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "qJx" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/almayer{ @@ -61623,19 +61813,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"qKb" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/tubes{ - pixel_x = -8 - }, -/obj/item/storage/box/lights/tubes{ - pixel_x = 5 - }, -/obj/item/storage/box/lights/tubes{ - pixel_y = 10 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "qKi" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -61648,15 +61825,6 @@ icon_state = "plating" }, /area/almayer/engineering/upper_engineering) -"qKl" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "qKz" = ( /obj/structure/machinery/light/small, /turf/open/floor/almayer{ @@ -61664,15 +61832,6 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"qKK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "qKM" = ( /obj/structure/machinery/door_control{ id = "laddersouthwest"; @@ -61687,6 +61846,15 @@ icon_state = "greencorner" }, /area/almayer/hallways/port_hallway) +"qKT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "qKY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -61779,6 +61947,16 @@ icon_state = "blue" }, /area/almayer/hallways/aft_hallway) +"qLO" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/machinery/recycler, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) "qLS" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom, /turf/open/floor/almayer/no_build{ @@ -61793,13 +61971,6 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"qLY" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "qMD" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/flashbangs, @@ -61850,20 +62021,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"qNK" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_f_s) "qNR" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -61898,20 +62055,17 @@ /obj/structure/disposalpipe/junction, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"qOY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"qPC" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 }, -/area/almayer/maint/hull/upper/u_f_p) -"qPn" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "qPD" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) @@ -61973,13 +62127,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"qQG" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "qQS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -62027,9 +62174,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) -"qSw" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) "qSE" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/cholula, @@ -62058,6 +62202,17 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"qTv" = ( +/obj/structure/closet, +/obj/item/device/flashlight/pen, +/obj/item/attachable/reddot, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "qTQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -62134,6 +62289,15 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"qUT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "qUZ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -62156,12 +62320,6 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"qVE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "qVF" = ( /turf/open/floor/almayer{ icon_state = "cargo" @@ -62205,13 +62363,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"qWL" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/item/frame/rack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "qWQ" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -62226,43 +62377,32 @@ 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_y = 15; - pixel_x = 4 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_y = 13; - pixel_x = -8 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_y = 19; - pixel_x = -5; - layer = 3.01 +"qXe" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = -5; - pixel_y = 2 +/area/almayer/maint/hull/upper/u_m_s) +"qXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "qXk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"qXm" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "qXo" = ( /obj/structure/machinery/seed_extractor, /obj/structure/machinery/light{ @@ -62336,14 +62476,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"qYo" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 6" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "qYq" = ( /turf/open/floor/almayer{ dir = 5; @@ -62393,17 +62525,6 @@ icon_state = "mono" }, /area/almayer/command/lifeboat) -"qYN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/deck, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/living/offices/flight) "qYQ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -62427,20 +62548,9 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"qZy" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) +"qZx" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) "qZA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -62478,13 +62588,6 @@ icon_state = "greenfull" }, /area/almayer/living/offices) -"qZK" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "qZX" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -62511,12 +62614,14 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"raO" = ( -/obj/structure/bed/sofa/south/grey/right, +"raT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_f_p) "rbi" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/ids{ @@ -62533,13 +62638,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"rbp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "rby" = ( /obj/structure/machinery/door_control{ id = "ARES Mainframe Left"; @@ -62557,6 +62655,18 @@ icon_state = "silvercorner" }, /area/almayer/command/computerlab) +"rbE" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/reagent_container/glass/rag, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "rbF" = ( /obj/effect/landmark/late_join, /obj/effect/landmark/ert_spawns/distress_cryo, @@ -62611,6 +62721,14 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) +"rcw" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "rcx" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -62624,13 +62742,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"rcG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "rcS" = ( /obj/structure/machinery/computer/cryopod/eng{ dir = 8 @@ -62690,12 +62801,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"rdN" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "rdS" = ( /obj/structure/machinery/light{ dir = 8 @@ -62739,16 +62844,17 @@ icon_state = "plate" }, /area/almayer/living/gym) -"reH" = ( -/obj/structure/noticeboard{ - pixel_x = -10; - pixel_y = 31 +"reF" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, +/obj/item/storage/firstaid/regular, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/squads/req) +/area/almayer/maint/hull/upper/u_f_p) "reL" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/sliceable/bread{ @@ -62762,24 +62868,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"reM" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) -"reN" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) "rfa" = ( /obj/effect/landmark/start/marine/medic/alpha, /obj/effect/landmark/late_join/alpha, @@ -62793,11 +62881,6 @@ icon_state = "containment_window_h" }, /area/almayer/medical/containment/cell/cl) -"rfB" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "rfI" = ( /obj/structure/sign/safety/airlock{ pixel_y = -32 @@ -62840,20 +62923,18 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) -"rgk" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "rgy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"rgC" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "rgK" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 @@ -62874,13 +62955,22 @@ }, /area/almayer/living/auxiliary_officer_office) "rgL" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) "rgW" = ( /turf/open/floor/almayer{ icon_state = "emeraldcorner" }, /area/almayer/living/briefing) +"rhf" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "rhl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -62892,18 +62982,6 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/main_office) -"rhm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"rht" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "rhy" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -62918,12 +62996,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"rhD" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "rhO" = ( /obj/structure/machinery/vending/cola/research{ pixel_x = 4 @@ -62938,6 +63010,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"rhW" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) "rib" = ( /obj/structure/sink{ dir = 8; @@ -62948,41 +63030,26 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"rir" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +"riv" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/s_bow) -"riB" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"riC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/maint/hull/lower/l_f_p) +"riw" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/upper/u_a_p) "riE" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -62995,6 +63062,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"riI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "riJ" = ( /turf/open/floor/almayer{ dir = 5; @@ -63019,6 +63094,12 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) +"rji" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "rjn" = ( /obj/structure/machinery/light, /obj/structure/reagent_dispensers/water_cooler/stacks, @@ -63026,17 +63107,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"rjF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "rjG" = ( /obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/almayer{ @@ -63107,6 +63177,26 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/gym) +"rkF" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) +"rkS" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "rlc" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -63143,12 +63233,24 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"rlO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/s_stern) "rlQ" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "green" }, /area/almayer/living/grunt_rnr) +"rlY" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "rlZ" = ( /turf/open/floor/almayer{ icon_state = "dark_sterile" @@ -63194,6 +63296,38 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) +"rmB" = ( +/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_y = 15; + pixel_x = 4 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_y = 13; + pixel_x = -8 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_y = 19; + pixel_x = -5; + layer = 3.01 + }, +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) "rmD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -63214,6 +63348,9 @@ "rna" = ( /turf/closed/wall/almayer/white, /area/almayer/command/airoom) +"rng" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) "rnF" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -63254,12 +63391,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"roj" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "rou" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -63271,6 +63402,10 @@ icon_state = "cargo" }, /area/almayer/squads/bravo) +"row" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) "roG" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -63330,14 +63465,6 @@ icon_state = "sterile_green_side" }, /area/almayer/shipboard/brig/surgery) -"rpG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_s) "rpK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -63363,10 +63490,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"rqv" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) "rqw" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -63376,34 +63499,6 @@ icon_state = "green" }, /area/almayer/hallways/port_hallway) -"rqz" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"rqD" = ( -/obj/structure/disposalpipe/segment, -/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_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) "rqE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -63430,15 +63525,12 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/evidence_storage) -"rrh" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Under Construction Shutters"; - name = "\improper Construction Site" - }, +"rrp" = ( +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/lower/l_m_p) "rrq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63505,6 +63597,15 @@ icon_state = "plate" }, /area/almayer/hallways/port_hallway) +"rsr" = ( +/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/hull/upper/u_a_s) "rsK" = ( /obj/structure/sign/safety/hvac_old, /turf/closed/wall/almayer, @@ -63522,31 +63623,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"rsP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"rsS" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = -25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"rsV" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "rtd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -63556,12 +63632,6 @@ "rth" = ( /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"rtj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) "rtA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/pen{ @@ -63649,38 +63719,37 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"ruD" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "ruL" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop/hangar) -"rvA" = ( -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"rvI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random, +"ruS" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/upper/s_stern) +"rvA" = ( +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) "rvT" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ icon_state = "emerald" }, /area/almayer/squads/charlie) -"rwe" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 +"rwh" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/lower/l_f_p) "rwq" = ( /obj/structure/sign/safety/cryo{ pixel_x = 7; @@ -63716,26 +63785,15 @@ }, /turf/open/floor/plating, /area/almayer/living/pilotbunks) -"rwZ" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_p) -"rxe" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"rxq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"rxm" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/upper/u_m_p) "rxG" = ( /obj/structure/sign/safety/medical{ pixel_x = 8; @@ -63760,6 +63818,17 @@ /obj/structure/largecrate/supply/generator, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) +"rye" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"ryg" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "ryt" = ( /obj/structure/pipes/standard/manifold/visible, /turf/open/floor/almayer{ @@ -63786,15 +63855,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"rzk" = ( -/obj/item/tool/screwdriver, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"rzK" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "rzN" = ( /turf/open/floor/almayer{ icon_state = "dark_sterile" @@ -63814,28 +63881,9 @@ icon_state = "bluecorner" }, /area/almayer/living/briefing) -"rAo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"rAw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = -7 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) +"rAk" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/p_bow) "rAx" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -63942,12 +63990,6 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"rBD" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/u_m_p) "rBH" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_2" @@ -63963,15 +64005,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"rCh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "rCi" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ dir = 8 @@ -64076,6 +64109,20 @@ icon_state = "green" }, /area/almayer/squads/req) +"rDk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"rDp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "rDr" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -64112,37 +64159,15 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"rDB" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 13" - }, -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) -"rDH" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +"rDC" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "rDQ" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/shipboard/brig/cryo) -"rDR" = ( -/obj/structure/machinery/vending/coffee, -/obj/item/toy/bikehorn/rubberducky{ - desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; - name = "Quackers"; - pixel_x = 5; - pixel_y = 17 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "rDV" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -64163,6 +64188,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) +"rEd" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "rEf" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -64188,16 +64223,13 @@ }, /area/space) "rEs" = ( -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_s) -"rEt" = ( -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_a_s) "rEu" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -64217,19 +64249,13 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"rEK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, +"rEF" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12; pixel_y = 12 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/lower/l_m_p) "rEL" = ( /obj/structure/machinery/cm_vending/gear/intelligence_officer, /turf/open/floor/almayer{ @@ -64310,6 +64336,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"rFS" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) "rFY" = ( /turf/open/floor/almayer{ dir = 5; @@ -64330,18 +64362,6 @@ icon_state = "red" }, /area/almayer/squads/alpha) -"rGr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"rGz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "rGE" = ( /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Conference Room" @@ -64366,15 +64386,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"rGL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "rGU" = ( /obj/structure/machinery/computer/skills{ req_one_access_txt = "200" @@ -64382,6 +64393,13 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) +"rGZ" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/squads/req) "rHc" = ( /turf/open/floor/carpet, /area/almayer/command/cichallway) @@ -64411,13 +64429,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_medbay) -"rHq" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "rHw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -64429,17 +64440,17 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"rHB" = ( -/obj/item/ammo_box/magazine/misc/mre/empty{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 11; - pixel_y = -3 +"rHA" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/maint/hull/lower/l_m_p) "rHN" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/plating/plating_catwalk, @@ -64472,27 +64483,26 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_lobby) -"rIw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "rID" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "orange" }, /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 +"rIG" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_f_s) "rIH" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -64510,18 +64520,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"rIV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "rIW" = ( /obj/structure/machinery/cm_vending/gear/synth, /obj/effect/decal/cleanable/cobweb2, @@ -64530,11 +64528,11 @@ }, /area/almayer/living/synthcloset) "rJf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "rJh" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -64589,6 +64587,12 @@ /obj/structure/machinery/cm_vending/own_points/experimental_tools, /turf/open/floor/almayer, /area/almayer/living/synthcloset) +"rJF" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "rJK" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -64626,14 +64630,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"rJY" = ( -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "rKd" = ( /turf/open/floor/almayer/uscm/directional{ dir = 5 @@ -64685,11 +64681,25 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"rLi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "rLk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) +"rLl" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "rLp" = ( /obj/structure/machinery/chem_dispenser/soda{ pixel_y = 20 @@ -64702,30 +64712,6 @@ icon_state = "containment_window_h" }, /area/almayer/medical/containment/cell/cl) -"rLH" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/device/binoculars, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) -"rLK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) "rLP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -64738,19 +64724,35 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"rLQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "rLU" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 8 }, /area/almayer/medical/containment/cell/cl) -"rMO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"rMk" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 30 }, +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/lower/s_bow) +/area/almayer/maint/hull/lower/l_m_s) +"rMG" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "rMT" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -64856,6 +64858,15 @@ icon_state = "plate" }, /area/almayer/command/cic) +"rOD" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "rOI" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -64870,14 +64881,9 @@ icon_state = "plate" }, /area/almayer/living/gym) -"rPq" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) +"rOR" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) "rPt" = ( /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) @@ -64917,14 +64923,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"rQs" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "rQt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -64932,20 +64930,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"rQw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) "rQy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/hydroponics) @@ -64980,12 +64964,18 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"rRb" = ( -/obj/effect/decal/cleanable/dirt, +"rRg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Starboard Railguns and Viewing Room" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/u_f_s) "rRq" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south2) @@ -65010,6 +65000,25 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"rRP" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = -9; + pixel_y = 16 + }, +/obj/item/clothing/suit/storage/hazardvest/blue{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "rRU" = ( /obj/structure/machinery/light{ dir = 8 @@ -65048,18 +65057,6 @@ icon_state = "orangefull" }, /area/almayer/squads/alpha_bravo_shared) -"rSx" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/rods/plasteel{ - amount = 36 - }, -/obj/item/stack/catwalk{ - amount = 60; - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "rSG" = ( /obj/structure/toilet{ pixel_y = 16 @@ -65074,23 +65071,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"rSR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/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, -/turf/open/floor/almayer{ - icon_state = "plate" +"rTj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/maint/upper/u_m_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "rTk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -65118,35 +65104,12 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"rUi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "rUk" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"rUq" = ( -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"rUs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) "rUy" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -65155,15 +65118,6 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"rVc" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "rVm" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -65180,14 +65134,6 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"rWb" = ( -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "rWn" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -65207,9 +65153,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"rWz" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) "rWF" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -65239,6 +65182,15 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) +"rXg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "rXj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -65256,6 +65208,21 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) +"rXs" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "rXv" = ( /obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/disposalpipe/segment{ @@ -65265,28 +65232,18 @@ icon_state = "test_floor4" }, /area/almayer/living/gym) -"rXF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) -"rXH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) -"rXQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"rXM" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 3 }, +/obj/item/folder/yellow, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/upper/u_f_s) "rXS" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -65299,14 +65256,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/delta) -"rXU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_f_s) "rYh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -65355,6 +65304,28 @@ icon_state = "plate" }, /area/almayer/living/offices/flight) +"rYK" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"rYM" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"rYT" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "rZz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -65382,11 +65353,12 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) -"sab" = ( -/obj/effect/landmark/start/doctor, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) +"saa" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_a_p) "saL" = ( /obj/structure/machinery/door/airlock/almayer/generic/corporate{ name = "Corporate Liaison's Closet" @@ -65395,6 +65367,15 @@ icon_state = "test_floor4" }, /area/almayer/command/corporateliaison) +"sbb" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "sbq" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; @@ -65404,23 +65385,33 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/notunnel) -"sbt" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "safe_armory"; - name = "\improper Hangar Armory Shutters" - }, +"sbA" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "orange" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/lower/l_m_s) "sbJ" = ( /turf/closed/wall/almayer/white/hull, /area/almayer/powered/agent) +"sbM" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_y = 7; + pixel_x = -17 + }, +/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) "sbP" = ( /obj/effect/landmark/start/police, /obj/effect/decal/warning_stripes{ @@ -65429,6 +65420,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) +"sbU" = ( +/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/hull/upper/u_m_p) +"sce" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "sco" = ( /obj/structure/sign/prop1{ layer = 3.1 @@ -65508,15 +65523,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"scX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "sdf" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -65583,6 +65589,24 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"sdP" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"sen" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"sep" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "sfT" = ( /turf/open/floor/almayer, /area/almayer/hallways/upper/port) @@ -65718,12 +65742,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"she" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "shh" = ( /obj/structure/machinery/autolathe, /turf/open/floor/almayer, @@ -65763,6 +65781,14 @@ "sht" = ( /turf/open/floor/almayer, /area/almayer/living/pilotbunks) +"shJ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "shL" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/electrical, @@ -65774,26 +65800,12 @@ icon_state = "cargo" }, /area/almayer/engineering/lower/engine_core) -"sir" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "panicroomback"; - name = "\improper Safe Room Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_s) -"sit" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"sic" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/s_bow) "siz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/hangar{ @@ -65825,14 +65837,21 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"siT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"siP" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_s) "siW" = ( /obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ @@ -65878,16 +65897,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/hull/upper/u_m_p) "sjz" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -65897,6 +65906,19 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) +"sjC" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"sjZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "skj" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -65944,6 +65966,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/workshop) +"skO" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "skR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -65981,12 +66010,37 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) +"slu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"slx" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "slF" = ( /turf/open/floor/almayer{ dir = 9; icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"slG" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "smi" = ( /turf/open/floor/almayer{ icon_state = "green" @@ -65998,58 +66052,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/port_hallway) -"smw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"smA" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -16; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"smH" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_s) -"smU" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) "smW" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -66119,10 +66121,6 @@ icon_state = "plate" }, /area/almayer/squads/req) -"snx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "snE" = ( /obj/structure/machinery/cryopod/right, /obj/effect/decal/warning_stripes{ @@ -66158,25 +66156,6 @@ icon_state = "plate" }, /area/almayer/command/cic) -"snM" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"snN" = ( -/obj/structure/curtain/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "snR" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -66235,6 +66214,9 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) +"soC" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_bow) "soK" = ( /obj/item/storage/firstaid/fire/empty, /obj/item/storage/firstaid/o2/empty, @@ -66250,34 +66232,16 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"soT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "soX" = ( /obj/structure/window/reinforced/toughened, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/command/cic) -"spd" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +"spn" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "spF" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -66312,27 +66276,6 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"spT" = ( -/obj/structure/closet/crate{ - desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; - name = "special operations crate" - }, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "sqa" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -66368,16 +66311,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_m_s) "sqW" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/tomatoseed, @@ -66386,16 +66319,12 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"srl" = ( -/obj/structure/largecrate/random/barrel/red, +"sro" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) -"srO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) +/area/almayer/maint/hull/lower/l_m_s) "srT" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 @@ -66421,28 +66350,14 @@ icon_state = "test_floor4" }, /area/almayer/hallways/repair_bay) -"ssk" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 +"ssx" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/upper/p_bow) "ssD" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -66465,6 +66380,25 @@ icon_state = "greencorner" }, /area/almayer/hallways/port_hallway) +"ssF" = ( +/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/hull/upper/u_m_s) +"ssH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "ssU" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/almayer{ @@ -66515,12 +66449,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/hull/upper/u_a_s) "stO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm/brig, @@ -66532,12 +66460,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/perma) -"stP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "stY" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -66552,6 +66474,13 @@ icon_state = "test_floor4" }, /area/almayer/hallways/starboard_hallway) +"sub" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) "suc" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -66614,30 +66543,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"svF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/effect/landmark/yautja_teleport, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - 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 - }, -/obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "swn" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -66660,12 +66565,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"swG" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "swH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/radio/intercom{ @@ -66716,15 +66615,6 @@ icon_state = "plate" }, /area/almayer/hallways/starboard_hallway) -"sxD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Officer's Bunk" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/bridgebunks) "sxE" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -66738,10 +66628,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"sxS" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "sxW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -66783,6 +66669,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"szs" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "szE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -66820,6 +66712,14 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) +"szS" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/p_bow) "szU" = ( /obj/structure/toilet{ dir = 8 @@ -66849,16 +66749,18 @@ icon_state = "orange" }, /area/almayer/engineering/ce_room) -"sAS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "sBg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) +"sBD" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "sBL" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/light, @@ -66866,14 +66768,30 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"sBY" = ( -/obj/item/tool/wet_sign, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +"sBP" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"sCi" = ( +/obj/structure/machinery/pipedispenser/orderable, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_a_s) +"sCs" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "sCA" = ( /obj/structure/bed/chair/comfy/delta{ dir = 4 @@ -66911,12 +66829,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"sCT" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_f_s) "sCV" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -66930,11 +66842,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"sCW" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "sDu" = ( /obj/item/clothing/under/marine/dress, /turf/open/floor/almayer{ @@ -66996,15 +66903,6 @@ icon_state = "cargo" }, /area/almayer/squads/bravo) -"sEg" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "sEi" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -67058,13 +66956,19 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"sEu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"sEC" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"sEE" = ( +/obj/structure/prop/invuln/joey, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/lower/l_m_s) "sEK" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -67092,15 +66996,6 @@ icon_state = "plate" }, /area/almayer/command/cic) -"sER" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "sEZ" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 26 @@ -67138,15 +67033,38 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/main_office) +"sFO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "sGh" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/lifeboat) -"sGw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_s) -"sGK" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +"sGm" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"sGD" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/storage/firstaid/rad, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "sGL" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -67163,12 +67081,6 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/port) -"sGQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) "sGU" = ( /obj/structure/mirror, /turf/closed/wall/almayer, @@ -67179,10 +67091,6 @@ icon_state = "silverfull" }, /area/almayer/command/airoom) -"sHe" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "sHm" = ( /obj/structure/disposalpipe/up/almayer{ id = "almayerlink_OT_req" @@ -67248,10 +67156,11 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"sIu" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +"sIw" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "sIA" = ( /obj/structure/sign/poster{ desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; @@ -67276,16 +67185,15 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"sJa" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = -26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "sJm" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) +"sJo" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "sJC" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -67355,13 +67263,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"sLk" = ( -/obj/structure/ladder{ - height = 2; - id = "cicladder4" - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) "sLo" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -67372,15 +67273,15 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"sLx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"sLs" = ( +/obj/structure/largecrate/supply, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/upper/s_bow) "sLA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67394,6 +67295,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/starboard_hallway) +"sLJ" = ( +/obj/docking_port/stationary/escape_pod/cl, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) +"sMe" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "sMu" = ( /obj/item/trash/uscm_mre, /obj/structure/bed/chair/comfy/charlie{ @@ -67403,6 +67317,15 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) +"sMC" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "sMM" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -67429,6 +67352,13 @@ dir = 1 }, /area/almayer/medical/containment/cell) +"sNC" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"sNF" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_p) "sNI" = ( /obj/structure/bed/chair/comfy/delta, /turf/open/floor/almayer{ @@ -67445,12 +67375,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"sNP" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "sNR" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell/cl) @@ -67464,22 +67388,9 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"sOr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_s) +"sOq" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_bow) "sOt" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/status_display{ @@ -67523,22 +67434,17 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"sOD" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"sOL" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"sOH" = ( +/obj/structure/ladder{ + height = 1; + id = "ForeStarboardMaint" }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/maint/upper/mess) +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/s_bow) "sOZ" = ( /obj/structure/sign/safety/ammunition{ pixel_y = 32 @@ -67588,20 +67494,14 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"sRM" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"sRk" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 2; + pixel_y = 3 }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) -"sRP" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "sSa" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ dir = 2; @@ -67659,6 +67559,12 @@ icon_state = "plate" }, /area/almayer/command/cic) +"sSP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "sSY" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 @@ -67693,6 +67599,9 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"sTT" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_s) "sTV" = ( /obj/structure/machinery/power/apc/almayer/hardened{ cell_type = /obj/item/cell/hyper; @@ -67710,12 +67619,6 @@ icon_state = "silverfull" }, /area/almayer/shipboard/brig/cic_hallway) -"sUi" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_a_p) "sUj" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -67726,6 +67629,15 @@ icon_state = "bluefull" }, /area/almayer/squads/delta) +"sUq" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "sUs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67752,6 +67664,18 @@ icon_state = "orangecorner" }, /area/almayer/hallways/stern_hallway) +"sUI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "sUO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -67784,6 +67708,18 @@ icon_state = "green" }, /area/almayer/hallways/port_hallway) +"sVv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "sVT" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, @@ -67804,23 +67740,22 @@ "sVV" = ( /turf/open/floor/almayer, /area/almayer/hallways/upper/starboard) -"sWp" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +"sWb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) -"sWw" = ( +/area/almayer/maint/upper/u_m_s) +"sWy" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "sWC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -67860,12 +67795,20 @@ icon_state = "dark_sterile" }, /area/almayer/medical/containment) -"sXq" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +"sXg" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/upper/u_a_s) +"sXh" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) "sXt" = ( /obj/structure/machinery/cm_vending/clothing/tl/alpha{ density = 0; @@ -67881,6 +67824,22 @@ /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) +"sXy" = ( +/obj/item/device/camera{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/camera_film, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) "sXB" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -67913,6 +67872,17 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) +"sYe" = ( +/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/hull/upper/u_m_s) "sYh" = ( /turf/open/floor/almayer{ dir = 1; @@ -67994,13 +67964,6 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"sZc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "sZq" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; @@ -68061,6 +68024,12 @@ icon_state = "blue" }, /area/almayer/living/port_emb) +"sZQ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "tab" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/flashbangs{ @@ -68126,9 +68095,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/perma) -"taw" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_s) "taA" = ( /obj/structure/machinery/light{ dir = 4 @@ -68166,6 +68132,11 @@ icon_state = "test_floor4" }, /area/almayer/medical/containment/cell) +"taM" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) "taV" = ( /obj/effect/projector{ name = "Almayer_Down1"; @@ -68177,26 +68148,51 @@ icon_state = "plate" }, /area/almayer/hallways/upper/starboard) -"tcd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 3 +"tbd" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tcm" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) +"tbz" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) -"tcO" = ( -/turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_a_p) +"tcn" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tcP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"tcY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/constr) "tcZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -68273,16 +68269,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) -"tdH" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/item/bedsheet/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "tdI" = ( /turf/open/floor/almayer{ icon_state = "sterile_green_corner" @@ -68303,6 +68289,13 @@ icon_state = "test_floor4" }, /area/almayer/hallways/port_umbilical) +"tdN" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "tdT" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 @@ -68325,6 +68318,14 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) +"ter" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "teu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/shotgun/pump{ @@ -68332,10 +68333,6 @@ }, /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_m_s) "tez" = ( /obj/effect/landmark/ert_spawns/distress_cryo, /obj/effect/landmark/late_join, @@ -68350,16 +68347,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"teH" = ( -/obj/structure/sign/safety/maint{ - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +"teI" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_p) "teY" = ( /obj/structure/machinery/light{ dir = 1 @@ -68381,6 +68371,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) +"tfj" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/plasticflaps, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) "tfl" = ( /obj/structure/machinery/light{ dir = 1 @@ -68413,10 +68413,6 @@ dir = 1 }, /area/almayer/medical/containment/cell) -"tfQ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "tge" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -68428,13 +68424,16 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"tgm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"tgh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "tgK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -68477,6 +68476,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"tht" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "thv" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -68499,6 +68504,12 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) +"thK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "thL" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) @@ -68527,12 +68538,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"tih" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "tii" = ( /obj/structure/machinery/firealarm{ pixel_x = 6; @@ -68621,28 +68626,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"tiX" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"tiY" = ( -/obj/structure/closet, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/newspaper, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "tjj" = ( /turf/open/floor/almayer{ dir = 5; @@ -68667,30 +68650,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/hull/upper/u_m_s) -"tjH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/headset/almayer/mt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"tjO" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/maint/hull/lower/l_m_s) "tki" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -68734,6 +68693,16 @@ icon_state = "redfull" }, /area/almayer/hallways/upper/starboard) +"tkX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tla" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/s_bow) "tld" = ( /obj/structure/machinery/prop/almayer/computer{ dir = 8; @@ -68789,6 +68758,13 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"tlX" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "tmg" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/hypospray, @@ -68800,10 +68776,21 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"tml" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"tms" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "officers_mess"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;30" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) "tmB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -68843,32 +68830,12 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"tmQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"tmX" = ( -/obj/effect/landmark/start/professor, -/obj/effect/landmark/late_join/cmo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) "tnb" = ( /obj/structure/bed/chair/comfy/black, /turf/open/floor/almayer{ icon_state = "redfull" }, /area/almayer/shipboard/port_missiles) -"tne" = ( -/obj/structure/machinery/door_control/cl/quarter/backdoor{ - pixel_x = -25; - pixel_y = 23 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "tni" = ( /turf/open/floor/almayer{ dir = 1; @@ -68885,6 +68852,12 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/aft_hallway) +"tnD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "tnY" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -68896,9 +68869,10 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) -"tob" = ( +"toh" = ( +/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_a_p) "tos" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -68910,12 +68884,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/engine_core) -"tot" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "tou" = ( /obj/structure/bed/chair{ dir = 4 @@ -68931,17 +68899,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"toD" = ( -/obj/structure/largecrate/supply/generator, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - layer = 2.9; - pixel_x = -10; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "toO" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/engineering_construction, @@ -68978,6 +68935,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"tpk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "tpn" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/evidence_storage) @@ -68991,6 +68954,19 @@ icon_state = "silver" }, /area/almayer/living/bridgebunks) +"tpQ" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool, +/obj/item/tool/screwdriver{ + icon_state = "screwdriver7" + }, +/obj/item/tool/crowbar/red, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "tqg" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -69021,6 +68997,27 @@ icon_state = "silverfull" }, /area/almayer/hallways/repair_bay) +"tqs" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tqt" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) "tqE" = ( /obj/structure/machinery/light{ dir = 8 @@ -69031,6 +69028,9 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"tqG" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "tqO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -69043,34 +69043,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"tqV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"tra" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = null; - req_one_access_txt = "19;34;30" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) "trb" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -69147,9 +69119,6 @@ /obj/item/clothing/suit/chef/classic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"tsr" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/upper/mess) "tst" = ( /obj/structure/machinery/cryopod/right, /obj/effect/decal/warning_stripes{ @@ -69190,10 +69159,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/upper_medical) -"tsE" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +"tsI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "tsM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -69226,24 +69197,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/hull/upper/u_a_s) -"ttB" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"ttD" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "ttE" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -69338,19 +69291,6 @@ "tuA" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/port_missiles) -"tuJ" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/tool/shovel/spade{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "tuN" = ( /turf/open/floor/almayer{ icon_state = "orange" @@ -69363,19 +69303,12 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) -"tvr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, +"tvm" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"tvt" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/upper/u_m_s) "tvw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -69384,13 +69317,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"tvA" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "tvM" = ( /obj/structure/bed/chair{ dir = 1 @@ -69422,21 +69348,16 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"tvS" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) -"twp" = ( -/obj/structure/ladder{ - height = 1; - id = "AftStarboardMaint" +"twi" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "twq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/hand_labeler{ @@ -69481,13 +69402,10 @@ icon_state = "cargo" }, /area/almayer/command/cic) -"twQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, +"twO" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_a_s) "twT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -69532,24 +69450,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/port_hallway) -"txp" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"txy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"txH" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "txO" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 @@ -69578,6 +69478,9 @@ dir = 4 }, /area/almayer/medical/containment/cell) +"tyH" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "tyK" = ( /obj/effect/spawner/random/toolbox, /obj/structure/machinery/light{ @@ -69588,6 +69491,13 @@ icon_state = "cargo_arrow" }, /area/almayer/shipboard/starboard_missiles) +"tyY" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "tzd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -69600,16 +69510,25 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/starboard_hallway) -"tzx" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"tzw" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"tzC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, /turf/open/floor/almayer{ - icon_state = "sterile_green_side" + icon_state = "plate" }, -/area/almayer/medical/lockerroom) +/area/almayer/maint/hull/lower/l_m_p) "tzL" = ( /obj/structure/sign/safety/waterhazard{ pixel_x = 8; @@ -69626,6 +69545,10 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"tzZ" = ( +/obj/effect/landmark/start/reporter, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "tAq" = ( /obj/structure/surface/table/reinforced/black, /obj/item/clothing/mask/breath{ @@ -69701,42 +69624,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/starboard_hallway) -"tBU" = ( -/obj/structure/platform, -/obj/structure/largecrate/random/case/double{ - layer = 2.98 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"tBY" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/mess) -"tCd" = ( -/obj/item/folder/red{ - desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; - name = "folder: 28"; - pixel_x = -4; - pixel_y = 5 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/crayon{ - pixel_x = 9; - pixel_y = -2 - }, +"tCi" = ( /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/upper/u_f_s) "tCx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/sign/safety/maint{ @@ -69755,15 +69647,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/port) -"tCC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/maint/hull/upper/u_a_s) "tCN" = ( /turf/open/floor/almayer{ dir = 8; @@ -69778,6 +69661,17 @@ icon_state = "plate" }, /area/almayer/command/cic) +"tDq" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"tDw" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/obj/structure/largecrate/supply/ammo/pistol/half{ + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "tDZ" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -69811,15 +69705,27 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"tEu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +"tEk" = ( +/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/hull/lower/l_m_s) +/area/almayer/maint/upper/u_m_p) +"tEo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "tEB" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -69933,13 +69839,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"tGH" = ( -/obj/structure/sign/safety/restrictedarea, -/obj/structure/sign/safety/security{ - pixel_x = 15 - }, -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) "tGO" = ( /obj/effect/projector{ name = "Almayer_Up3"; @@ -69948,18 +69847,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/port_hallway) -"tGT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/photocopier{ - anchored = 0 - }, -/obj/structure/sign/poster/art{ - pixel_y = 32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) "tHh" = ( /obj/structure/sign/safety/ladder{ pixel_x = 8; @@ -69969,14 +69856,6 @@ icon_state = "blue" }, /area/almayer/hallways/aft_hallway) -"tHk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "tHr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/status_display{ @@ -70003,6 +69882,27 @@ icon_state = "orangecorner" }, /area/almayer/living/briefing) +"tHw" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) +"tHA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "tHQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -70045,12 +69945,12 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) -"tIF" = ( -/obj/structure/largecrate/random/barrel/green, +"tIE" = ( +/obj/structure/girder/displaced, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_a_p) "tIK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -70063,13 +69963,15 @@ /turf/open/floor/wood/ship, /area/almayer/living/basketball) "tIN" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 16; + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "tIQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -70085,17 +69987,10 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"tIX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) +"tJa" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "tJi" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/paper_bin/uscm, @@ -70104,12 +69999,6 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"tJq" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "tJz" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -70177,6 +70066,16 @@ icon_state = "cargo" }, /area/almayer/living/bridgebunks) +"tKu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) "tLa" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -70228,6 +70127,22 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"tLA" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/squads/req) +"tLD" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/item/bedsheet/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "tMc" = ( /obj/structure/machinery/chem_master/industry_mixer, /turf/open/floor/almayer{ @@ -70256,22 +70171,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/chief_mp_office) -"tMT" = ( -/obj/item/tool/weldingtool, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) -"tMU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "tMW" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -70281,19 +70180,15 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"tNw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) -"tNB" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - icon_state = "plate" +"tNf" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/s_bow) +"tNy" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "tNP" = ( /obj/structure/sign/safety/debark_lounge{ pixel_x = 15; @@ -70346,39 +70241,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"tPc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"tPj" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - access_modified = 1; - name = "\improper Requisition's Office"; - req_one_access = null; - req_one_access_txt = "1;26" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) "tPm" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -70438,22 +70300,44 @@ icon_state = "test_floor4" }, /area/almayer/hallways/port_hallway) -"tQA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - dir = 1 +"tQw" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/lower/l_a_p) "tQL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"tQM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = -30 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/command/corporateliaison) +"tQN" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/p_bow) "tQV" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/south1) +"tRd" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "tRs" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, @@ -70473,15 +70357,6 @@ icon_state = "bluecorner" }, /area/almayer/living/basketball) -"tSm" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -16 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "tSp" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -70532,9 +70407,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"tTC" = ( -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "tTD" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/uscm_mre, @@ -70548,13 +70420,6 @@ icon_state = "kitchen" }, /area/almayer/living/captain_mess) -"tTG" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "tUh" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -70607,12 +70472,13 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) -"tVn" = ( -/obj/structure/platform{ - dir = 1 +"tVl" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_f_p) "tVq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -70622,62 +70488,38 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha) -"tVs" = ( -/obj/structure/closet, +"tVJ" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 1; + pixel_y = -1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) -"tVx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"tWd" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/lower/l_f_p) "tWi" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"tWl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Disposals" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_a_p) -"tWp" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"tWF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" +"tWL" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_y = 30 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/mess) -"tWM" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "tWY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -70734,6 +70576,20 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) +"tXA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "tXM" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -70777,6 +70633,22 @@ icon_state = "plate" }, /area/almayer/living/port_emb) +"tXX" = ( +/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/hull/upper/u_m_p) +"tYh" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "tYi" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -70788,15 +70660,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"tYr" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "tYw" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft"; @@ -70818,12 +70681,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"tYV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "tYX" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" @@ -70852,12 +70709,16 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/port) -"tZM" = ( -/obj/structure/sink{ - pixel_y = 24 +"tZO" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) "tZP" = ( /obj/structure/surface/rack, /obj/item/clothing/glasses/meson, @@ -70891,12 +70752,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"uag" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/mess) "uah" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -70907,6 +70762,13 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"uai" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "hypersleep curtain" + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "ual" = ( /obj/structure/sink{ pixel_y = 24 @@ -70930,12 +70792,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"uaA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "uaI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/processor{ @@ -70971,6 +70827,19 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"ubB" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig Maintenance" + }, +/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/p_bow) "ubI" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random{ @@ -70994,14 +70863,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"ucy" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_p) "ucz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/overwatch/almayer{ @@ -71024,6 +70885,12 @@ icon_state = "plate" }, /area/almayer/command/cic) +"ucU" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "udi" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -71066,6 +70933,13 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"udH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "udK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -71121,12 +70995,6 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"uew" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "ueG" = ( /obj/item/bedsheet/orange, /obj/structure/bed{ @@ -71140,6 +71008,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) +"ueH" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "ueJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -71191,12 +71065,15 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"ugj" = ( +"ugt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/s_bow) "ugu" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer, @@ -71217,21 +71094,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"ugZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) -"uhh" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "uhl" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -71242,6 +71104,14 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) +"uhn" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "uhE" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, /turf/open/floor/plating/plating_catwalk, @@ -71260,6 +71130,13 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) +"uhS" = ( +/obj/structure/sign/safety/hazard{ + desc = "A sign that warns of a hazardous environment nearby"; + name = "\improper Warning: Hazardous Environment" + }, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) "uhW" = ( /turf/open/floor/almayer{ dir = 1; @@ -71287,12 +71164,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"uiK" = ( -/obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "uiR" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -71321,12 +71192,23 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"ujf" = ( -/obj/structure/largecrate/random/barrel/yellow, +"ujc" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_m_s) +"ujr" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) "ujz" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -71355,12 +71237,15 @@ icon_state = "blue" }, /area/almayer/hallways/aft_hallway) -"ukC" = ( -/obj/effect/decal/cleanable/blood/drip, +"ukk" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/upper/u_m_s) "ukP" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer{ @@ -71407,6 +71292,27 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) +"ulG" = ( +/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/hull/upper/u_m_s) +"ulI" = ( +/obj/structure/ladder{ + height = 1; + id = "AftPortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_p) "ulZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -71422,15 +71328,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"umk" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "umm" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light/small, @@ -71499,13 +71396,18 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"unQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/tool, +"unI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/s_bow) "unT" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/crowbar, @@ -71517,16 +71419,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 @@ -71548,18 +71440,19 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"uoj" = ( -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "uoA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) +"uoF" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "uoH" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -71569,13 +71462,15 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"uoO" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +"upv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) "upM" = ( /obj/structure/machinery/light{ dir = 4 @@ -71603,10 +71498,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"upS" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "uqd" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/warning_stripes{ @@ -71637,13 +71528,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"uqg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "uqh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71683,44 +71567,23 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"uqJ" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/maint/hull/upper/u_a_s) -"urg" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) -"ury" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +"uqW" = ( +/obj/item/tool/wet_sign, /obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - 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, +/area/almayer/maint/lower/constr) +"urD" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/lower/l_f_p) "urM" = ( /obj/structure/machinery/light{ dir = 8 @@ -71735,14 +71598,14 @@ /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"urW" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 7" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"urZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/area/almayer/engineering/lower/engine_core) +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) "usm" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/waterhazard{ @@ -71753,19 +71616,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"usq" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/panic) "usy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -71827,15 +71677,6 @@ 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/hull/upper/u_a_s) "utK" = ( /obj/structure/machinery/light{ dir = 4 @@ -71933,15 +71774,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"uvp" = ( -/obj/structure/largecrate/supply, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "uvt" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -71960,6 +71792,23 @@ icon_state = "orangecorner" }, /area/almayer/squads/bravo) +"uvB" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/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 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "uvP" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -71994,10 +71843,19 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"uwf" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +"uwi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"uwk" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) "uws" = ( /obj/structure/machinery/light{ dir = 4 @@ -72018,6 +71876,12 @@ "uwv" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room/notunnel) +"uwJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "uwN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -72062,18 +71926,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"uxb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"uxl" = ( -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "uxp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -72090,12 +71942,12 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"uxs" = ( -/obj/structure/machinery/pipedispenser/orderable, -/turf/open/floor/almayer{ - icon_state = "plate" +"uxx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "uxC" = ( /obj/structure/machinery/light{ dir = 4 @@ -72141,6 +71993,15 @@ icon_state = "greencorner" }, /area/almayer/hallways/port_hallway) +"uyb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "uyd" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -72170,13 +72031,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/chemistry) -"uzv" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"uyK" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/upper/u_f_p) +"uyV" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_a_p) "uzy" = ( /obj/item/reagent_container/glass/bucket, /obj/effect/decal/cleanable/blood/oil, @@ -72215,6 +72082,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"uAx" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "uAC" = ( /obj/item/bedsheet/purple{ layer = 3.2 @@ -72259,6 +72132,10 @@ /obj/item/toy/plush/farwa, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) +"uAN" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "uAW" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -72288,30 +72165,6 @@ icon_state = "green" }, /area/almayer/hallways/starboard_hallway) -"uBx" = ( -/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 - }, -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "uBz" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; @@ -72322,6 +72175,15 @@ icon_state = "orange" }, /area/almayer/hallways/stern_hallway) +"uBE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "uBM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -72350,6 +72212,15 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"uBS" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "uCh" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/sign/safety/water{ @@ -72361,13 +72232,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"uCw" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "uCM" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -72386,12 +72250,13 @@ icon_state = "test_floor4" }, /area/almayer/squads/charlie) -"uCR" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 +"uCU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "uCW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -72399,9 +72264,20 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"uDg" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_bow) +"uDl" = ( +/obj/structure/closet, +/obj/item/stack/sheet/glass/large_stack, +/obj/item/device/lightreplacer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/stack/rods{ + amount = 40 + }, +/obj/item/tool/weldingtool, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) "uDn" = ( /obj/structure/ladder{ height = 1; @@ -72419,6 +72295,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lockerroom) +"uDT" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "uDW" = ( /obj/structure/machinery/cm_vending/clothing/tl/delta{ density = 0; @@ -72428,6 +72317,15 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"uFb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) "uFd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -72458,12 +72356,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) -"uFp" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "uFq" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -72474,6 +72366,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) +"uFE" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/head/helmet/marine/tech/tanker, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "uFH" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -72517,6 +72419,13 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/aft_hallway) +"uGy" = ( +/obj/structure/ladder{ + height = 2; + id = "AftPortMaint" + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_p) "uGN" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -72527,38 +72436,22 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"uGU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"uHk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) "uHr" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"uHT" = ( +"uHZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic/press{ + dir = 1; + name = "\improper Combat Correspondent Room" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/lower/s_bow) +/area/almayer/command/combat_correspondent) "uId" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -72574,12 +72467,21 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"uIw" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_s) "uIA" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"uIF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "uII" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -72600,6 +72502,20 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha_bravo_shared) +"uIZ" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_f_s) "uJk" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer4" @@ -72617,6 +72533,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) +"uJP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) +"uJT" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "uJU" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -72651,11 +72579,13 @@ }, /area/almayer/living/gym) "uKl" = ( -/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_s) "uKv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/multitool{ @@ -72673,12 +72603,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/starboard_hallway) -"uKH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "uKV" = ( /obj/structure/sign/safety/storage{ pixel_x = 32; @@ -72710,26 +72634,10 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/starboard_hallway) -"uLG" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." - }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2, -/obj/item/reagent_container/food/snacks/mre_pack/xmas1, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "uMc" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/starboard) -"uMf" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) "uMj" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -72766,6 +72674,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"uNd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_s) "uNg" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ @@ -72786,10 +72700,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"uNz" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "uNB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -72830,14 +72740,6 @@ "uOi" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/south2) -"uOE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "uOJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ @@ -72850,6 +72752,14 @@ icon_state = "blue" }, /area/almayer/living/basketball) +"uPD" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "uPI" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -72858,12 +72768,6 @@ icon_state = "orangecorner" }, /area/almayer/hallways/stern_hallway) -"uPN" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "uPP" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -72874,13 +72778,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower) -"uPQ" = ( -/obj/item/weapon/dart/green, -/obj/structure/dartboard{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "uPW" = ( /obj/structure/bed/chair{ dir = 4 @@ -72914,6 +72811,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"uQp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_stern) "uQU" = ( /obj/structure/stairs{ dir = 1 @@ -72930,6 +72830,12 @@ allow_construction = 0 }, /area/almayer/hallways/port_hallway) +"uRh" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "uRo" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -72989,14 +72895,6 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"uRR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/s_bow) "uRY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -73030,16 +72928,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"uSI" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "uSS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/lockerroom) -"uSU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "uSW" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -73054,21 +72952,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"uTk" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"uTs" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/p_bow) "uTv" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -73077,13 +72960,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"uTE" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "uTN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, @@ -73091,6 +72967,10 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) +"uTS" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "uTU" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -73128,6 +73008,10 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"uUa" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "uUe" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -73196,6 +73080,10 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) +"uUD" = ( +/obj/structure/largecrate/supply/weapons/pistols, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "uVc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -73216,15 +73104,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"uVp" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "uVv" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 1 @@ -73233,6 +73112,18 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"uVx" = ( +/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/hull/upper/u_a_s) "uVA" = ( /turf/open/floor/almayer{ dir = 4; @@ -73270,6 +73161,14 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) +"uWp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"uWv" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/stairs) "uWC" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 @@ -73328,16 +73227,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/engine_core) -"uXm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "uXu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -73356,13 +73245,6 @@ icon_state = "tcomms" }, /area/almayer/engineering/upper_engineering/starboard) -"uXU" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "uYa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -73395,6 +73277,9 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"uZb" = ( +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) "uZo" = ( /obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -73447,6 +73332,18 @@ icon_state = "test_floor4" }, /area/almayer/living/basketball) +"vag" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "vak" = ( /obj/structure/sign/safety/security{ pixel_x = 15; @@ -73454,22 +73351,12 @@ }, /turf/closed/wall/almayer, /area/almayer/hallways/starboard_umbilical) -"vaQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Medical Storage" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_medbay) -"vaV" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"vaH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "vaZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -73491,16 +73378,10 @@ 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{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/maint/hull/upper/u_a_s) +"vbk" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) "vbB" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) @@ -73520,6 +73401,12 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"vbJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "vbM" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -73563,6 +73450,25 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"vcg" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"vcl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "vcm" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -30 @@ -73593,13 +73499,41 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"vcI" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vcL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/armory) +"vdc" = ( +/obj/item/tool/wet_sign, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "vdl" = ( /obj/structure/window/reinforced/ultra{ pixel_y = -12 @@ -73665,14 +73599,6 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"vdT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) "vdW" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -73682,18 +73608,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/port_hallway) +"vef" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) "ven" = ( /obj/structure/bed/chair, /turf/open/floor/almayer{ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"veq" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "veu" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -73704,27 +73632,16 @@ 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 - }, +"veN" = ( +/obj/item/stool, +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/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/hull/upper/u_m_p) +/area/almayer/maint/upper/u_m_s) +"veX" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/panic) "vfa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -73737,6 +73654,20 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) +"vfn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/structure/janitorialcart, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) "vfo" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -73782,16 +73713,6 @@ dir = 1 }, /area/almayer/medical/containment/cell) -"vfS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "vgi" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, @@ -73930,6 +73851,31 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"vgY" = ( +/obj/structure/largecrate/random/case/double, +/obj/item/tool/wet_sign{ + pixel_y = 18 + }, +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vhb" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) "vhe" = ( /obj/structure/filingcabinet{ density = 0; @@ -73955,10 +73901,15 @@ /obj/structure/machinery/disposal, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"vhA" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +"vhM" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "vhR" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -74109,6 +74060,19 @@ icon_state = "plating" }, /area/almayer/shipboard/port_missiles) +"vji" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) "vjv" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -74136,22 +74100,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"vjS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/lower/constr) "vjW" = ( /obj/structure/reagent_dispensers/watertank{ anchored = 1 @@ -74186,27 +74134,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"vky" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/p_bow) -"vkI" = ( -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "vkM" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -74220,20 +74147,14 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/general_equipment) -"vkO" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass/large_stack, -/obj/item/device/lightreplacer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/stack/rods{ - amount = 40 +"vkQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/item/tool/weldingtool, -/obj/item/clothing/glasses/welding, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/lower/s_bow) +/area/almayer/maint/hull/lower/l_f_s) "vkR" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -74244,9 +74165,27 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"vkV" = ( -/obj/effect/landmark/start/liaison, +"vkW" = ( +/obj/structure/sink{ + pixel_y = 24 + }, /turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"vlf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/medical_science) +"vlj" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer{ + icon_state = "plate" + }, /area/almayer/maint/hull/upper/u_m_p) "vlk" = ( /obj/structure/closet/emcloset, @@ -74344,15 +74283,6 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) -"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/hull/upper/u_a_p) "vmE" = ( /turf/open/floor/almayer{ icon_state = "orangecorner" @@ -74391,6 +74321,35 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) +"vmZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vna" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"vnj" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/device/taperecorder{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "vnD" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -74400,13 +74359,35 @@ icon_state = "plate" }, /area/almayer/living/gym) -"vor" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/prop/broken_arcade, +"vnE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"vnU" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/upper/s_bow) +"voo" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"voU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;21" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) "vpe" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ @@ -74417,11 +74398,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/workshop/hangar) -"vpf" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "vpn" = ( /turf/open/floor/almayer{ dir = 9; @@ -74439,22 +74415,6 @@ /obj/item/clothing/mask/cigarette/weed, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"vpI" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"vpT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "vpV" = ( /turf/open/floor/almayer{ dir = 10; @@ -74549,6 +74509,10 @@ "vra" = ( /turf/closed/wall/almayer, /area/almayer/squads/charlie_delta_shared) +"vrb" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "vrx" = ( /obj/structure/machinery/status_display{ pixel_x = -32; @@ -74556,6 +74520,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"vrG" = ( +/obj/item/ammo_box/magazine/misc/mre/empty{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 11; + pixel_y = -3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) "vrI" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -74605,19 +74580,10 @@ icon_state = "bluecorner" }, /area/almayer/living/briefing) -"vrZ" = ( -/obj/structure/largecrate/machine/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"vsd" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_s) +"vsa" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) "vse" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -74631,13 +74597,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"vsi" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "vsz" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -74698,6 +74657,19 @@ icon_state = "rasputin3" }, /area/almayer/powered/agent) +"vts" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/tool/shovel/spade{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "vtx" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bathroom" @@ -74737,12 +74709,23 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"vtJ" = ( -/obj/structure/closet/emcloset, +"vtH" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"vtL" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_f_p) +"vtZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "vub" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) @@ -74751,6 +74734,27 @@ /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) +"vuw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + access_modified = 1; + dir = 2; + name = "\improper Requisitions Break Room"; + req_one_access_txt = "19;21" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) "vuA" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -74806,6 +74810,10 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) +"vvj" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "vvp" = ( /obj/structure/pipes/vents/pump, /obj/structure/sign/safety/intercom{ @@ -74851,26 +74859,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"vvH" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"vvX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/panic) "vvY" = ( /obj/structure/sink{ dir = 1; @@ -74925,12 +74913,12 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) "vwJ" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/area/almayer/maint/hull/upper/u_m_p) +/obj/item/tool/soap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "vwP" = ( /obj/structure/surface/table/almayer, /obj/item/prop/helmetgarb/prescription_bottle{ @@ -74954,9 +74942,15 @@ }, /area/almayer/hallways/repair_bay) "vwU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_s) "vwV" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ dir = 4 @@ -75026,14 +75020,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"vyh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "vyi" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -75055,12 +75041,6 @@ icon_state = "cargo" }, /area/almayer/living/offices) -"vyr" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "vyu" = ( /obj/structure/bed/sofa/south/white/right, /turf/open/floor/almayer{ @@ -75077,6 +75057,22 @@ "vyI" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) +"vyS" = ( +/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/hull/upper/u_m_s) +"vyZ" = ( +/obj/structure/largecrate/guns/merc{ + name = "\improper dodgy crate" + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "vzj" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 @@ -75119,24 +75115,9 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"vzB" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "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_m_s) "vzP" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/cups, @@ -75156,17 +75137,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"vAg" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "vAq" = ( /obj/structure/bed/chair{ dir = 1 @@ -75176,20 +75146,24 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"vAx" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"vAu" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"vAz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_s) +"vAw" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/constr) +"vAB" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/s_bow) "vAE" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -75244,6 +75218,12 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"vBa" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "vBm" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/main_office) @@ -75259,10 +75239,6 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"vBC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "vBJ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen, @@ -75323,10 +75299,19 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"vCE" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +"vCB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) "vCO" = ( /obj/effect/landmark/start/bridge, /turf/open/floor/plating/plating_catwalk, @@ -75339,40 +75324,28 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/hydroponics) -"vDh" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" +"vDk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/maint/hull/upper/s_bow) -"vDt" = ( -/obj/item/stool, -/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) -"vDz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vDN" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"vDR" = ( +"vDZ" = ( /obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_m_s) "vEf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -75388,6 +75361,10 @@ /obj/effect/landmark/start/synthetic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) +"vEq" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "vEr" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -75398,6 +75375,21 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"vEv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "vEx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -75421,10 +75413,17 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/almayer, /area/almayer/living/briefing) -"vEI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +"vEQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "vEV" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -75442,6 +75441,10 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) +"vFr" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "vFv" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -75457,25 +75460,41 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) +"vFB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "vFH" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower) -"vFI" = ( -/obj/structure/largecrate/random/secure, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 +"vFS" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/normandy{ + layer = 3.5 }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 5 +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/offices/flight) +"vGw" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/upper/u_m_s) "vGA" = ( /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer{ @@ -75483,6 +75502,14 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"vGC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) "vGG" = ( /obj/structure/bed/chair/comfy/bravo, /turf/open/floor/almayer{ @@ -75498,6 +75525,13 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) +"vGV" = ( +/obj/structure/largecrate/supply, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) "vHa" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/ares_console{ @@ -75520,9 +75554,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"vHn" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_s) "vHq" = ( /obj/item/device/assembly/mousetrap/armed, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -75627,6 +75658,15 @@ icon_state = "redfull" }, /area/almayer/command/cic) +"vHZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "vIf" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -75636,12 +75676,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"vIg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_a_s) "vIm" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -75659,6 +75693,13 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) +"vIE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "vIN" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 15; @@ -75689,10 +75730,32 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"vJR" = ( -/obj/structure/barricade/handrail, +"vJq" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"vJJ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/maint/hull/lower/l_a_s) +"vJO" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_f_s) "vJV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -75735,6 +75798,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"vKo" = ( +/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/hull/upper/u_a_p) "vKB" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, /obj/structure/machinery/light/small{ @@ -75759,12 +75832,42 @@ allow_construction = 0 }, /area/almayer/hallways/aft_hallway) -"vKI" = ( -/obj/structure/machinery/light{ - dir = 1 +"vKG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/spiderling_remains{ + pixel_x = 18; + pixel_y = -5 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/obj/effect/decal/cleanable/ash{ + pixel_x = 11; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"vKU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"vLd" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/lungs/prosthetic, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "vLg" = ( /obj/item/trash/uscm_mre, /obj/structure/bed/chair/comfy/charlie, @@ -75801,13 +75904,23 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie) -"vMb" = ( -/obj/item/stool{ - pixel_x = -15; - pixel_y = 6 +"vLO" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/lower/l_f_s) +"vLX" = ( +/obj/item/robot_parts/arm/l_arm, +/obj/item/robot_parts/leg/l_leg, +/obj/item/robot_parts/arm/r_arm, +/obj/item/robot_parts/leg/r_leg, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) "vMo" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_four) @@ -75815,6 +75928,25 @@ /obj/effect/landmark/start/otech, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) +"vMv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) +"vMw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "vMx" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -75861,10 +75993,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"vMQ" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) "vNp" = ( /obj/structure/sign/safety/three{ pixel_x = -17 @@ -75887,34 +76015,26 @@ dir = 9 }, /area/almayer/command/cic) +"vOb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "vOh" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"vOw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_m_s) "vOy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/medical_science) -"vOG" = ( -/obj/structure/largecrate/supply/ammo/m41a/half, -/obj/structure/largecrate/supply/ammo/pistol/half{ - pixel_y = 12 +"vOK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"vOM" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_p) "vON" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -75933,21 +76053,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/upper_medical) -"vOY" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/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/maint/upper/mess) "vPf" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -76090,16 +76195,22 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"vRJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Emergency Air Storage" +"vRF" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = 6 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) "vRR" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -76113,6 +76224,12 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"vRW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "vRX" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/medical_diagnostics_manual, @@ -76148,21 +76265,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"vSr" = ( -/obj/structure/largecrate/random/case/double, -/obj/item/tool/wet_sign{ - pixel_y = 18 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "vSE" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/almayer{ @@ -76277,21 +76379,18 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"vUJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"vUs" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/lower/constr) "vUP" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cic_hallway) @@ -76313,6 +76412,13 @@ icon_state = "emerald" }, /area/almayer/hallways/port_hallway) +"vUW" = ( +/obj/item/weapon/dart/green, +/obj/structure/dartboard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "vVb" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -76348,6 +76454,12 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"vVD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "vVI" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 8; @@ -76367,32 +76479,29 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"vVX" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"vWa" = ( +/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 = "cargo" + icon_state = "dark_sterile" }, -/area/almayer/engineering/lower/engine_core) -"vVY" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) -"vWc" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/normandy{ - layer = 3.5 +/area/almayer/maint/hull/upper/u_a_s) +"vWb" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, /turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "cargo" }, -/area/almayer/living/offices/flight) +/area/almayer/maint/hull/upper/u_m_p) "vWt" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/beaker/large, @@ -76528,24 +76637,24 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower) -"vXv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10"; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +"vXr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, -/area/almayer/medical/upper_medical) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "vYi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/port_hallway) +"vYk" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_p) "vYm" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, @@ -76650,15 +76759,12 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"wac" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"waa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "wan" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/brown, @@ -76667,11 +76773,29 @@ icon_state = "green" }, /area/almayer/living/offices) +"wax" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "waD" = ( /turf/open/floor/almayer{ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_one) +"waG" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "waJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -76681,6 +76805,24 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"waS" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"waY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "wbh" = ( /obj/structure/machinery/light{ dir = 4 @@ -76690,6 +76832,10 @@ icon_state = "orange" }, /area/almayer/hallways/starboard_hallway) +"wbm" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "wbu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname/almayer{ @@ -76700,18 +76846,6 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"wby" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "wbC" = ( /obj/structure/machinery/atm{ pixel_y = 32 @@ -76765,15 +76899,15 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_four) -"wbV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"wbT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "red" + icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/almayer/maint/hull/upper/u_f_p) "wbX" = ( /obj/structure/closet/secure_closet/cmdcabinet{ pixel_y = 24 @@ -76793,6 +76927,12 @@ icon_state = "redfull" }, /area/almayer/lifeboat_pumps/south2) +"wcs" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "wct" = ( /obj/structure/closet/radiation, /turf/open/floor/almayer{ @@ -76800,14 +76940,19 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"wcJ" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"wcx" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "redfull" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/shipboard/panic) "wcN" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -76897,19 +77042,14 @@ /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) +"wdA" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stairs) "wdF" = ( /turf/open/floor/almayer{ allow_construction = 0 }, /area/almayer/shipboard/brig/processing) -"wdG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_p) "wdI" = ( /turf/open/floor/almayer{ dir = 1; @@ -76924,12 +77064,15 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"wdW" = ( -/obj/structure/machinery/light/small, +"wdN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/reactor, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/engineering/lower/engine_core) "wed" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, @@ -76956,16 +77099,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/hydroponics) -"wes" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "wex" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 8; @@ -76998,6 +77131,25 @@ icon_state = "cargo" }, /area/almayer/living/offices) +"weW" = ( +/obj/effect/landmark/start/doctor, +/obj/structure/sign/safety/maint{ + pixel_y = 26 + }, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"wfd" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/p_bow) "wfn" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ @@ -77034,6 +77186,13 @@ "wfE" = ( /turf/closed/wall/almayer, /area/almayer/living/gym) +"wfG" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "wfZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -77089,13 +77248,12 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"wgO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"wgw" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_m_s) "wgR" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, @@ -77106,14 +77264,23 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"whm" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"whr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = null; + req_one_access_txt = "19;34;30" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, +/area/almayer/maint/hull/upper/u_m_p) +"whv" = ( +/obj/structure/bed/sofa/south/grey/left, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_f_p) "whA" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/living/briefing) @@ -77132,9 +77299,15 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"wid" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/p_bow) +"whX" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "wiz" = ( /obj/structure/bed/chair{ dir = 4 @@ -77176,17 +77349,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"wiO" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "wiW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -77243,33 +77405,9 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) -"wjP" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"wjQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - 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/mess) +"wjN" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/s_bow) "wjY" = ( /obj/structure/closet/secure_closet/warrant_officer, /turf/open/floor/wood/ship, @@ -77297,6 +77435,10 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) +"wkw" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "wky" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -77326,6 +77468,13 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) +"wkJ" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "wkM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "ARES StairsLower"; @@ -77350,6 +77499,15 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) +"wkP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -16 + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "wkX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -77387,22 +77545,9 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"wlh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, +"wli" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"wlB" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_m_s) "wlE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -77429,6 +77574,12 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"wlQ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "wmg" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -77504,6 +77655,11 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"wnQ" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) "wnY" = ( /obj/item/tool/crowbar/red, /obj/structure/disposalpipe/segment{ @@ -77540,9 +77696,21 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"woU" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_p) +"woQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "wpg" = ( /obj/structure/machinery/blackbox_recorder, /turf/open/shuttle/dropship{ @@ -77559,20 +77727,6 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"wpu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/device/flash, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) "wpw" = ( /obj/structure/bed/chair/comfy/ares{ dir = 1 @@ -77612,12 +77766,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"wpT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "wqc" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -77661,6 +77809,9 @@ icon_state = "green" }, /area/almayer/hallways/aft_hallway) +"wqU" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "wqW" = ( /obj/structure/closet/secure_closet/CMO, /obj/structure/machinery/light{ @@ -77671,14 +77822,21 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/upper_medical) -"wra" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"wqX" = ( +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/lower/l_a_p) +"wri" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "wrC" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 @@ -77752,22 +77910,14 @@ }, /area/almayer/hallways/aft_hallway) "wsw" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) -"wsz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_a_p) "wsD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -77780,31 +77930,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/bravo) -"wtk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"wtn" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/item/storage/firstaid{ - pixel_x = -13; - pixel_y = 13 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "wty" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -77814,14 +77939,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/delta) -"wtD" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/p_bow) "wtM" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -77847,14 +77964,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"wub" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) "wuc" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ name = "\improper Brig Medbay"; @@ -77880,26 +77989,6 @@ icon_state = "orangefull" }, /area/almayer/engineering/lower/workshop) -"wuh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "wup" = ( /obj/structure/supply_drop/echo, /turf/open/floor/almayer, @@ -77922,6 +78011,31 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) +"wuP" = ( +/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_m_s) +"wuR" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "wuT" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -77954,6 +78068,10 @@ /obj/structure/filingcabinet, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"wvt" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "wvE" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ @@ -78015,6 +78133,14 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) +"wwV" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "wwW" = ( /obj/structure/machinery/camera/autoname/almayer/containment/hidden{ dir = 8; @@ -78046,6 +78172,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"wxn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) "wxq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -78054,16 +78189,6 @@ icon_state = "plate" }, /area/almayer/medical/lower_medical_medbay) -"wxu" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"wxy" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_stern) "wxU" = ( /obj/item/ashtray/bronze{ pixel_x = 7; @@ -78098,22 +78223,6 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"wyz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"wyG" = ( -/obj/structure/disposalpipe/segment, -/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/hull/lower/l_m_s) "wyQ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door_control{ @@ -78126,19 +78235,12 @@ icon_state = "plating" }, /area/almayer/command/airoom) -"wzZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Wheelchair Storage"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"wzC" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "wAR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -78164,6 +78266,22 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) +"wBl" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) +"wBy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "wBI" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/sign/safety/maint{ @@ -78187,6 +78305,12 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"wCF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "wCI" = ( /turf/open/floor/almayer{ dir = 4; @@ -78219,25 +78343,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"wDp" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"wDq" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"wDr" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stairs) "wDs" = ( /obj/structure/machinery/seed_extractor, /obj/structure/sign/safety/terminal{ @@ -78302,14 +78407,6 @@ "wDM" = ( /turf/closed/wall/almayer/reinforced/temphull, /area/almayer/engineering/upper_engineering) -"wDP" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "wEd" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -78334,6 +78431,23 @@ icon_state = "rasputin3" }, /area/almayer/powered/agent) +"wEp" = ( +/obj/structure/bookcase/manuals/medical, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) +"wEA" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "wEI" = ( /obj/structure/surface/table/reinforced/black, /obj/item/tool/pen, @@ -78389,34 +78503,21 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"wFN" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, +"wFG" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/lower/l_a_p) "wFR" = ( /turf/open/floor/almayer, /area/almayer/living/gym) -"wFX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"wGa" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"wGa" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/upper/u_m_s) "wGb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -78432,12 +78533,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"wGe" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "wGA" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -78501,6 +78596,13 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/chief_mp_office) +"wIg" = ( +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "wIr" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ req_access = list(); @@ -78514,12 +78616,12 @@ icon_state = "cargo" }, /area/almayer/squads/req) -"wIu" = ( -/obj/structure/largecrate/random/case, +"wIz" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/s_stern) "wIC" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/chief_mp_office) @@ -78588,10 +78690,6 @@ icon_state = "cargo" }, /area/almayer/command/airoom) -"wJC" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "wJD" = ( /obj/structure/bed/chair{ dir = 8; @@ -78613,12 +78711,27 @@ "wJH" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell/cl) -"wKb" = ( -/obj/structure/bed/chair{ - dir = 8 +"wJS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/upper/u_a_s) +"wJT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"wKe" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "wKF" = ( /obj/structure/machinery/power/apc/almayer{ cell_type = /obj/item/cell/hyper; @@ -78729,6 +78842,20 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"wLM" = ( +/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/hull/upper/u_m_s) "wLN" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 8 @@ -78745,12 +78872,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/auxiliary_officer_office) -"wMF" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "wMG" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -78798,6 +78919,12 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) +"wNN" = ( +/obj/structure/platform, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "wNS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -78823,12 +78950,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"wOv" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "wOK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -78838,18 +78959,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"wPa" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/reagent_container/glass/rag, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "wPf" = ( /obj/structure/sign/safety/reception{ pixel_x = 32; @@ -78885,15 +78994,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/hull/upper/u_a_s) "wQg" = ( /turf/open/floor/almayer{ dir = 1; @@ -78913,6 +79013,27 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) +"wQM" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"wQV" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"wRn" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "wRN" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/goldappleseed, @@ -78985,15 +79106,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"wSx" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "wSK" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, @@ -79040,6 +79152,10 @@ icon_state = "silver" }, /area/almayer/command/securestorage) +"wTe" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "wTg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -79057,23 +79173,6 @@ icon_state = "red" }, /area/almayer/living/briefing) -"wTn" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"wTu" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "wTw" = ( /obj/structure/machinery/cm_vending/sorted/attachments/squad{ req_access = null; @@ -79110,6 +79209,10 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"wUc" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "wUd" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves{ @@ -79126,12 +79229,9 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/aft_hallway) -"wUJ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) +"wUB" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_stern) "wUK" = ( /turf/open/floor/almayer{ dir = 8; @@ -79213,14 +79313,13 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) -"wVN" = ( -/obj/item/roller, -/obj/structure/surface/rack, -/obj/item/roller, -/turf/open/floor/almayer{ - icon_state = "plate" +"wVU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, -/area/almayer/shipboard/panic) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) "wVW" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/cic) @@ -79264,6 +79363,10 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) +"wWD" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) "wWP" = ( /obj/structure/prop/cash_register/broken, /obj/structure/machinery/light/small, @@ -79293,6 +79396,17 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"wXb" = ( +/obj/structure/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "wXh" = ( /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" @@ -79301,12 +79415,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) -"wXl" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "wXH" = ( /obj/structure/bed/chair{ dir = 1 @@ -79319,12 +79427,15 @@ icon_state = "greencorner" }, /area/almayer/living/grunt_rnr) -"wXJ" = ( -/obj/structure/largecrate/random/case/small, +"wXS" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/u_a_p) "wXT" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Engineering Storage" @@ -79339,29 +79450,11 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north2) -"wYd" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"wYr" = ( -/obj/structure/machinery/gel_refiller, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) "wYA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"wYG" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_m_s) "wYK" = ( /obj/structure/barricade/handrail/medical, /turf/open/floor/almayer{ @@ -79391,6 +79484,9 @@ }, /turf/open/floor/plating, /area/almayer/engineering/ce_room) +"wZa" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_s) "wZv" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -79404,6 +79500,15 @@ icon_state = "outerhull_dir" }, /area/almayer/engineering/upper_engineering/port) +"wZD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) "wZE" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/surgery, @@ -79456,12 +79561,6 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"xas" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "xaC" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/utensil/pfork{ @@ -79527,24 +79626,35 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xbg" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "xbk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/gym) -"xbI" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"xbG" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8; + plane = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "sterile_green_corner" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/medical/lower_medical_medbay) "xbN" = ( /obj/structure/surface/rack{ density = 0; @@ -79560,38 +79670,24 @@ }, /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/hull/upper/u_a_s) -"xcI" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"xcl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/maint/hull/lower/p_bow) -"xcV" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"xcC" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/lower/l_m_p) "xdx" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular/empty, @@ -79631,43 +79727,27 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"xee" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"xef" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/yellow, -/obj/structure/machinery/keycard_auth{ - pixel_x = -8; - pixel_y = 25 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 26 +"xdT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/sheet/metal{ + desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; + icon = 'icons/obj/structures/props/semiotic_standard.dmi'; + icon_state = "coffee"; + name = "coffee semiotic"; + pixel_x = 20; + pixel_y = 12; + singular_name = "coffee semiotic" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering/lower/workshop) -"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, +/area/almayer/maint/hull/upper/u_a_p) +"xeV" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -79677,18 +79757,20 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/cafeteria_officer) -"xfq" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"xft" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/u_a_p) +"xfu" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_p) "xfK" = ( /obj/structure/machinery/light{ dir = 1 @@ -79732,17 +79814,6 @@ 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/hull/upper/u_m_s) "xgh" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -79751,23 +79822,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/lower_medical_lobby) -"xgm" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"xgr" = ( -/obj/structure/ladder{ - height = 1; - id = "AftPortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_p) "xgx" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -79787,16 +79841,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"xgJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) "xgN" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 1 @@ -79810,39 +79854,19 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xgP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"xgS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "xhn" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) +"xhp" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "xhx" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -79856,11 +79880,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) -"xhO" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "xhQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ @@ -79881,18 +79900,20 @@ /obj/structure/window/reinforced, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"xiH" = ( -/obj/structure/largecrate/random/barrel/blue, +"xiD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/wrench{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/tool/wrench{ + pixel_x = 2; + pixel_y = 7 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) -"xiP" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/upper/u_a_p) "xiU" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/tool/minihoe{ @@ -79907,9 +79928,13 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"xiV" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_bow) +"xiZ" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/maint/hull/lower/l_m_s) "xjb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ access_modified = 1; @@ -79920,6 +79945,12 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"xjh" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "xjt" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/card{ @@ -79991,6 +80022,9 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"xjU" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "xjW" = ( /obj/structure/sign/safety/hazard{ desc = "A sign that warns of a hazardous environment nearby"; @@ -80002,21 +80036,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"xkb" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"xkc" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "xkd" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cells) @@ -80038,6 +80057,28 @@ icon_state = "emerald" }, /area/almayer/hallways/port_hallway) +"xkE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/s_bow) +"xkZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/constr) "xlk" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, @@ -80074,21 +80115,6 @@ icon_state = "silverfull" }, /area/almayer/shipboard/brig/cic_hallway) -"xmn" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "xmJ" = ( /obj/structure/closet, /obj/structure/sign/safety/bathunisex{ @@ -80115,6 +80141,11 @@ icon_state = "dark_sterile" }, /area/almayer/shipboard/brig/surgery) +"xnn" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "xns" = ( /obj/structure/machinery/door_control{ id = "ARES JoeCryo"; @@ -80137,6 +80168,13 @@ icon_state = "red" }, /area/almayer/command/lifeboat) +"xnG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "xnI" = ( /obj/effect/landmark/start/requisition, /turf/open/floor/plating/plating_catwalk, @@ -80171,9 +80209,12 @@ "xoj" = ( /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) -"xoB" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_s) +"xow" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "xoJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -80235,12 +80276,6 @@ allow_construction = 0 }, /area/almayer/hallways/starboard_hallway) -"xpL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "xpT" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -80261,6 +80296,12 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"xqm" = ( +/obj/structure/sign/safety/security{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "xqp" = ( /obj/structure/machinery/body_scanconsole{ dir = 8; @@ -80320,19 +80361,6 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) -"xrg" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "xrq" = ( /obj/structure/closet/firecloset, /obj/item/clothing/mask/gas, @@ -80385,6 +80413,13 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) +"xsj" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "xsl" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -80394,28 +80429,19 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) -"xss" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"xsv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "xsw" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"xsy" = ( +/obj/item/pipe{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "xsz" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -80425,26 +80451,41 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"xsQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart/green, -/obj/item/weapon/dart/green, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "xsW" = ( /obj/structure/machinery/cm_vending/gear/vehicle_crew, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/hallways/vehiclehangar) +"xtk" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"xtr" = ( +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"xtI" = ( +/obj/structure/disposalpipe/segment, +/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_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "xtM" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -80452,6 +80493,17 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"xtU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "xuc" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -80459,6 +80511,13 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) +"xun" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/toy/deck{ + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "xuE" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ dir = 1; @@ -80551,15 +80610,6 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"xwd" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "xwl" = ( /obj/structure/window/reinforced{ dir = 4; @@ -80603,6 +80653,14 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"xwU" = ( +/obj/item/roller, +/obj/structure/surface/rack, +/obj/item/roller, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "xwX" = ( /turf/open/floor/almayer{ dir = 9; @@ -80647,14 +80705,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"xxl" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 2" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "xxm" = ( /obj/structure/bed{ can_buckle = 0 @@ -80692,19 +80742,16 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"xxG" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/largecrate/random/barrel/red, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = -2; - pixel_y = 16 +"xxr" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars, +/obj/item/device/whistle{ + pixel_y = 5 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_f_s) "xxI" = ( /obj/structure/cargo_container/wy/mid, /obj/structure/sign/poster{ @@ -80814,11 +80861,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"xyZ" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "xzf" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -80829,12 +80871,17 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"xzh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"xzB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +"xzx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "xzO" = ( /obj/structure/closet/secure_closet{ name = "\improper Execution Firearms" @@ -80867,13 +80914,6 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"xAu" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "xAB" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -80918,12 +80958,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/port) -"xBK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) "xBQ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -80931,14 +80965,12 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"xBS" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, +"xBT" = ( +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) "xBV" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -80968,17 +81000,6 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"xCy" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "xDe" = ( /obj/effect/projector{ name = "Almayer_Down4"; @@ -80995,6 +81016,10 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"xDy" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "xDC" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/no_build{ @@ -81008,15 +81033,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/hull/upper/u_a_s) "xDV" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -81027,14 +81043,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"xEe" = ( -/obj/structure/prop/invuln/joey, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"xEs" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +"xEq" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "xEz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/surgery, @@ -81057,9 +81074,6 @@ icon_state = "plate" }, /area/almayer/living/offices) -"xFt" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "xFw" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -81103,18 +81117,18 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/aft_hallway) -"xGm" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "xGo" = ( /obj/structure/machinery/autolathe, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/req) +"xGv" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "xGE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -81136,15 +81150,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/bravo) -"xGF" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "xGJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -81155,72 +81160,38 @@ icon_state = "red" }, /area/almayer/living/briefing) -"xGK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/lights/tubes{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"xGT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"xHa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "xHp" = ( /turf/open/floor/almayer{ 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 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +"xHr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/tubes{ + pixel_x = -8 }, -/area/almayer/maint/hull/upper/u_m_p) -"xHS" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank{ - anchored = 1 +/obj/item/storage/box/lights/tubes{ + pixel_x = 5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/storage/box/lights/tubes{ + pixel_y = 10 }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xHx" = ( /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/engineering/lower/workshop/hangar) -"xHX" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/upper/u_m_s) +"xHC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/l_f_p) "xId" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/he, @@ -81237,6 +81208,14 @@ icon_state = "cargo" }, /area/almayer/medical/lower_medical_medbay) +"xIp" = ( +/obj/structure/surface/table/almayer, +/obj/item/card/id/visa, +/obj/item/tool/crew_monitor, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "xIq" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -81261,23 +81240,24 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"xIO" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 11" - }, +"xIy" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/lower/cryo_cells) +"xIB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "xIQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/living/offices) -"xIV" = ( -/turf/open/floor/almayer, -/area/almayer/maint/upper/mess) "xIW" = ( /obj/structure/machinery/light{ dir = 4 @@ -81312,17 +81292,18 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"xJp" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "xJH" = ( /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/charlie_delta_shared) +"xJK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "xJR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -81339,18 +81320,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"xKG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"xKo" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/door_control{ - id = "Under Construction Shutters"; - name = "shutter-control"; - pixel_x = -25 +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/upper/s_bow) "xKM" = ( /obj/structure/machinery/status_display{ pixel_x = 16; @@ -81397,16 +81376,9 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/general_equipment) -"xLn" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) -"xLu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +"xLp" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "xMf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -81450,15 +81422,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"xMm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "xMs" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_two) @@ -81487,26 +81450,6 @@ dir = 6 }, /area/almayer/command/cic) -"xMG" = ( -/obj/structure/machinery/door_control{ - id = "OuterShutter"; - name = "Outer Shutter"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;3" - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "OfficeSafeRoom"; - name = "Office Safe Room"; - pixel_x = 5; - pixel_y = 5; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "xML" = ( /obj/structure/machinery/computer/cameras/wooden_tv/prop{ pixel_x = -4; @@ -81626,18 +81569,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/vehiclehangar) -"xOs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/command/corporateliaison) +"xNY" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"xOb" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) "xOL" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -81675,12 +81614,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/hull/upper/u_a_p) "xPZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -81696,24 +81629,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"xQd" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"xQe" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "xQg" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -81723,13 +81638,6 @@ icon_state = "bluecorner" }, /area/almayer/living/pilotbunks) -"xQj" = ( -/obj/item/pipe{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "xQm" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 1 @@ -81741,14 +81649,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"xQW" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = -18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "xRj" = ( /obj/structure/bed/chair{ dir = 8; @@ -81893,17 +81793,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"xTx" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_p) -"xTG" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "xTH" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -81923,6 +81812,20 @@ icon_state = "plate" }, /area/almayer/living/numbertwobunks) +"xTQ" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "xTR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -81968,13 +81871,18 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"xUy" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/structure/surface/rack, +"xUb" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xUt" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/maint/hull/lower/stern) "xUA" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pouch/tools/tank, @@ -81991,25 +81899,23 @@ icon_state = "silver" }, /area/almayer/command/cic) -"xUV" = ( -/obj/structure/bed/chair{ - dir = 4 +"xUS" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/command/combat_correspondent) -"xUY" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/maint/hull/lower/l_a_p) +"xUV" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1 - }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/command/combat_correspondent) "xVc" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/door_control{ @@ -82078,16 +81984,12 @@ icon_state = "orange" }, /area/almayer/squads/alpha_bravo_shared) -"xWo" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;21" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"xWh" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 }, -/area/almayer/squads/req) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "xWp" = ( /turf/open/floor/almayer, /area/almayer/living/offices/flight) @@ -82097,6 +81999,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"xWI" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = -25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "xWO" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 @@ -82120,6 +82033,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"xWV" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/alamo{ + layer = 2.9 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/offices/flight) "xXa" = ( /turf/open/floor/almayer{ dir = 8; @@ -82160,6 +82082,21 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"xXu" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"xXD" = ( +/obj/item/clothing/shoes/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"xXG" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "xXT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -82175,6 +82112,13 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"xXX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "xYf" = ( /obj/structure/machinery/cm_vending/clothing/sea, /turf/open/floor/almayer{ @@ -82182,12 +82126,6 @@ icon_state = "plating" }, /area/almayer/shipboard/sea_office) -"xYr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "xYB" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -82195,12 +82133,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) -"xYE" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "xYP" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) @@ -82256,10 +82188,15 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xZz" = ( -/obj/item/paper/almayer_storage, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +"xZs" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "xZG" = ( /obj/structure/machinery/light{ dir = 4 @@ -82268,12 +82205,6 @@ /obj/structure/bed, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"xZH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "xZU" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -82285,6 +82216,12 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) +"yaa" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "yac" = ( /obj/structure/platform_decoration{ dir = 8 @@ -82294,6 +82231,22 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"yai" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"yak" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "yaz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "\improper Officer's Study" @@ -82346,23 +82299,16 @@ icon_state = "blue" }, /area/almayer/hallways/aft_hallway) -"ybm" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = 6 +"ybq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 8; - pixel_y = 7 +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/shipboard/panic) "ybz" = ( /obj/structure/machinery/brig_cell/cell_4{ pixel_x = 32; @@ -82408,9 +82354,6 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"ycl" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) "ycm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -82442,14 +82385,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"ycM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "ycZ" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -82459,15 +82394,19 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"ydf" = ( -/obj/structure/platform{ +"ydb" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "ydh" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -82527,6 +82466,12 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"ydR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "ydY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -82535,6 +82480,18 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"yef" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"yen" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "yeu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -82572,6 +82529,16 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"yeO" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "yeR" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ req_access = null; @@ -82629,19 +82596,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/hull/upper/u_m_p) "yfS" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -82649,6 +82603,10 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) +"ygb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "yge" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer/vehicle{ @@ -82658,16 +82616,9 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"ygv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +"ygo" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) @@ -82679,42 +82630,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"yht" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"yhx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/glasses/welding{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/tool/weldingtool{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "red" + icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/almayer/maint/hull/upper/u_a_p) "yhI" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"yhR" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"yhZ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/p_bow) -"yia" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"yih" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "yiq" = ( /obj/structure/sign/safety/north{ pixel_x = -17; @@ -82767,6 +82705,18 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/morgue) +"yjf" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Passenger Cryogenics Bay" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) +"yjl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "yjq" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; @@ -82776,15 +82726,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/notunnel) -"yjE" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "yjG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -82808,6 +82749,9 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) +"ykg" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_p) "ykj" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -82819,15 +82763,12 @@ icon_state = "test_floor4" }, /area/almayer/living/grunt_rnr) -"ykv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"ykB" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/shipboard/panic) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "ykI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -82850,61 +82791,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/main_office) -"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/hull/upper/u_m_s) "ylc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -82949,16 +82835,13 @@ icon_state = "orangecorner" }, /area/almayer/hallways/stern_hallway) -"ymg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, +"yma" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_m_s) (1,1,1) = {" aaa @@ -90714,8 +90597,8 @@ aaa aaa aaa aad -uDg -uDg +sOq +sOq hPI pQr rib @@ -90733,8 +90616,8 @@ jNT jNT wSK feb -xiV -xiV +lFL +lFL ajZ aaa aaa @@ -90916,9 +90799,9 @@ aaf aaf aaf aaf -uDg -uDg -lHk +sOq +sOq +ryg naB wnw pHp @@ -90936,9 +90819,9 @@ xzO pNk jIH mtl -igS -xiV -xiV +ktH +lFL +lFL aaf aaf aaf @@ -91112,19 +90995,19 @@ aaa aaa aaa aad -uDg -uDg -uDg -uDg -uDg -uDg -uDg -uDg -aPN -lSJ +sOq +sOq +sOq +sOq +sOq +sOq +sOq +sOq +nkE +mjC naB pQr -jeR +jRH wvI vPf fvA @@ -91139,16 +91022,16 @@ mtl mtl mtl mtl -iuf -pnh -xiV -xiV -xiV -xiV -xiV -xiV -xiV -xiV +vFB +gWL +lFL +lFL +lFL +lFL +lFL +lFL +lFL +lFL ajZ aaa aaa @@ -91315,16 +91198,16 @@ aaa aaa aaa aad -uDg -cth -gkr -xkc -oGj -hSj -xkc -mph -nlh -rGr +sOq +hNh +sjC +pjr +fHY +aXV +pjr +unI +mIQ +bKG naB naB naB @@ -91340,18 +91223,18 @@ rdA alF sql alF -rwe -pdp -hZw -xYr -mjs -pdp -ohu -iUh -pdp -pdp -kSn -xiV +kAk +xXu +ogI +uwJ +hIl +xXu +ubB +csT +xXu +xXu +jIU +lFL ajZ bdH bdH @@ -91518,19 +91401,19 @@ bdH aac aaf aag -uDg -gkr -xkc -gkr -vAg -gxI -kqC -bBU -xkc -eeA +sOq +sjC +pjr +sjC +qPC +tla +vcg +xqm +pjr +vnU naB pQr -ggS +dFH wvI piK fvA @@ -91546,15 +91429,15 @@ xkd xkd xkd xkd -lRt -tsE -iVG -hmA -hmZ -oDh -oDh -pdp -xiV +wUc +hfx +kvj +kWA +idf +tyH +tyH +xXu +lFL aag aaf ajY @@ -91720,10 +91603,10 @@ bdH bdH aad aag -uDg -uDg -gkr -xkc +sOq +sOq +sjC +pjr vBm vBm vBm @@ -91755,10 +91638,10 @@ xkd xkd xkd xkd -pdp -oDh -xiV -xiV +xXu +tyH +lFL +lFL aag ajZ bdH @@ -91923,10 +91806,10 @@ bdH bdH aad aag -uDg -pOp -gkr -cth +sOq +pnI +sjC +hNh vBm rBV oPk @@ -91958,10 +91841,10 @@ uns vCy eyV xkd -mkF -oDh -pdp -xiV +nWt +tyH +xXu +lFL aag ajZ bdH @@ -92126,10 +92009,10 @@ bdH bdH aad aag -uDg -lDT -xkc -xyZ +sOq +naN +pjr +lHE vBm ldu wgi @@ -92161,10 +92044,10 @@ xGh jVa wDs xkd -oHf -oDh -pdp -xiV +abN +tyH +xXu +lFL aag ajZ bdH @@ -92329,9 +92212,9 @@ bdH bdH aad aag -uDg -xkc -gkr +sOq +pjr +sjC vBm vBm sFC @@ -92341,10 +92224,10 @@ vBm lOI pJv jLM -btn +sXy cMb rbi -wDp +kwU xys nkX iQB @@ -92365,9 +92248,9 @@ tUx wRN xkd xkd -pdp -oDh -xiV +xXu +tyH +lFL aag ajZ bdH @@ -92435,10 +92318,10 @@ aaa bdH aad aag -nBJ -nBJ -nBJ -nBJ +tNf +tNf +tNf +tNf aag dqw uwv @@ -92460,10 +92343,10 @@ dqw aag aag aag -wid -wid -wid -wid +tQN +tQN +tQN +tQN aag ajZ bdH @@ -92532,9 +92415,9 @@ bdH bdH aad aag -lrE -xkc -gkr +ocS +pjr +sjC vBm ykP xAj @@ -92568,9 +92451,9 @@ tUx xJe qLt xkd -pdp -oDh -cPj +xXu +tyH +pqG aag etE bdH @@ -92638,9 +92521,9 @@ aaa bdH aad aag -nBJ -kJc -jFt +tNf +sOH +dRN bAs bAs bAs @@ -92664,9 +92547,9 @@ bTT bTT bTT bAs -kOR -jYM -wid +oFb +obx +tQN aag ajZ bdH @@ -92735,9 +92618,9 @@ bdH bdH aad aag -lrE -gkr -xkc +ocS +sjC +pjr vBm ykP xjG @@ -92771,9 +92654,9 @@ ycm qCo pWr xkd -aGa -oDh -cPj +xXX +tyH +pqG aag ajZ bdH @@ -92841,9 +92724,9 @@ aaa bdH aad aag -nBJ -rUi -grv +tNf +jln +vXr bBA bAK bCY @@ -92867,9 +92750,9 @@ acr bPG acN bBA -gTK -fWg -wid +nHN +sjZ +tQN aag ajZ bdH @@ -92938,9 +92821,9 @@ bdH bdH aad aag -lrE -vDh -xkc +ocS +lYZ +pjr lrq lrq lrq @@ -92974,9 +92857,9 @@ cyZ jVa fJT xkd -rfB -pdp -cPj +mPQ +xXu +pqG aag eSU bdH @@ -93044,9 +92927,9 @@ aaa bdH aad aag -nBJ -uRR -mFQ +tNf +pDk +wjN bBA hWJ bCY @@ -93070,9 +92953,9 @@ bHP bPG hpk bBA -yhZ -wtD -wid +rAk +szS +tQN aag ajZ bdH @@ -93141,9 +93024,9 @@ bdH bdH aad aag -uDg -cth -qsp +sOq +hNh +vtH lrq kEc chv @@ -93177,9 +93060,9 @@ dfk vzz moB xkd -gNZ -pdp -xiV +pVg +xXu +lFL aag ajZ bdH @@ -93247,9 +93130,9 @@ aaa bdH aad aag -nBJ -ecS -eQR +tNf +qqi +fvs gol akb bCY @@ -93273,9 +93156,9 @@ bPn bPG ald gol -sGK -hLu -wid +kuI +lGZ +tQN aag ajZ bdH @@ -93344,9 +93227,9 @@ bdH bdH aad aag -uDg -cUl -gkr +sOq +tnD +sjC lrq heo nqe @@ -93380,9 +93263,9 @@ eZH tUx cXi xkd -ttB -pdp -xiV +vFr +xXu +lFL aag twB bdH @@ -93450,9 +93333,9 @@ aaa bdH aad aag -nBJ -eQR -xAu +tNf +fvs +neX bBA bAN bCY @@ -93476,9 +93359,9 @@ bPo bPG acs bBA -xHX -sGK -wid +edx +kuI +tQN aag ajZ bdH @@ -93547,9 +93430,9 @@ bdH bdH aad aag -lrE -vOM -gkr +ocS +nMT +sjC lrq kui uqo @@ -93583,9 +93466,9 @@ nYd thL jVa fgR -nEc -oDh -cPj +pwx +tyH +pqG aag ajZ bdH @@ -93653,9 +93536,9 @@ aaa bdH aad aag -nBJ -ldF -eox +tNf +cCG +iWW bBA bAO bCZ @@ -93679,9 +93562,9 @@ bDW bPJ iuz bBA -mVh -uMf -wid +aGh +bjh +tQN aag ajZ bdH @@ -93750,16 +93633,16 @@ bdH bdH aad aag -lrE -etN -xkc +ocS +lFv +pjr lrq sEZ nqe nqe nqe nqe -mza +vcL eRL wfB tpn @@ -93786,9 +93669,9 @@ liZ rUk jVa fgR -azg -gKv -cPj +xGv +tht +pqG aag rEr bdH @@ -93856,9 +93739,9 @@ aaa bdH aad aag -nBJ -ldF -eQR +tNf +cCG +fvs bBA bAP aqu @@ -93882,9 +93765,9 @@ aqu aqu bQz bBA -sGK -vOG -wid +kuI +tDw +tQN aag ajZ bdH @@ -93953,9 +93836,9 @@ bdH bdH aad aag -lrE -gkr -xkc +ocS +sjC +pjr lrq dEX fxJ @@ -93989,9 +93872,9 @@ uaU rUk xaM fgR -hIG -pdp -cPj +tDq +xXu +pqG aag ajZ bdH @@ -94059,9 +93942,9 @@ aaa bdH aad aag -nBJ -vCE -ldF +tNf +uAN +cCG bBA bBu amg @@ -94085,9 +93968,9 @@ amg amg rAD bBA -sGK -mVh -wid +kuI +aGh +tQN aag ajZ bdH @@ -94156,9 +94039,9 @@ bdH bdH aad aag -uDg -xkc -xkc +sOq +pjr +pjr lrq iwV iwV @@ -94192,9 +94075,9 @@ uxa iZU nhG xkd -oDh -uqg -xiV +tyH +qnN +lFL aag uJk bdH @@ -94262,9 +94145,9 @@ aaa bdH aad aag -nBJ -amu -eQR +tNf +pTQ +fvs bBA bBu amg @@ -94288,9 +94171,9 @@ amg amg rAD bBA -ozH -flr -wid +oac +eEq +tQN aag ajZ bdH @@ -94359,9 +94242,9 @@ bdH bdH aad aag -uDg -gkr -old +sOq +sjC +lgM cQv oVf rmx @@ -94395,9 +94278,9 @@ tov thL sUs xkd -gNZ -pdp -xiV +pVg +xXu +lFL aag ajZ bdH @@ -94465,9 +94348,9 @@ aaa bdH aad aag -nBJ -kMW -eQR +tNf +bHC +fvs bBA bBv aqu @@ -94491,9 +94374,9 @@ tkq aqu bQG bBA -uoO -mVh -wid +irA +aGh +tQN aag ajZ bdH @@ -94562,9 +94445,9 @@ bdH bdH aad aag -lrE -gkr -wJC +ocS +sjC +ogi cQv cBw kde @@ -94598,9 +94481,9 @@ tov thL xhx fgR -oDh -pdp -cPj +tyH +xXu +pqG aag scz bdH @@ -94668,9 +94551,9 @@ aaa bdH aad aag -nBJ -iWJ -eQR +tNf +eYN +fvs bBA bBx amg @@ -94694,9 +94577,9 @@ bPq amg rAD bBA -sGK -nhV -wid +kuI +ucU +tQN aag ajZ bdH @@ -94765,9 +94648,9 @@ bdH bdH aad aag -lrE -gkr -wMF +ocS +sjC +eDN cQv eaf bEv @@ -94801,9 +94684,9 @@ iFc thL tUx fgR -pdp -hIG -cPj +xXu +tDq +pqG aag ajZ bdH @@ -94871,9 +94754,9 @@ aaa aac aag aag -nBJ -dKS -ffN +tNf +tzw +pcY bBA bBy amg @@ -94897,9 +94780,9 @@ aoa amg bQE bBA -bME -sGK -wid +dkR +kuI +tQN aag aag ajY @@ -94968,9 +94851,9 @@ bdH bdH aad aag -lrE -xkc -vDh +ocS +pjr +lYZ cQv eaf bEv @@ -95004,9 +94887,9 @@ thL thL tUx fgR -pdp -aCA -cPj +xXu +rlY +pqG aag okD bdH @@ -95073,10 +94956,10 @@ aaa aaa aad aag -nBJ -nBJ -eQR -bTW +tNf +tNf +fvs +phn bBA bBz aqu @@ -95100,10 +94983,10 @@ bEx aqu bQI bBA -gsy -sGK -wid -wid +xTQ +kuI +tQN +tQN aag ajZ aaa @@ -95171,9 +95054,9 @@ bdH bdH aad aag -uDg -xkc -xkc +sOq +pjr +pjr cQv eaf bEv @@ -95207,9 +95090,9 @@ thL thL tUx xkd -pdp -vhA -xiV +xXu +xNY +lFL aag ajZ bdH @@ -95276,10 +95159,10 @@ aaa aaa aad aag -nBJ -ldF -ldF -xiP +tNf +cCG +cCG +oVn bBA lsV amg @@ -95303,10 +95186,10 @@ bPC amg pyL bBA -cDb -sGK -nhV -wid +nrG +kuI +ucU +tQN aag ajZ bdH @@ -95374,9 +95257,9 @@ bdH bdH aad aag -uDg -lDT -xkc +sOq +naN +pjr cQv eaf bEv @@ -95410,9 +95293,9 @@ thL thL tUx xkd -pdp -oDh -xiV +xXu +tyH +lFL aag ajZ bdH @@ -95478,11 +95361,11 @@ aaf aaf aaf aag -nBJ -nBJ -ldF -eQR -uFp +tNf +tNf +cCG +fvs +grf bBA bBA tiR @@ -95506,11 +95389,11 @@ jAi aib jAi jAi -ipB -mVh -sGK -wid -wid +hNJ +aGh +kuI +tQN +tQN aag aaf aaf @@ -95577,9 +95460,9 @@ bdH bdH aad aag -uDg -gkr -qsp +sOq +sjC +vtH cQv xLl bEv @@ -95613,9 +95496,9 @@ tUx vsz oEE xkd -gNZ -pdp -xiV +pVg +xXu +lFL aag ajZ bdH @@ -95678,18 +95561,18 @@ aaa aaa aad aag -nBJ -nBJ -nBJ -nBJ -ldF -ldF -bos -bos -bos -haR -uHT -jHn +tNf +tNf +tNf +tNf +cCG +cCG +oZF +oZF +oZF +hLW +bOy +cLk kcp bWJ nar @@ -95711,12 +95594,12 @@ dRw bzy bzy bzy -mVh -sGK -wid -wid -wid -wid +aGh +kuI +tQN +tQN +tQN +tQN aag ajZ aaa @@ -95779,10 +95662,10 @@ aaa bdH bdH aad -uDg -uDg -xkc -eeA +sOq +sOq +pjr +vnU cQv dzG kde @@ -95816,10 +95699,10 @@ smZ wIC tMH wIC -pRs -pdp -xiV -xiV +cBQ +xXu +lFL +lFL ajZ bdH bdH @@ -95881,18 +95764,18 @@ aaa aaa aad aag -nBJ -fUz -ldF -eQR -ldF -ikA -bos -gpO -uHT -bKP -uHT -sGQ +tNf +naW +cCG +fvs +cCG +eFI +oZF +luJ +bOy +nrh +bOy +jrN kcp wMv nCR @@ -95914,12 +95797,12 @@ pqQ bzA rEu bzy -mVh -fJu -mVh -roj -qzA -wid +aGh +ffX +aGh +lHV +ftA +tQN aag ajZ aaa @@ -95982,10 +95865,10 @@ aaa bdH bdH aad -uDg -hzN -gkr -krG +sOq +vvj +sjC +mzk cQv rdM gUg @@ -96019,10 +95902,10 @@ crp dco dqZ wIC -uxb -oDh -pdp -xiV +fGB +tyH +xXu +lFL ajZ bdH bdH @@ -96084,14 +95967,14 @@ aaa aaa aad aag -nBJ -lJM -ldF -eQR -ldF -lyP -bos -gpO +tNf +cvL +cCG +fvs +cCG +sep +oZF +luJ kcp kcp iqp @@ -96117,12 +96000,12 @@ uOc uOc bPj bzy -mXm -mVh -sGK -sGK -nhV -wid +laB +aGh +kuI +kuI +ucU +tQN aag ajZ aaa @@ -96185,9 +96068,9 @@ aaa bdH bdH aad -uDg -fHb -gkr +sOq +vEq +sjC vxM vxM vxM @@ -96223,9 +96106,9 @@ vAG jIo wIC wIC -oDh -pdp -xiV +tyH +xXu +lFL ajZ bdH bdH @@ -96287,14 +96170,14 @@ aaa aaa aad aag -nBJ -eQR -eQR -ldF -eQR -sxS -bos -gpO +tNf +fvs +fvs +cCG +fvs +hdO +oZF +luJ kcp bBD bTS @@ -96324,8 +96207,8 @@ bSv bSv bSv bSv -sGK -wid +kuI +tQN aag ajZ aaa @@ -96388,9 +96271,9 @@ aaa bdH bdH aad -uDg -xkc -gkr +sOq +pjr +sjC vxM rfY kGu @@ -96426,9 +96309,9 @@ sJm dqZ rDY wIC -pdp -kIf -xiV +xXu +wkw +lFL ajZ bdH bdH @@ -96490,14 +96373,14 @@ aaa aaa aad aag -nBJ -ldF -ldF -wcJ -jCr -nQn -bos -uHT +tNf +cCG +cCG +dzU +vAB +gsA +oZF +bOy kcp bTR iEg @@ -96527,8 +96410,8 @@ bTH foN cDZ bSv -hLu -wid +lGZ +tQN aag ajZ aaa @@ -96591,9 +96474,9 @@ aaa bdH aac aag -uDg -kac -xkc +sOq +oAr +pjr vxM tQi wee @@ -96629,9 +96512,9 @@ rWF uSB lzY wIC -pdp -ome -xiV +xXu +xjh +lFL aag ajY bdH @@ -96693,14 +96576,14 @@ aaa aaa aad aag -nBJ -ecS -ldF -bos -bos -bos -bos -uHT +tNf +qqi +cCG +oZF +oZF +oZF +oZF +bOy kcp lxW hPh @@ -96730,8 +96613,8 @@ tjw bTH bTV bSv -sGK -wid +kuI +tQN aag ajZ aaa @@ -96794,9 +96677,9 @@ bdH bdH aad aag -uDg -fco -qsp +sOq +eUe +vtH vxM jvP rDQ @@ -96832,9 +96715,9 @@ wIC wIC wHM wIC -dJy -aCA -xiV +pEp +rlY +lFL aag ajZ bdH @@ -96896,14 +96779,14 @@ aaa aaa aad aag -nBJ -eQR -ldF -bos -vkO -ibf -bos -rIw +tNf +fvs +cCG +oZF +uDl +eZK +oZF +gzE kcp wTN kZN @@ -96933,8 +96816,8 @@ ifb bTH bSv xVT -flr -wid +eEq +tQN aag ajZ aaa @@ -96997,9 +96880,9 @@ bdH bdH aad aag -uDg -lDT -xkc +sOq +naN +pjr vxM sbP sbP @@ -97023,7 +96906,7 @@ xuZ xuZ xuZ rEY -gxU +lfa giR vUP wIC @@ -97035,9 +96918,9 @@ wIC xgI dBQ wIC -oLf -hIG -xiV +gOu +tDq +lFL aag ajZ bdH @@ -97099,14 +96982,14 @@ aaa aaa aad aag -nBJ -ldF -eQR -bos -lBl -nEO -bos -gpO +tNf +cCG +fvs +oZF +ueH +oTn +oZF +luJ kcp oMi bAZ @@ -97135,9 +97018,9 @@ bSv aIX aIX bSv -xcI -sIu -wid +gib +yjl +tQN aag ajZ aaa @@ -97200,9 +97083,9 @@ bdH bdH aad aag -uDg -xkc -gkr +sOq +pjr +sjC vxM pas ncf @@ -97238,9 +97121,9 @@ wIC qqV nNg wIC -oDh -xas -xiV +tyH +yef +lFL aag ajZ bdH @@ -97302,14 +97185,14 @@ aaa aaa aad aag -nBJ -ldF -eQR -rqv -gpO -gpO -bos -gpO +tNf +cCG +fvs +jtv +luJ +luJ +oZF +luJ kcp kcp kcp @@ -97338,9 +97221,9 @@ bSv cop cop bSv -kxe -sGK -wid +oLa +kuI +tQN aag ajZ aaa @@ -97403,9 +97286,9 @@ bdH bdH aad aag -uDg -xkc -gkr +sOq +pjr +sjC vxM vxM vxM @@ -97441,9 +97324,9 @@ wIC wIC wIC wIC -oDh -nEc -xiV +tyH +pwx +lFL aag ajZ bdH @@ -97505,15 +97388,15 @@ aaa aaa aad aag -nBJ -ldF -eQR -bos -iWH -gpO -bos -gpO -nEZ +tNf +cCG +fvs +oZF +vfn +luJ +oZF +luJ +jSz kcp bTU gZK @@ -97541,9 +97424,9 @@ bSv kBY bTn bSv -mVh -mVh -wid +aGh +aGh +tQN aag ajZ aaa @@ -97606,12 +97489,12 @@ aaf aaf aag aag -uDg -cUl -xkc -ode -xkc -gNg +sOq +tnD +pjr +ugt +pjr +ixl vBm tJM viH @@ -97641,12 +97524,12 @@ jhI jfY bra wIC -eQm -rXQ -vky -oDh -pdp -xiV +ssx +sdP +htn +tyH +xXu +lFL aag aag aaf @@ -97704,19 +97587,19 @@ aaa aaa aaa aaa -nBJ -nBJ -nBJ -nBJ -nBJ -eQR -ldF -bos -bos -olW -bos -uHT -gUi +tNf +tNf +tNf +tNf +tNf +fvs +cCG +oZF +oZF +fCG +oZF +bOy +nkR kcp onY wdf @@ -97744,13 +97627,13 @@ bSv bSv bSv bSv -sGK -mVh -wid -wid -wid -wid -wid +kuI +aGh +tQN +tQN +tQN +tQN +tQN aaa aaa aaa @@ -97810,11 +97693,11 @@ adG adG adG adG -rvI -cYo -ode -gkr -gkr +xKo +pfy +ugt +sjC +sjC vBm vBm vBm @@ -97844,11 +97727,11 @@ jES vBJ qTQ wIC -oDh -pdp -vky -pdp -paJ +tyH +xXu +htn +xXu +xZs tuA tuA tuA @@ -97907,19 +97790,19 @@ aaa aaa aaa aaa -nBJ -ldF -jsE -rdN -eQR -eQR -eQR -ldF -sXq -rdN -rMO -uHT -hfv +tNf +cCG +sic +ydR +fvs +fvs +fvs +cCG +gPs +ydR +qiD +bOy +bxZ kcp xNz utK @@ -97944,16 +97827,16 @@ bBB bzA cBl bRU -mVh -iBu -sGK -mVh -mVh -mVh -sGK -gDX -sGK -wid +aGh +ixc +kuI +aGh +aGh +aGh +kuI +xow +kuI +tQN aaa aaa aaa @@ -98016,8 +97899,8 @@ akC akC akC akC -uvp -gkr +sLs +sjC vBm mvE tak @@ -98047,8 +97930,8 @@ vAG opF pDW wIC -oDh -lhj +tyH +iJb kCi kCi kCi @@ -98219,8 +98102,8 @@ sFf bbV bzz akC -pzc -gkr +qoj +sjC vBm qkn eRL @@ -98250,8 +98133,8 @@ vzj wIC wIC wIC -oDh -nYi +tyH +mWh kCi sDD kOv @@ -98422,8 +98305,8 @@ nIt adu aHZ akC -lDT -gkr +naN +sjC vBm rJN nJz @@ -98453,8 +98336,8 @@ aTg rFg kkv wIC -pdp -pdp +xXu +xXu kCi uAj qfa @@ -98625,8 +98508,8 @@ nkx bbZ btv akC -lCm -gkr +isz +sjC vBm vBm knO @@ -98656,8 +98539,8 @@ aTg wIC wIC wIC -pdp -iEa +xXu +vcl kCi eqI ssZ @@ -98828,9 +98711,9 @@ pvP adu aHZ akC -jdn -lgk -hMM +myy +dwX +sBD vBm rRr dFU @@ -98858,9 +98741,9 @@ wtY aTg jIT wIC -aCA -pdp -pdp +rlY +xXu +xXu kCi nwW btD @@ -99031,9 +98914,9 @@ adu adu aHZ akC -pek -rir -pek +soC +xkE +soC vBm hqU gcT @@ -99061,9 +98944,9 @@ yeR aTg nNg wIC -pjz -uTs -pjz +apx +wfd +apx kCi nRR btD @@ -99234,9 +99117,9 @@ nIt adu hxG akC -ibP -loE -cmr +sUI +ihF +xLp vBm vBm vBm @@ -99264,9 +99147,9 @@ wIC wIC wIC wIC -hrI -ioM -xCy +pVK +tqG +mGE kCi nNt vqC @@ -99437,10 +99320,10 @@ wmg adu cqQ afT -txy -rbp -cri -euL +gRB +jfn +oyg +rRg hiM hiM qRj @@ -99466,10 +99349,10 @@ xuZ pcj hXm fZq -iFA -sLx -twQ -twQ +kXV +wbT +xJK +xJK bpd bqT vZv @@ -99569,13 +99452,13 @@ xyw bHB xyw bcm -hOV -hOV -hOV -hOV -hOV -hOV -hOV +vAw +vAw +vAw +vAw +vAw +vAw +vAw cjK bSg aaa @@ -99640,10 +99523,10 @@ pvP adu frF akC -oUt -cmr -iPq -aMf +skO +xLp +lAX +tCi vka vka mPj @@ -99665,14 +99548,14 @@ awz vSN mPj rWs -inh +hIh ewr lPC mgy -qoN -tVx -feG -pPy +hCv +asV +cxi +hLD kCi nRR btM @@ -99734,16 +99617,16 @@ aaa aaa aaa aaa -sGw -nmp -eWs -usq -rQw -pOH -sbt -smU -nZR -lpl +wZa +lqd +nqC +wcx +nhU +ybq +mch +fGG +wBl +sbb xyw bHB gjm @@ -99772,15 +99655,15 @@ bcb bHB btO bcm -sCW -nvX -tTC -jdu -tWd -aPe -hOV -ygv -kyP +sBP +eVY +nrD +xUb +spn +sWy +vAw +fgA +sNF aaa aaa aaa @@ -99844,10 +99727,10 @@ tyK iKI akC akC -aMf -hSv -xoB -xoB +tCi +fwT +hAd +hAd kzy wIQ jHh @@ -99871,11 +99754,11 @@ vka jHh lnt ckP -xTx -xTx -cyv -eKZ -xTx +izT +izT +aWY +uFb +izT kCi cfk uws @@ -99937,16 +99820,16 @@ aaa aaa aaa aaa -sGw -klT -eWs -njO -riC -eqd -goY -fqJ -nOX -xcV +wZa +uJT +nqC +kWG +hDA +qvl +bQF +gqy +jWn +yeO xyw bHB wqh @@ -99975,15 +99858,15 @@ bcc bHB aYt bcm -xsQ -tTC -tTC -tTC -tTC -tTC -iho -uKH -kyP +aFx +nrD +nrD +nrD +nrD +nrD +vUs +cUf +sNF aaa aaa aaa @@ -100046,12 +99929,12 @@ akC akC akC akC -ehM -cmr -iPq -oQJ -xoB -xoB +paN +xLp +lAX +qEa +hAd +hAd vSN jHh lnt @@ -100073,12 +99956,12 @@ sTo wIQ jHh jUY -xTx -xTx -hrI -tVx -feG -bxY +izT +izT +pVK +asV +cxi +sCs kCi kCi kCi @@ -100140,16 +100023,16 @@ aaa aaa aaa aaa -sGw -xzB -bfs -bYW -bYW -bYW -bYW -kNf -vpT -xcV +wZa +jca +ezR +veX +veX +veX +veX +duX +dCb +yeO xyw bHB sXB @@ -100178,15 +100061,15 @@ fVz bHB bBN bcm -uPQ -tTC -tTC -tTC -tTC -gzN -hOV -uXm -kyP +vUW +nrD +nrD +nrD +nrD +voo +vAw +qip +sNF aaa aaa aaa @@ -100246,15 +100129,15 @@ adG adG adG adG -ltw -cmr -oRm -cmr -cmr -iPq -oQJ -pcc -xoB +pbd +xLp +bUJ +xLp +xLp +lAX +qEa +rXM +hAd xDn uwN wiN @@ -100276,15 +100159,15 @@ awz oWg uwN jUY -xTx -lym -hrI -lIQ -noy -rcG -lwY -feG -kfB +izT +hTj +pVK +mSG +ois +xnG +vef +cxi +tkX tuA tuA tuA @@ -100343,16 +100226,16 @@ aaa aaa aaa aaa -sGw -xzB -bfs -qfQ -cJm -jwi -bYW -phw -xMG -xcV +wZa +jca +ezR +fKv +mot +ndc +veX +cIl +dej +yeO xyw bHB aZO @@ -100381,15 +100264,15 @@ bGF bHB aYt bcm -vKI -tTC -hhd -ybm -ffq -rsV -hOV -mLN -kyP +oMp +nrD +rRP +tqs +ciO +hAu +vAw +wXb +sNF aaa aaa aaa @@ -100448,16 +100331,16 @@ aag aag aag aag -cZe -cmr -lSX -uaA -snx -snx -fLt -cmr -fYr -xoB +btL +xLp +rTj +uNd +cET +cET +hyj +xLp +oTN +hAd pNa iCu awz @@ -100479,16 +100362,16 @@ awz ceE eMP faX -xTx -tIX -ioM -abn -ioM -lIQ -qOY -xZH -mSr -nLp +izT +reF +tqG +bjH +tqG +mSG +lGW +pep +bBp +teI aag aag aag @@ -100546,16 +100429,16 @@ aaa aaa aaa aaa -sGw -xzB -bfs -wVN -qxI -qmM -bYW -wFN -wFN -tGH +wZa +jca +ezR +xwU +sIw +bVk +veX +djW +djW +lmy hmy bHB aZP @@ -100584,15 +100467,15 @@ bGG bHB btO bcm -kQr -tTC -tTC -tTC -tTC -tTC -hOV -uKH -kyP +odT +nrD +nrD +nrD +nrD +nrD +vAw +cUf +sNF aaa aaa aaa @@ -100651,9 +100534,9 @@ aag aag aag aag -cZe -cCL -vDz +btL +lZD +vIE kcH kcH kcH @@ -100689,9 +100572,9 @@ aES aES aES aES -lIQ -xZH -nLp +mSG +pep +teI aag aag aag @@ -100749,16 +100632,16 @@ aaa aaa aaa aaa -sGw -onv -bfs -pjh -qxI -qxI -iXm -qxI -qxI -vvX +wZa +tXA +ezR +fiz +sIw +sIw +cWt +sIw +sIw +iny xyw bHB aZQ @@ -100787,15 +100670,15 @@ bGH bHB btO bcm -qhG -krJ -jOt -tTC -tTC -tTC -hOV -uKH -kyP +lim +bOb +hvP +nrD +nrD +nrD +vAw +cUf +sNF aaa aaa aaa @@ -100851,12 +100734,12 @@ aaa aad aag aag -cZe -cZe -cZe -cZe -iPq -cmr +btL +btL +btL +btL +lAX +xLp kcH kcH kcH @@ -100892,12 +100775,12 @@ tKr uNg cLN aES -hrI -tVx -nLp -nLp -nLp -nLp +pVK +asV +teI +teI +teI +teI aag aag ajZ @@ -100952,16 +100835,16 @@ aaa aaa aaa aaa -sGw -xzB -bfs -wes -qxI -dKO -ykv -jPu -qKl -pPd +wZa +jca +ezR +kGh +sIw +aDG +lnG +bCI +whX +qHZ xyw bHB aZR @@ -100990,15 +100873,15 @@ bGI bHB xyw bcm -gOk -tTC -tTC -tTC -tTC -bjg -hOV -siT -kyP +vyZ +nrD +nrD +nrD +nrD +cOy +vAw +raT +sNF aaa aaa aaa @@ -101054,12 +100937,12 @@ aaa aad aag aag -cZe -ivu -gSy -ltw -iPq -cmr +btL +fyq +pcR +pbd +lAX +xLp kcH rlf soq @@ -101095,12 +100978,12 @@ iTD vCO vCO jxB -hrI -tVx -hrI -hrI -hrI -nLp +pVK +asV +pVK +pVK +pVK +teI aag aag ajZ @@ -101155,16 +101038,16 @@ aaa aaa aaa aaa -sGw -dvD -bfs -bfs -sir -bfs -bfs -eWs -eWs -eWs +wZa +gtF +ezR +ezR +ngc +ezR +ezR +nqC +nqC +nqC xyw bHB aZO @@ -101192,16 +101075,16 @@ baI bGF bHB eEc -hOV -hOV -tTC -tSm -tcd -tTC -rsV -hOV -siT -kyP +vAw +vAw +nrD +wkP +ade +nrD +hAu +vAw +raT +sNF aaa aaa aaa @@ -101257,12 +101140,12 @@ aaa aad aag aag -cZe -nHu -sit -snx -oVY -cGA +btL +hpa +lyL +cET +yak +eAa kcH rBa nPs @@ -101298,12 +101181,12 @@ vCO vCO vCO jxB -gUu -dWc -lVW -kcs -rDH -nLp +cBz +tgh +kfV +qyw +tcn +teI aag aag ajZ @@ -101358,16 +101241,16 @@ aaa aaa aaa aaa -sGw -fea -eWs -rsS -xzB -mKs -sCT -rXU -rEt -eWs +wZa +rIG +nqC +xWI +jca +kXe +vJO +uKl +jsj +nqC wlb bHB aZP @@ -101395,16 +101278,16 @@ baI bGG bHB bGK -rrh -xKG -gyH -rSx -dCz -tTC -lDA -hOV -siT -kyP +qny +kYb +nGz +cSl +nMN +nrD +sGm +vAw +raT +sNF aaa aaa aaa @@ -101460,18 +101343,18 @@ aaa aad aag aag -cZe -lSX -nRE -cmr -cmr -sWw +btL +rTj +kCo +xLp +xLp +jcs kcH rIW oGx wvU yiX -nrb +vLX hyQ aic aov @@ -101501,12 +101384,12 @@ wmT jhW mWD jxB -xBK -moc -pYQ -tVx -hrI -nLp +rgL +dNy +koa +asV +pVK +teI aag aag ajZ @@ -101561,16 +101444,16 @@ aaa aaa aaa aaa -sGw -dvD -kWI -xzB -dvD -ipk -dvD -xzB -dvD -meT +wZa +gtF +vkQ +jca +gtF +jyU +gtF +jca +gtF +jUK wqh bHB aZQ @@ -101598,16 +101481,16 @@ baI bGH bHB cuy -rrh -iNR -uCR -tTC -tTC -tTC -fca -vjS -xee -kyP +qny +slu +kXq +nrD +nrD +nrD +wIg +tcY +tVl +sNF aaa aaa aaa @@ -101661,12 +101544,12 @@ aaa aaa aaa aad -nTT -nTT -cZe -vfS -cmr -cmr +aXO +aXO +btL +ouy +xLp +xLp agj agj agj @@ -101706,12 +101589,12 @@ aES aES aES aES -nVn -cZO -hrI -nLp -nLp -nLp +qFr +fqP +pVK +teI +teI +teI ajZ aaa aaa @@ -101764,16 +101647,16 @@ aaa aac aaf aaf -sGw -xzB -eWs -omx -xzB -rAw -qNK -rEt -sCT -eWs +wZa +jca +nqC +oqW +jca +jwa +uIZ +jsj +vJO +nqC pyC bHB aZR @@ -101801,16 +101684,16 @@ baI bGI bHB kwQ -rrh -iNR -uCR -rDR -tTC -wyz -gzN -hOV -uKH -kyP +qny +slu +kXq +dvN +nrD +wJT +voo +vAw +cUf +sNF aaf aaf ajY @@ -101864,11 +101747,11 @@ aaa aaa aaa aad -tvt -fRg -peM -jUV -cmr +huD +gRq +cmb +yai +xLp agj agj jbN @@ -101905,16 +101788,16 @@ aVU aRq bHG ceK -sxD +aWj bhJ bHG aES aES -fMU -hrI -dPd -rLH -rwZ +jLB +pVK +exx +nrg +vYk ajZ aaa aaa @@ -101966,17 +101849,17 @@ aaa aaa aad aag -sGw -sGw -xzB -eWs -eWs -sOr -eWs -eWs -eWs -eWs -eWs +wZa +wZa +jca +nqC +nqC +nvA +nqC +nqC +nqC +nqC +nqC cCE bHB aZO @@ -102004,17 +101887,17 @@ baI bGF bHB iAw -hOV -hOV -tTC -tTC -tTC -jRp -rsV -hOV -kzs -kyP -kyP +vAw +vAw +nrD +nrD +nrD +xun +hAu +vAw +rLi +sNF +sNF aag ajZ aaa @@ -102067,11 +101950,11 @@ aaa aaa aaa aad -tvt -jhR -fix -pfL -cmr +huD +esl +wBy +nRC +xLp agj kyR agc @@ -102113,11 +101996,11 @@ bpe brS rOs aES -dWA -hrI -hrI -dPO -rwZ +cGC +pVK +pVK +bxw +vYk ajZ aaa aaa @@ -102169,10 +102052,10 @@ aaa aaa aad aag -sGw -dvD -xzB -eWs +wZa +gtF +jca +nqC aas alI agw @@ -102208,16 +102091,16 @@ bGG bHB btO xjW -uTk -tTC -tTC -tTC -cyR -tTC -hOV -qpV -hSb -kyP +rDC +nrD +nrD +nrD +kCN +nrD +vAw +iDD +rhf +sNF aag ajZ aaa @@ -102270,11 +102153,11 @@ aaa aaa aaa aad -tvt -oyX -vBC -rhm -she +huD +fcl +dXm +thK +bTL agj ogK qgr @@ -102316,11 +102199,11 @@ aES aES aES aES -tPc -jwq -vwU -uew -rwZ +vMw +htB +fII +fpj +vYk ajZ aaa aaa @@ -102372,10 +102255,10 @@ aaa aaa aad aag -sGw -dvD -xzB -eWs +wZa +gtF +jca +nqC aga alQ amR @@ -102411,16 +102294,16 @@ bGH bHB btO bcm -gBU -tTC -tTC -efJ -tTC -sHe -hOV -uKH -vyr -kyP +gnI +nrD +nrD +uqW +nrD +dkv +vAw +cUf +lHU +sNF aag ajZ aaa @@ -102473,11 +102356,11 @@ aaa aaa aaa aad -cZe -kwg -cmr -cmr -jkq +btL +wEp +xLp +xLp +jQa agj nCx tYM @@ -102514,16 +102397,16 @@ ceK lcy iTw ceK -sxD +aWj bhJ bHG nis aES -xGF -tVx -jne -rDH -nLp +cMk +asV +taM +tcn +teI ajZ aaa aaa @@ -102575,10 +102458,10 @@ aaa aaa aad aag -sGw -fzx -dWJ -eWs +wZa +ptr +pvv +nqC aav amj agG @@ -102590,7 +102473,7 @@ xjK bHB btO bdU -aog +hPf bdU bfV baM @@ -102614,16 +102497,16 @@ bcb bHB aYt bcm -ohI -tTC -tTC -tTC -tTC -tml -hOV -uKH -hZZ -kyP +uDT +nrD +nrD +nrD +nrD +lRV +vAw +cUf +uTS +sNF aag ajZ aaa @@ -102676,11 +102559,11 @@ bdH aaa aaa aad -tvt -gJf -cmr -hYE -vAz +huD +szs +xLp +riI +nPF agj nXO hvH @@ -102722,11 +102605,11 @@ bpe brS cpj aES -hro -tVx -tNB -ioM -rwZ +jLa +asV +whv +tqG +vYk ajZ aaa aaa @@ -102778,10 +102661,10 @@ aaa aaa aad aag -sGw -dvD -nsd -eWs +wZa +gtF +lmW +nqC aay adg amU @@ -102817,16 +102700,16 @@ bcc bHB xyw bcm -grT -tTC -tTC -ove -tTC -rsV -hOV -siT -bUQ -kyP +prS +nrD +nrD +jJl +nrD +hAu +vAw +raT +vtL +sNF aag ajZ aaa @@ -102879,11 +102762,11 @@ bdH aaa aaa aad -tvt -hsu -cmr -pFq -iPq +huD +dlW +xLp +xxr +lAX agj dyj fnv @@ -102925,11 +102808,11 @@ aES aES aES aES -uhh -cZO -ppG -ioM -rwZ +uyK +fqP +psl +tqG +vYk ajZ aaa aaa @@ -102981,10 +102864,10 @@ aaa aaa aad aag -sGw -dvD -kFU -eWs +wZa +gtF +ykB +nqC aaD ahB ahB @@ -103020,16 +102903,16 @@ fVz bHB vpW bcm -cKm -tTC -cOh -tTC -tTC -dPq -hOV -siT -xFt -kyP +gTi +nrD +iLv +nrD +nrD +lju +vAw +raT +oPu +sNF aag ajZ aaa @@ -103082,11 +102965,11 @@ bdH aaa aaa aad -tvt -hJD -cmr -fFQ -pMH +huD +gSq +xLp +nYu +hYw agj mXj mXj @@ -103123,16 +103006,16 @@ ceK wVB psa ceK -sxD +aWj bhJ bHG brS aES -jrI -tVx -raO -ioM -rwZ +cuk +asV +bwM +tqG +vYk ajZ aaa aaa @@ -103184,10 +103067,10 @@ aaa aaa aad aag -sGw -xzB -xer -eWs +wZa +jca +kog +nqC aaK cfN afe @@ -103199,7 +103082,7 @@ wqh bHB xyw aho -vWc +vFS geg aEj aho @@ -103223,16 +103106,16 @@ jSo bHB xyw bcm -qKb -tTC -xQj -tTC -tTC -uTk -hOV -siT -xFt -kyP +xHr +nrD +xsy +nrD +nrD +rDC +vAw +raT +oPu +sNF aag ajZ aaa @@ -103285,11 +103168,11 @@ aaa aaa aaa aad -cZe -bLc -fOK -pWd -iPq +btL +rXs +qKT +bOz +lAX agj mXj pjR @@ -103331,11 +103214,11 @@ tJi ivf bpe aES -pok -tVx -kzc -gen -nLp +gvj +asV +rDp +rkF +teI ajZ aaa aaa @@ -103387,10 +103270,10 @@ aaa aaa aad aag -sGw -nkj -dvD -eWs +wZa +tYh +gtF +nqC ceQ ceU aff @@ -103402,7 +103285,7 @@ wqh bHB ezQ eXq -fAa +mdT oYp oZp eXq @@ -103426,16 +103309,16 @@ xyw bHB aYt bcm -jNG -tTC -vMb -xYE -iuI -lDA -hOV -siT -fFU -kyP +iVQ +nrD +oqn +era +uRh +sGm +vAw +raT +tdN +sNF aag ajZ aaa @@ -103488,11 +103371,11 @@ aaa bdH aaa aad -tvt -nCM -cmr -wKb -pri +huD +wcs +xLp +meQ +eAK agj qlI cdB @@ -103534,11 +103417,11 @@ aES aES aES aES -gBd -tVx -fjz -hPu -rwZ +vaH +asV +lUr +vGV +vYk ajZ aaa aaa @@ -103590,10 +103473,10 @@ aac aaf aag aag -sGw -vEI -dvD -eWs +wZa +pau +gtF +nqC ceR ceU aff @@ -103604,7 +103487,7 @@ bJo mVE rgy baN -anU +iGO gEg imy gEg @@ -103633,12 +103516,12 @@ bcm bcm bcm bcm -hOV -pIC -hOV -qpV -nGk -kyP +vAw +xkZ +vAw +iDD +vrb +sNF aag aag aaf @@ -103691,11 +103574,11 @@ bdH bdH aaa aad -tvt -mPw -cmr -wGa -bAy +huD +nWx +xLp +wvt +rLl agj eBE hvH @@ -103732,16 +103615,16 @@ bFC jUb qjz ceK -sxD +aWj bhJ bHG gCP aES -imt -noE -dcT -hrI -rwZ +kqI +rJf +kkg +pVK +vYk ajZ aaa aaa @@ -103793,10 +103676,10 @@ aad aag aag aag -sGw -oGf -dvD -eWs +wZa +ctW +gtF +nqC abd adk afu @@ -103808,7 +103691,7 @@ sqa hBF hCt eXq -qYN +cIq lsD lkf eXq @@ -103836,12 +103719,12 @@ lRX rux sEt bcm -qyG -bUQ -bUQ -siT -bUQ -kyP +uhS +vtL +vtL +raT +vtL +sNF aag aag aag @@ -103894,11 +103777,11 @@ bdH bdH bdH aad -tvt -qwY -cmr -cmr -mVA +huD +ruD +xLp +xLp +wax agj kSH hvH @@ -103940,11 +103823,11 @@ mhm brS bpe aES -ioM -cZO -pfD -pfD -rwZ +tqG +fqP +oHy +oHy +vYk ajZ aaa aaa @@ -103996,10 +103879,10 @@ aad aag aag aag -sGw -fzT -dvD -eWs +wZa +dDQ +gtF +nqC uZQ uZQ bJo @@ -104011,7 +103894,7 @@ wqh bHB xyw aho -dkj +xWV siz gYt aho @@ -104039,12 +103922,12 @@ myo dtH eyR bcm -rQs -xFt -bUQ -uKH -gsp -kyP +wEA +oPu +vtL +cUf +mkk +sNF aag aag aag @@ -104097,11 +103980,11 @@ bdH bdH bdH aad -cZe -cZe -cZe -tiX -vcI +btL +btL +btL +guv +dYM agj ikQ hvH @@ -104143,11 +104026,11 @@ aES aES aES aES -ied -cZO -nLp -nLp -nLp +mOw +fqP +teI +teI +teI ajZ aaa aaa @@ -104199,10 +104082,10 @@ aad aag aag aag -sGw -iPf -klT -eWs +wZa +bqM +uJT +nqC cdE xSI uZQ @@ -104242,12 +104125,12 @@ mhd aYt tuN fPn -xFt -xFt -bUQ -uKH -eLC -kyP +oPu +oPu +vtL +cUf +vRF +sNF aag aag aag @@ -104302,9 +104185,9 @@ aaa aad aag aag -cZe -cmr -iNk +btL +xLp +udH agj muV hvH @@ -104341,14 +104224,14 @@ aWq aXb aGr ceK -sxD +aWj bhJ bHG cWy aES -hrI -tVx -nLp +pVK +asV +teI aag aag ajZ @@ -104402,10 +104285,10 @@ aad aag aag aag -sGw -cqp -xzB -smH +wZa +rgC +jca +qlt adg amp uZQ @@ -104445,12 +104328,12 @@ omP aYt bOC bcm -bUQ -xFt -bUQ -uKH -rVc -kyP +vtL +oPu +vtL +cUf +mod +sNF aag aag aag @@ -104505,9 +104388,9 @@ aaa aad aag aag -cZe -huD -vAz +btL +qyj +nPF agj mXj fnv @@ -104515,7 +104398,7 @@ hvH hvH iNY hvH -hmV +ofp mXj agj aic @@ -104549,9 +104432,9 @@ eBd brS cpj aES -luE -wgO -nLp +eqh +hwQ +teI aag aag ajZ @@ -104605,10 +104488,10 @@ aad aag aag aag -sGw -jOq -xzB -eWs +wZa +vLO +jca +nqC hSL agn afx @@ -104620,7 +104503,7 @@ kCm bHB btO bea -aoN +jzb bea bfZ baS @@ -104648,12 +104531,12 @@ ivg llO kSv bcm -emC -dZZ -xmn -uKH -xFt -kyP +oyJ +ter +tVJ +cUf +oPu +sNF aag aag aag @@ -104708,9 +104591,9 @@ aaa aad aag aag -cZe -pcf -vAz +btL +cZw +nPF agj agj agj @@ -104752,9 +104635,9 @@ aES aES aES aES -hXD -tYV -nLp +fDT +eKi +teI aag aag ajZ @@ -104808,10 +104691,10 @@ aad aag aag aag -sGw -dvD -qig -eWs +wZa +gtF +kil +nqC eXq adR eXq @@ -104852,11 +104735,11 @@ wXT cdA bcm bcm -emC -emC -mTL -xFt -kyP +oyJ +oyJ +kjE +oPu +sNF aag aag aag @@ -104911,9 +104794,9 @@ aaa aad aag aag -cZe -uTE -fZy +btL +egW +kUr gpY uBi wYA @@ -104955,9 +104838,9 @@ baw oaK nUn pgD -tVx -hrI -nLp +asV +pVK +teI aag aag ajZ @@ -105011,10 +104894,10 @@ aad aag aag aag -sGw -dvD -dvD -eWs +wZa +gtF +gtF +nqC abG aeh afy @@ -105056,10 +104939,10 @@ aYt aYt lrX bcm -jGQ -siT -fFU -kyP +oin +raT +tdN +sNF aag aag aag @@ -105114,9 +104997,9 @@ bdH aad aag aag -cZe -cmr -vAz +btL +xLp +nPF gpY uac vFw @@ -105158,9 +105041,9 @@ aZz wUP lrF pgD -cZO -hrI -nLp +fqP +pVK +teI aag aag ajZ @@ -105214,10 +105097,10 @@ aad aag aag aag -sGw -dvD -klT -eWs +wZa +gtF +uJT +nqC abH aer agf @@ -105259,10 +105142,10 @@ btO btO uII fPn -htq -siT -nGk -kyP +uwi +raT +vrb +sNF aag aag aag @@ -105317,9 +105200,9 @@ abs abs abs abs -cZe -aMf -wby +btL +tCi +elF gpY mto acW @@ -105361,9 +105244,9 @@ baw sgU baw pgD -cyv -eKZ -nLp +aWY +uFb +teI tQV tQV tQV @@ -105417,10 +105300,10 @@ aag aag aag aag -sGw -dvD -sZc -dGP +wZa +gtF +fgv +loQ acq aeJ azl @@ -105462,10 +105345,10 @@ aYt puI iWx bcm -ymg -uKH -bUQ -kyP +oYP +cUf +vtL +sNF aag aag aag @@ -105620,10 +105503,10 @@ aag aag aag aag -sGw -dvD -iQJ -eWs +wZa +gtF +pTD +nqC acu aeh afF @@ -105665,10 +105548,10 @@ cdA bcm bcm bcm -emC -wuh -fgU -kyP +oyJ +khh +mPW +sNF aag aag aag @@ -105823,10 +105706,10 @@ aag aag aag aag -sGw -nHX -cEA -eWs +wZa +cpG +mcs +nqC acM aer agf @@ -105866,12 +105749,12 @@ apE icp fER bcm -emC -hVL -bUQ -uKH -hSb -kyP +oyJ +ceI +vtL +cUf +rhf +sNF aag aag aag @@ -106026,10 +105909,10 @@ aag aag aag aag -sGw -xzB -hRA -eWs +wZa +jca +kGZ +nqC acZ aeN azl @@ -106069,12 +105952,12 @@ uiT aYt jyR bcm -fUZ -xFt -bUQ -uKH -eyM -kyP +aPd +oPu +vtL +cUf +iBs +sNF aag aag aag @@ -106229,10 +106112,10 @@ aag aag aag aag -sGw -xzB -ghA -eWs +wZa +jca +fCZ +nqC vhw khD azw @@ -106272,12 +106155,12 @@ apL aYt iKb bcm -umk -xFt -bUQ -siT -qBl -kyP +dUA +oPu +vtL +raT +gKl +sNF aag aag aag @@ -106432,10 +106315,10 @@ aag aag aag aag -sGw -nkj -rjF -eWs +wZa +tYh +bQd +nqC eXq eXq eXq @@ -106475,12 +106358,12 @@ uiT aYt xNj bcm -hSb -xFt -bUQ -uKH -pTX -kyP +rhf +oPu +vtL +cUf +eAP +sNF aag aag aag @@ -106635,10 +106518,10 @@ aag aag aag aag -sGw -xzB -oes -eWs +wZa +jca +gzx +nqC aRu aRu aRu @@ -106678,12 +106561,12 @@ fpW llO vml bcm -emC -rVc -rVc -uKH -nBF -kyP +oyJ +mod +mod +cUf +rwh +sNF aag aag aag @@ -106838,10 +106721,10 @@ aag aag aag aag -sGw -dvD -oes -eWs +wZa +gtF +gzx +nqC aRu aRu aRu @@ -106877,16 +106760,16 @@ bGO bHB uAb bcm -emC -hvx -emC -emC -emC -emC -emC -qpV -bUQ -kyP +oyJ +riv +oyJ +oyJ +oyJ +oyJ +oyJ +iDD +vtL +sNF aag aag aag @@ -107041,10 +106924,10 @@ aag aag aag aag -sGw -dvD -iQJ -eWs +wZa +gtF +pTD +nqC aRu aRu aRu @@ -107080,16 +106963,16 @@ bcp bHB xAY aYz -emC -bUQ -wDP -mHF -hhg -emC -qBl -uKH -bUQ -kyP +oyJ +vtL +wwV +epq +xBT +oyJ +gKl +cUf +vtL +sNF aag aag aag @@ -107244,10 +107127,10 @@ aag aag aag aag -sGw -xzB -oes -eWs +wZa +jca +gzx +nqC aRu aRu aRu @@ -107283,16 +107166,16 @@ bcc bHB xAY aYz -emC -vFI -xFt -xFt -bUQ -wdG -xFt -siT -nGk -kyP +oyJ +dSC +oPu +oPu +vtL +ltw +oPu +raT +vrb +sNF aag aag aag @@ -107372,12 +107255,12 @@ aiX atV amO oXd -tsr -tsr -tsr -tsr -tsr -tsr +nPh +nPh +nPh +nPh +nPh +nPh aRE qVC qVC @@ -107447,10 +107330,10 @@ aag aag aag aag -sGw -fzx -cEA -eWs +wZa +ptr +mcs +nqC aRu aRu aRu @@ -107486,16 +107369,16 @@ fVz bHB uII ruz -emC -jev -aML -xFt -oFn -emC -jaI -siT -xFt -kyP +oyJ +vnj +xDy +oPu +epp +oyJ +oUM +raT +oPu +sNF aag aag aag @@ -107575,12 +107458,12 @@ aiX ayT amO avj -tsr -sOL -jIC -lFr -wTu -tsr +nPh +ipF +aJB +osQ +eVP +nPh aSq aTE aTE @@ -107650,10 +107533,10 @@ aag aag aag aag -sGw -xzB -rsP -eWs +wZa +jca +jLY +nqC aRu aRu aRu @@ -107689,16 +107572,16 @@ xyw bHB uII wrT -emC -fqb -ury -dFW -mvi -emC -daF -siT -fFU -kyP +oyJ +krm +hiU +bkB +kel +oyJ +ygo +raT +tdN +sNF aag aag aag @@ -107778,12 +107661,12 @@ aiX lzj amO bYe -fyT -xIV -xIV -edV -reM -tsr +jSF +uZb +uZb +uwk +nnT +nPh aSt aTE aTE @@ -107847,16 +107730,16 @@ aaa bdH aaY aad -sGw -sGw -sGw -sGw -sGw -sGw -sGw -dvD -iOX -eWs +wZa +wZa +wZa +wZa +wZa +wZa +wZa +gtF +oiR +nqC aRu aRu aRu @@ -107898,16 +107781,16 @@ lFp lFp lFp lFp -ljm -siT -xFt -kyP -kyP -kyP -kyP -kyP -kyP -kyP +pFx +raT +oPu +sNF +sNF +sNF +sNF +sNF +sNF +sNF ajZ aaY bdH @@ -107981,12 +107864,12 @@ aiX ukh amO nxK -tsr -iPN -dbX -rGL -cyL -tsr +nPh +tHA +mkb +iKB +fdD +nPh aSx aTE aTG @@ -108050,16 +107933,16 @@ aaa bdH aaY aad -sGw -lrH -dvD -xzB -xzB -xzB -dvD -dvD -wsz -eWs +wZa +iJA +gtF +jca +jca +jca +gtF +gtF +qXg +nqC aRu aRu aRu @@ -108101,16 +107984,16 @@ kjD gHl qoL lFp -hSb -siT -xFt -bUQ -bUQ -gQQ -bUQ -cOt -uSU -kyP +rhf +raT +oPu +vtL +vtL +rYK +vtL +gew +mPB +sNF ajZ aaY bdH @@ -108184,19 +108067,19 @@ aiX ayU amO avm -tsr -tsr -vOY -tsr -tsr -tsr -lIj -mVF -lIj -lIj -lIj -lIj -lIj +nPh +nPh +jpX +nPh +nPh +nPh +mSu +tms +mSu +mSu +mSu +mSu +mSu pgD nUv aJU @@ -108253,16 +108136,16 @@ aaa bdH aaY aad -sGw -xzB -xzB -dvD -dvD -sZc -abj -mUE -coo -eWs +wZa +jca +jca +gtF +gtF +fgv +ful +eSZ +gHx +nqC aRu aRu aRu @@ -108304,16 +108187,16 @@ aId aId poA lFp -hSb -uGU -kGi -kGi -khI -kGi -kGi -kow -qBl -kyP +rhf +lJb +oPx +oPx +xHC +oPx +oPx +pSK +gKl +sNF ajZ aaY bdH @@ -108387,19 +108270,19 @@ aiX mQH amT ioX -lIj -tBY -gkE -cTM -rqD -pcY -srO -srO -lWO -wjQ -uag -uag -jnh +mSu +hIT +upv +wxn +xtI +cJz +vOb +vOb +tEo +ikL +alY +alY +eFg pgD lza gZw @@ -108456,15 +108339,15 @@ aaa bdH aaa aad -sGw -dvD -dvD -eWs -jri -iOX -kIl -jmz -hsK +wZa +gtF +gtF +nqC +oFv +oiR +gEk +nVC +rye wfE wfE wfE @@ -108491,11 +108374,11 @@ qjN qjN oWf gfW -xgJ +tKu fdZ bnS fdZ -tzx +tbd gfW bLT cbQ @@ -108514,9 +108397,9 @@ nmY nmY nmY nmY -siT -bUQ -kyP +raT +vtL +sNF ajZ aaa bdH @@ -108590,19 +108473,19 @@ aiX nVe akV bRs -lIj -lIj -dvZ -lIj -lIj -lIj -lIj -lIj -lIj -lIj -lIj -lIj -tWF +mSu +mSu +aux +mSu +mSu +mSu +mSu +mSu +mSu +mSu +mSu +mSu +gRz pgD nUv aJU @@ -108659,9 +108542,9 @@ aaa bdH aaa aad -sGw -dvD -dvD +wZa +gtF +gtF wfE wfE rXv @@ -108694,11 +108577,11 @@ ham qjN oDY omo -fvJ +epW fdZ ixj fdZ -bET +kmZ gfW bGT bHH @@ -108713,13 +108596,13 @@ nmY ouw jDP aId -xHS +ctX tEd vjW nmY -siT -bUQ -kyP +raT +vtL +sNF ajZ aaa bdH @@ -108765,12 +108648,12 @@ adq aei aka aWn -njn -njn -njn -njn -njn -njn +uIw +uIw +uIw +uIw +uIw +uIw oGC awW acW @@ -108812,12 +108695,12 @@ baw sgU baw baw -nIN -nIN -nIN -nIN -nIN -nIN +ykg +ykg +ykg +ykg +ykg +ykg hXV yhI rRz @@ -108862,9 +108745,9 @@ aaa bdH aaa aad -sGw -dvD -dvD +wZa +gtF +gtF wfE mcL jOo @@ -108899,7 +108782,7 @@ qyD omo blZ bqN -nTo +gtA bqN bwR gfW @@ -108920,9 +108803,9 @@ dKK dKK xry nmY -siT -bUQ -kyP +raT +vtL +sNF ajZ aaa bdH @@ -108968,12 +108851,12 @@ adq apr apr aoV -njn -rWz -rWz -rWz -tWM -njn +uIw +qZx +qZx +qZx +omL +uIw aea oGC xjD @@ -109015,12 +108898,12 @@ aZz nsc baw cxk -nIN -rgL -rgL -rgL -nTc -nIN +ykg +iSe +iSe +iSe +wWD +ykg wTy wTy wTy @@ -109065,9 +108948,9 @@ aaa bdH aaa aad -sGw -xiH -xzB +wZa +pxO +jca wfE dgl jOo @@ -109123,9 +109006,9 @@ vXf qGw uZV nmY -uKH -bUQ -kyP +cUf +vtL +sNF ajZ aaa bdH @@ -109171,12 +109054,12 @@ adq aub akc euO -njn -rWz -rWz -rWz -rWz -njn +uIw +qZx +qZx +qZx +qZx +uIw oGC sHp oGC @@ -109218,12 +109101,12 @@ baw mnA baw baw -nIN -rgL -rgL -rgL -rgL -nIN +ykg +iSe +iSe +iSe +iSe +ykg crh csI nqG @@ -109268,9 +109151,9 @@ aaa bdH aaa aad -sGw -jOq -xzB +wZa +vLO +jca wfE krp jOo @@ -109326,9 +109209,9 @@ kyh dKK xry nmY -qpV -hNh -kyP +iDD +sZQ +sNF ajZ aaa bdH @@ -109375,19 +109258,19 @@ avd akt awW qHq -rWz -rWz -rWz -rWz -njn -vzO -njn -njn -njn -njn -njn -njn -njn +qZx +qZx +qZx +qZx +uIw +ukk +uIw +uIw +uIw +uIw +uIw +uIw +uIw dtM aii ajC @@ -109413,19 +109296,19 @@ aoe aEI aii aik -nIN -nIN -nIN -nIN -nIN -nIN -rBD -nIN -nIN -rgL -rgL -rgL -rgL +ykg +ykg +ykg +ykg +ykg +ykg +iUS +ykg +ykg +iSe +iSe +iSe +iSe eOM baw sMM @@ -109471,9 +109354,9 @@ aaa bdH aaa aad -sGw -eoE -xzB +wZa +pkx +jca wfE eiP qOp @@ -109529,9 +109412,9 @@ hgD pSQ dOe nmY -rEK -bba -kyP +bFf +hlm +sNF ajZ aaa bdH @@ -109577,20 +109460,20 @@ adq aGP aka aWu -njn -rWz -rWz -rWz -rWz -njn -gur -osn -vDt -puJ -deA -olC -ujf -njn +uIw +qZx +qZx +qZx +qZx +uIw +oOh +juV +veN +ljl +iSr +vGw +fKL +uIw mOL aii ajC @@ -109616,20 +109499,20 @@ aoe dtM aii ajC -nIN -cHn -cHn -gNo -aZv -gNo -xzh -dcZ -nIN -rgL -rgL -rgL -rgL -nIN +ykg +qcM +qcM +gxS +dvx +gxS +iov +nGH +ykg +iSe +iSe +iSe +iSe +ykg hWB yhI qSX @@ -109674,9 +109557,9 @@ aaa bdH aaa aad -sGw -jIJ -xzB +wZa +fSj +jca wfE fHz opD @@ -109732,9 +109615,9 @@ smW prP xXl nmY -idL -gnM -kyP +idV +aca +sNF ajZ aaa bdH @@ -109780,20 +109663,20 @@ adq aGQ akc apg -njn -rWz -rWz -rWz -rWz -njn -jsA -cGR -tey -urL -tey -cGR -jsA -tQA +uIw +qZx +qZx +qZx +qZx +uIw +xHx +nel +tqt +wuP +tqt +nel +xHx +sWb bYe akU ajC @@ -109819,20 +109702,20 @@ aoe ahr akU bYe -aZv -gNo -xzh -xzh -nIN -gJY -gNo -gNo -nIN -rgL -rgL -rgL -rgL -nIN +dvx +gxS +iov +iov +ykg +tEk +gxS +gxS +ykg +iSe +iSe +iSe +iSe +ykg wvj csI iPH @@ -109877,9 +109760,9 @@ aaa bdH aaa aad -sGw -xzB -dvD +wZa +jca +gtF wfE iYx opD @@ -109935,9 +109818,9 @@ oqt oEy qmY tUN -siT -lZb -kyP +raT +urD +sNF ajZ aaa bdH @@ -109983,20 +109866,20 @@ aee avd akt qWI -njn -njn -njn -njn -njn -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm +uIw +uIw +uIw +uIw +uIw +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv ahr akU ajC @@ -110022,20 +109905,20 @@ aoe dtM akU ajC -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -nIN -nIN -nIN -nIN -nIN +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +ykg +ykg +ykg +ykg +ykg ehj irS ilJ @@ -110080,9 +109963,9 @@ aaa bdH aaa aad -sGw -xzB -dvD +wZa +jca +gtF wfE gww opD @@ -110138,9 +110021,9 @@ uxX oZy orN nmY -lQf -tHk -kyP +aNz +eDF +sNF ajZ aaa bdH @@ -110186,12 +110069,12 @@ adq aWm aka kyY -njn -mfR -sqP -tVs -tVs -gxm +uIw +dDR +kEJ +qBE +qBE +uWv aax aax aax @@ -110199,7 +110082,7 @@ dkO aps aps aps -gxm +uWv vIm aii ajC @@ -110225,7 +110108,7 @@ aoe dtM aii ajC -gxm +uWv aiJ aiJ aiJ @@ -110233,12 +110116,12 @@ qYr atj atj atj -gxm -ear -aGm -xzh -ear -nIN +uWv +cNJ +xfu +iov +cNJ +ykg rQW yhI tmI @@ -110283,23 +110166,23 @@ aaa bdH aaa aad -sGw -nkj -dvD +wZa +tYh +gtF wfE rYi opD wFR wFR -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA aLG aZi cOM @@ -110327,23 +110210,23 @@ baZ oLv hop vMx -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA iZE oqt oZy qhD nmY -siT -xFt -kyP +raT +oPu +sNF ajZ aaa bdH @@ -110389,12 +110272,12 @@ adq apr apr apr -njn -hzl -vdT -jsA -jsA -gxm +uIw +ory +vGC +xHx +xHx +uWv aax aax aax @@ -110402,7 +110285,7 @@ vQe aps aps aps -gxm +uWv ahq akU ajC @@ -110428,7 +110311,7 @@ ajl dtM akU ajC -gxm +uWv aiJ aiJ aiJ @@ -110436,12 +110319,12 @@ str atj atj atj -gxm -aGm -xzh -xzh -moq -nIN +uWv +xfu +iov +iov +rxm +ykg wTy wTy wTy @@ -110486,15 +110369,15 @@ aaa bdH aaa aad -sGw -xzB -dvD +wZa +jca +gtF wfE cVK opD oRO ren -wDr +wdA aeL aeL aeL @@ -110502,7 +110385,7 @@ aqM arO arO arO -wDr +wdA beB byI beB @@ -110515,7 +110398,7 @@ tlA nyj vVW vhX -unU +lia rlZ twq vhX @@ -110530,7 +110413,7 @@ bCd bJz rrV bJz -wDr +wdA aue aue aue @@ -110538,15 +110421,15 @@ txi azy azy azy -wDr +wdA kJH oqt qlm kRD nmY -uKH -xFt -kyP +cUf +oPu +sNF ajZ aaa bdH @@ -110592,12 +110475,12 @@ aet afB akW apu -njn -njn -lBB -cGR -mOR -gxm +uIw +uIw +lGH +nel +evF +uWv acV acV acV @@ -110605,7 +110488,7 @@ vQe aps aps aps -gxm +uWv dtM nmx cpw @@ -110631,7 +110514,7 @@ ajl aDk akU ajC -gxm +uWv aiJ aiJ aiJ @@ -110639,12 +110522,12 @@ str atl atl atl -gxm -rTe -xzh -gNo -nIN -nIN +uWv +maU +iov +gxS +ykg +ykg crh csI qhb @@ -110689,15 +110572,15 @@ aaa bdH aaa aad -sGw -xzB -esm +wZa +jca +kmL wfE wfE viJ wfE wfE -wDr +wdA aeL aeL aeL @@ -110705,7 +110588,7 @@ kHj arO arO arO -wDr +wdA aLG aZi aLG @@ -110719,7 +110602,7 @@ rHo kan kan kan -jXf +phx kan kan kan @@ -110733,7 +110616,7 @@ bCd buH hop buH -wDr +wdA aue aue aue @@ -110741,15 +110624,15 @@ tGO azy azy azy -wDr +wdA euW rOI aId hQP nmY -qpV -bUQ -kyP +iDD +vtL +sNF ajZ aaa bdH @@ -110796,19 +110679,19 @@ boL akY boL aiH -hbl -cGR -fwP -mOR -gxm +ixB +nel +gWj +evF +uWv adb adb adb -gxm +uWv asm asm asm -gxm +uWv dtM ajt pvt @@ -110834,19 +110717,19 @@ ajl ahq aii ajC -gxm +uWv alW alW alW -gxm +uWv atI atI atI -gxm -aGm -ear -gNo -aZv +uWv +xfu +cNJ +gxS +dvx aJU baw sMM @@ -110893,14 +110776,14 @@ aKR aKR aKR aKR -dvD -xzB -pIo -xzB -xzB -fQy -nAm -wDr +gtF +jca +hkN +jca +jca +fMZ +kkm +wdA aeL aeL aeL @@ -110908,7 +110791,7 @@ kHj nLg nLg nLg -wDr +wdA aLG aZi bad @@ -110936,7 +110819,7 @@ kan bGe bHL buH -wDr +wdA auk auk auk @@ -110944,14 +110827,14 @@ tGO azy azy azy -wDr +wdA sJI aId aId hQP nmY -uKH -bUQ +cUf +vtL bVU bVU bVU @@ -110998,20 +110881,20 @@ aez boL akY wrQ -njn -njn -njn -njn -njn -gxm +uIw +uIw +uIw +uIw +uIw +uWv adb adb adb -gxm +uWv asm asm asm -gxm +uWv dtM akU wgd @@ -111037,20 +110920,20 @@ vEx bYe akU ajC -gxm +uWv alW alW alW -gxm +uWv atI atI atI -gxm -nIN -nIN -nIN -nIN -nIN +uWv +ykg +ykg +ykg +ykg +ykg nTH sMM baw @@ -111096,30 +110979,30 @@ aKS aKU aKS aLL -vtJ -stP -eWs -hKO -eoE -lrH -kdo -wDr +cXy +xXG +nqC +fKj +pkx +iJA +gUo +wdA aiR aiR aiR -wDr +wdA xpI xpI xpI -wDr +wdA aLG aZi aLG kan -qWS -oDJ -vaQ -iIH +rmB +vKG +qFm +iYR rlZ buu rlZ @@ -111139,22 +111022,22 @@ kan buH bHL buH -wDr +wdA aul aul aul -wDr +wdA azD azD azD -wDr +wdA ePN aId aId hQP nmY -xUY -wGe +jVM +imt bSf bWe bWn @@ -111201,20 +111084,20 @@ aet agS aiP aYq -njn -rWz -rWz -rWz -tWM -gxm +uIw +qZx +qZx +qZx +omL +uWv adb adb adb -gxm +uWv asm asm asm -gxm +uWv dtM akU ajC @@ -111225,8 +111108,8 @@ fnA jZY jZY sqf -wpu -cGp +jTb +iDe ajl ajl ajl @@ -111240,20 +111123,20 @@ ajl hon akU ajC -gxm +uWv alW alW alW -gxm +uWv atI atI atI -gxm -rgL -rgL -rgL -nTc -nIN +uWv +iSe +iSe +iSe +wWD +ykg gnv yhI tTu @@ -111306,23 +111189,23 @@ aLL aLL aLL aLL -wDr +wdA aiR aiR aiR -wDr +wdA xpI xpI xpI -wDr +wdA aLG aZi aLG kan -kAp -dYU +cpU +xbG kan -cWm +jJu soK gDW rlZ @@ -111335,22 +111218,22 @@ rlZ gYl frl wFb -wzZ +hEQ tdI vbV kan buH hop buH -wDr +wdA aul aul aul -wDr +wdA azD azD azD -wDr +wdA bSf bSf auW @@ -111404,20 +111287,20 @@ aet agB akW aYs -njn -rWz -rWz -rWz -rWz -gxm +uIw +qZx +qZx +qZx +qZx +uWv vKF adb adb -gxm +uWv asm asm asm -gxm +uWv dtM aii ajC @@ -111428,8 +111311,8 @@ eDo eDo eDo sqf -vXv -wub +dfE +mHv gXl ajl wqW @@ -111443,20 +111326,20 @@ ajl wqA aii ajC -gxm +uWv alW alW alW -gxm +uWv atI atI xMk -gxm -rgL -rgL -rgL -rgL -nIN +uWv +iSe +iSe +iSe +iSe +ykg vpn csI goL @@ -111509,15 +111392,15 @@ coT fgh rZP gmj -wDr +wdA aiR aiR aiR -wDr +wdA xpI xpI xpI -wDr +wdA bxD byI beB @@ -111545,15 +111428,15 @@ biA bJz bHT koc -wDr +wdA aul aul aul -wDr +wdA azD azD azD -wDr +wdA wcN nGi bVd @@ -111608,19 +111491,19 @@ boL akY boL avJ -rWz -rWz -rWz -rWz -gxm +qZx +qZx +qZx +qZx +uWv adb adb adb -gxm +uWv asm asm asm -gxm +uWv dtM ajt aik @@ -111631,8 +111514,8 @@ xsz jTj jTj sqf -lmi -xgP +fYV +uJP dwA wJo cyU @@ -111646,19 +111529,19 @@ gWG dtM aii ajC -gxm +uWv alW alW alW -gxm +uWv atI atI atI -gxm -rgL -rgL -rgL -rgL +uWv +iSe +iSe +iSe +iSe qxz baw sMM @@ -111712,15 +111595,15 @@ uUt aLW aLW guS -wDr +wdA aiR aiR aiR -wDr +wdA xpI xpI vgF -wDr +wdA jgU aZi aLG @@ -111734,7 +111617,7 @@ bJw rlZ hBc hzs -bHg +kDj hzs aZK rlZ @@ -111748,15 +111631,15 @@ biA buH bHL wWQ -wDr +wdA aun aul aul -wDr +wdA azD azD azD -wDr +wdA wgR bTO bTO @@ -111810,20 +111693,20 @@ aez boL akY aqk -njn -rWz -rWz -rWz -rWz -gxm +uIw +qZx +qZx +qZx +qZx +uWv adb adb adb -gxm +uWv asm asm asm -gxm +uWv dtM aii ajC @@ -111849,20 +111732,20 @@ gWG dtM aii ajC -gxm +uWv alW alW alW -gxm +uWv atI atI atI -gxm -rgL -rgL -rgL -rgL -nIN +uWv +iSe +iSe +iSe +iSe +ykg xuY sMM baw @@ -111915,15 +111798,15 @@ bbS xka uLn uoA -wDr +wdA aiR aiR aiR -wDr +wdA xpI xpI xpI -wDr +wdA aLG aZi aLG @@ -111951,15 +111834,15 @@ biA buH bHL buH -wDr +wdA aul aul aul -wDr +wdA azD azD azD -wDr +wdA hkB bTO qSm @@ -112013,20 +111896,20 @@ aet agS aiP aYq -njn -rWz -rWz -rWz -rWz -gxm +uIw +qZx +qZx +qZx +qZx +uWv adb adb adb -gxm +uWv asm asm asm -gxm +uWv aEI aii ajC @@ -112052,20 +111935,20 @@ ajl ahr aii ajC -gxm +uWv alW alW alW -gxm +uWv atI atI atI -gxm -rgL -rgL -rgL -rgL -nIN +uWv +iSe +iSe +iSe +iSe +ykg gnv yhI tTu @@ -112118,15 +112001,15 @@ rlh aLW aLW gxh -wDr +wdA aiR aiR aiR -wDr +wdA xpI xpI xpI -wDr +wdA aLG aZi mzR @@ -112154,15 +112037,15 @@ biA buH bHL buH -wDr +wdA aul aul aul -wDr +wdA azD azD azD -wDr +wdA wjC bTO xMf @@ -112216,20 +112099,20 @@ aet afB akW biT -njn -njn -njn -njn -njn -gxm +uIw +uIw +uIw +uIw +uIw +uWv adc adc adc -gxm -gxm -gxm -gxm -gxm +uWv +uWv +uWv +uWv +uWv kYU akU rxG @@ -112255,20 +112138,20 @@ ajl aEI akU gMa -gxm -gxm -gxm -gxm -gxm +uWv +uWv +uWv +uWv +uWv adc adc adc -gxm -nIN -nIN -nIN -nIN -nIN +uWv +ykg +ykg +ykg +ykg +ykg crh csI qhb @@ -112321,15 +112204,15 @@ djQ nFs aLW gFa -wDr +wdA aiR aiR aiR -wDr +wdA xpI xpI xpI -wDr +wdA aLG aZi aLG @@ -112357,15 +112240,15 @@ biA buH bHL buH -wDr +wdA aul aul aul -wDr +wdA azD azD azD -wDr +wdA xad roG mZr @@ -112524,15 +112407,15 @@ aLL aLL aLL hrF -wDr -wDr -wDr -wDr -wDr +wdA +wdA +wdA +wdA +wdA kaF jWU jWU -wDr +wdA pGM aZi aLG @@ -112560,15 +112443,15 @@ biA buH bHL bIR -wDr +wdA cyG cyG sos -wDr -wDr -wDr -wDr -wDr +wdA +wdA +wdA +wdA +wdA bSf bSf auX @@ -112720,15 +112603,15 @@ aKS aKV aKS aLL -qVE -iGc -bwG -hCk -nRN -mzI -olQ -oCK -eob +jBI +sro +pAH +nqL +ecf +eNq +mLr +gnh +pWg lGh aQt lDg @@ -112748,7 +112631,7 @@ bst cjW rlZ rlZ -hrJ +tZO kan biy boX @@ -112776,9 +112659,9 @@ ckl ckI cla cly -cDx -ndl -iDk +vOK +hVl +fkF bSf bWe bWp @@ -112923,15 +112806,15 @@ aKR aKR aKR aKR -deq -lfx -jgK -lfx -lfx -yih -kgD -deq -bwG +xnn +wli +mfc +wli +wli +ijw +kYj +xnn +pAH aNn aNO asO @@ -112951,7 +112834,7 @@ vhX akQ rlZ rlZ -pnC +jAl dBH bky ryt @@ -112979,9 +112862,9 @@ ckm bHa clb clz -mJO -vDN -xbg +rng +hIq +cER bVU bVU bVU @@ -113067,24 +112950,24 @@ sqf kHT pjM aim -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -oiq -mRU -mRU -mRU -mRU -mRU -mRU -woU +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +vhb +lYm +lYm +lYm +lYm +lYm +lYm +ckw aaa aaa aaa @@ -113125,10 +113008,10 @@ aaa aaa bdH aad -kyw -deq -lfx -bwG +nnw +xnn +wli +pAH aQF aQF aQF @@ -113176,16 +113059,16 @@ ssE azG uxZ vgk -mJO -mJO -mJO +rng +rng +rng bTq -mJO -mJO -mJO -mgb -xbg -lyW +rng +rng +rng +jbS +cER +qbs ajZ bdH aaa @@ -113270,24 +113153,24 @@ sqf atL bkQ atL -mRU -qSw -qSw -qSw -qSw -fHM +lYm +wqU +wqU +wqU +wqU +sLJ pBG rLp ttX -mRU -vpf -mRU -vor -qnA -vkI -gNN -lyz -woU +lYm +dhe +lYm +kDP +eYw +lEz +jsn +kyQ +ckw aaa aaa aaa @@ -113328,10 +113211,10 @@ aaa aaa bdH aad -kyw -xwd -lfx -bwG +nnw +sMe +wli +pAH weR aPE weR @@ -113357,7 +113240,7 @@ vhX gDW rlZ rlZ -wYr +jmm dBH bky ryt @@ -113379,16 +113262,16 @@ bJt bJt bJt bJt -mJO -plv -plv -plv -plv -mvg -mJO -mgb -mgb -lyW +rng +kks +kks +kks +kks +owS +rng +jbS +jbS +qbs ajZ bdH aaa @@ -113473,24 +113356,24 @@ asn ago asW cwJ -mRU -qSw -qSw -qSw -qSw -qSw +lYm +wqU +wqU +wqU +wqU +wqU pBG jZU jAe -mRU -jtU -mRU -tNw -ebI -ukC -jtU -fCi -woU +lYm +iTV +lYm +oDh +xXD +vbJ +iTV +vLd +ckw aaa aaa aaa @@ -113531,14 +113414,14 @@ aaa aaa bdH aad -kyw -deq -cGY -bwG -rUq -rUq -sab -sab +nnw +xnn +eSH +pAH +xtr +xtr +jXC +jXC izk aWD cWr @@ -113560,7 +113443,7 @@ xMs cjW rlZ rlZ -jbO +bvm kan quv rZB @@ -113582,16 +113465,16 @@ eeu gfq eFP gAz -mJO -plv -plv -plv -plv -plv -mJO -xbg -pgJ -lyW +rng +kks +kks +kks +kks +kks +rng +cER +rzK +qbs ajZ bdH aaa @@ -113676,24 +113559,24 @@ asn ayT akU avj -mRU -qSw -qSw -qSw -qSw -qSw +lYm +wqU +wqU +wqU +wqU +wqU pBG cVq nOb -mRU -vpI -mRU -mRU -mRU -gBs -mRU -mRU -woU +lYm +uCU +lYm +lYm +lYm +hdf +lYm +lYm +ckw aaa aaa aaa @@ -113734,12 +113617,12 @@ aaa aaa bdH aad -kyw -deq -veq -bwG -pKh -sab +nnw +xnn +dle +pAH +hys +jXC rDv bmW jWu @@ -113785,16 +113668,16 @@ jge bDs bDs hLC -mJO -plv -plv -plv -plv -plv -mJO -xbg -mgb -lyW +rng +kks +kks +kks +kks +kks +rng +cER +jbS +qbs ajZ bdH aaa @@ -113879,24 +113762,24 @@ asn ayT aii avm -mRU -qSw -qSw -qSw -qSw -qSw +lYm +wqU +wqU +wqU +wqU +wqU pBG dzp ngV -mRU -jtU -jtU -uBx -fLi -vpf -prf -vpf -woU +lYm +iTV +iTV +qHK +uPD +dhe +rkS +dhe +ckw aaa aac aaf @@ -113937,10 +113820,10 @@ aaa aaa bdH aad -kyw -deq -deF -bwG +nnw +xnn +wbm +pAH mTi lJK kYV @@ -113988,16 +113871,16 @@ bIJ bDs bDs qJS -mJO -plv -plv -plv -plv -plv -mJO -xbg -xbg -lyW +rng +kks +kks +kks +kks +kks +rng +cER +cER +qbs ajZ aaa avo @@ -114082,7 +113965,7 @@ sqf ybf aii avj -mRU +lYm pBG pBG pBG @@ -114091,15 +113974,15 @@ pBG pBG saL pBG -mRU -mRU -mRU -mRU -mRU -mRU -jtU -vpf -woU +lYm +lYm +lYm +lYm +lYm +lYm +iTV +dhe +ckw aaa aad aag @@ -114140,15 +114023,15 @@ aaa aaa bdH aad -kyw -deq -oWq -bwG +nnw +xnn +dpD +pAH aQF aQF aPH xIQ -tmX +mrm aWD rrK aRy @@ -114198,9 +114081,9 @@ bJt bJt bJt bJt -xbg -otW -lyW +cER +keN +qbs ajZ avo avo @@ -114287,7 +114170,7 @@ kSJ avj cGr pBG -gqQ +hqJ cHG nQA wph @@ -114299,10 +114182,10 @@ gel gel gel fkX -mRU -jtU -tMU -woU +lYm +iTV +enA +ckw aaf aag aag @@ -114343,10 +114226,10 @@ bdH bdH bdH aad -kyw -xwd -lfx -bwG +nnw +sMe +wli +pAH weR aPE izk @@ -114401,9 +114284,9 @@ iIl bDs ujV bJt -xbg -xbg -lyW +cER +cER +qbs ajZ avo avs @@ -114502,10 +114385,10 @@ cXF rLU dKp cHu -mRU -jtU -vpf -woU +lYm +iTV +dhe +ckw aag aag aag @@ -114546,12 +114429,12 @@ bdH bdH bdH aad -kyw -deq -sJa -bwG -pGG -sab +nnw +xnn +cnP +pAH +weW +jXC izk hds aQF @@ -114604,8 +114487,8 @@ idx hAz gHj bJt -oqI -xbg +ygb +cER avo avo avo @@ -114705,10 +114588,10 @@ bHk vZw bHk cHu -mRU -vpf -mRU -woU +lYm +dhe +lYm +ckw aag aag aag @@ -114749,10 +114632,10 @@ bdH bdH bdH aad -kyw -lfx -deq -jgK +nnw +wli +xnn +mfc aNs aNs hyw @@ -114807,8 +114690,8 @@ gSk bDs bpI bJt -jLH -xbg +rrp +cER lpy avC avC @@ -114908,10 +114791,10 @@ vzp vZw erd cHu -mRU -vzB -mRU -woU +lYm +eLq +lYm +ckw aag aag aag @@ -114952,10 +114835,10 @@ bdH bdH bdH aad -kyw -txp -iGc -bwG +nnw +dDd +sro +pAH vMr vMr izk @@ -115010,8 +114893,8 @@ gSk reL wiI bJt -tqV -dSm +kbz +meM avo avo avo @@ -115111,10 +114994,10 @@ bHk vZw bHk cHu -mRU -vpf -mRU -woU +lYm +dhe +lYm +ckw aah aag aag @@ -115155,10 +115038,10 @@ bdH bdH bdH aad -kyw -cme -whm -bwG +nnw +kQZ +ohw +pAH mTi lJK izk @@ -115213,9 +115096,9 @@ gSk bDs vwI bJt -lAa -mgb -lyW +qxb +jbS +qbs ajZ avo avs @@ -115314,10 +115197,10 @@ pRy wwW mRW cHu -mRU -jtU -vpf -woU +lYm +iTV +dhe +ckw aaa aad aag @@ -115358,15 +115241,15 @@ bdH bdH bdH aad -kyw -cGY -ipn -bwG +nnw +eSH +hWV +pAH aQF aQF sPc xIQ -sab +jXC aWD olM aRy @@ -115416,9 +115299,9 @@ gSk bDs fUB bJt -mgb -nhw -lyW +jbS +fLl +qbs ajZ avo avo @@ -115509,7 +115392,7 @@ lPm iZV fdx cuq -eQJ +edn fVF pBG qWR @@ -115517,10 +115400,10 @@ wJH wJH wJH sNR -mRU -jtU -vpf -woU +lYm +iTV +dhe +ckw aaa aae aah @@ -115561,10 +115444,10 @@ bdH bdH bdH aad -kyw -oif -deq -bwG +nnw +jtG +xnn +pAH weR aPE izk @@ -115619,9 +115502,9 @@ gSk bDs nqO bJt -nQo -pgJ -lyW +lBj +rzK +qbs ajZ aaa avo @@ -115701,7 +115584,7 @@ ggl jjS qMP kBP -aSl +qIB vOy aTL aii @@ -115716,14 +115599,14 @@ pBG pBG pBG pBG -mRU -mRU -mRU -mRU -mRU -jtU -tMU -woU +lYm +lYm +lYm +lYm +lYm +iTV +enA +ckw bdH bdH bdH @@ -115764,12 +115647,12 @@ bdH bdH bdH aad -kyw -byt -lfx -bwG -iWQ -iWQ +nnw +pDZ +wli +pAH +esV +esV uFd mUq qwt @@ -115822,9 +115705,9 @@ cnu bDs knK bJt -xbg -oUZ -lyW +cER +wRn +qbs ajZ bdH bdH @@ -115915,18 +115798,18 @@ trU oNY fdx pBG -pVF +eNw ppF fiE pBG -jtU -jtU -uBx -ycM -vpf -jtU -vpf -woU +iTV +iTV +qHK +qsr +dhe +iTV +dhe +ckw bdH bdH bdH @@ -115967,13 +115850,13 @@ bdH bdH bdH aad -kyw -jNo -lfx -bwG -iWQ -iWQ -sab +nnw +vEQ +wli +pAH +esV +esV +jXC aNr pQY aWD @@ -116025,9 +115908,9 @@ gSk ljG tSp bJt -xbg -ssk -lyW +cER +meC +qbs ajZ bdH bdH @@ -116122,14 +116005,14 @@ dzp rMT dzp pBG -jtU -mRU -mRU -mRU -mRU -vpf -mRU -woU +iTV +lYm +lYm +lYm +lYm +dhe +lYm +ckw bdH bdH bdH @@ -116170,10 +116053,10 @@ bdH bdH bdH aad -kyw -deq -lfx -bwG +nnw +xnn +wli +pAH mTi lJK mTi @@ -116228,9 +116111,9 @@ gSk oDE bJt bJt -xbg -mgb -lyW +cER +jbS +qbs ajZ bdH bdH @@ -116325,14 +116208,14 @@ nTR gDp rwq pBG -jtU -mRU -oyO -nve -mRU -vzB -mRU -woU +iTV +lYm +fhb +vlj +lYm +eLq +lYm +ckw bdH bdH bdH @@ -116373,10 +116256,10 @@ bdH bdH bdH aad -kyw -xbI -lfx -bwG +nnw +dwU +wli +pAH aQF aQF aQF @@ -116386,10 +116269,10 @@ aQF aQF aQF aQF -wYG -yhR -gHi -bwG +beA +hmM +gFc +pAH aeb alx aeb @@ -116430,10 +116313,10 @@ bDs gSk luS bJt -uCw -xbg -mgb -lyW +ebL +cER +jbS +qbs ajZ bdH bdH @@ -116475,11 +116358,11 @@ aaa aaa aaa aaa -vHn -cGd -moK -cGd -cGd +qdy +rOR +jZD +rOR +rOR aNi aNi bWr @@ -116528,14 +116411,14 @@ pBG pBG pBG pBG -jtU -rXF -jtU -vzB -mRU -kuK -mRU -woU +iTV +pmS +iTV +eLq +lYm +jDh +lYm +ckw aaa aaa aaa @@ -116576,23 +116459,23 @@ bdH aaa bdH aad -kyw -deq -deq -bwG -tEu -mUY -vOw -ouU -dro -bwG -gSH -xJp -qxJ -hCk -deq -nRN -bwG +nnw +xnn +xnn +pAH +uBS +vDZ +inq +sVv +jVi +pAH +cTc +cVZ +qvG +nqL +xnn +ecf +pAH bwd auv bwd @@ -116633,10 +116516,10 @@ bDs gSk vSp lHG -kOJ -mgb -mgb -lyW +rHA +jbS +jbS +qbs ajZ bdH bdH @@ -116678,11 +116561,11 @@ aaf aaf aaf aaf -vHn -ejV -hoT -hoT -vyh +qdy +qTv +oKB +oKB +nSm aNi cYT aNm @@ -116722,23 +116605,23 @@ ajr aii avm pBG -tGT +bfO nQA nQA jDO pBG aYH cHG -cOY +cgd pBG -mSM -mRU -gRc -oOp -mRU -jtU -vpf -woU +gck +lYm +cep +caL +lYm +iTV +dhe +ckw aaf aaf aaf @@ -116772,30 +116655,30 @@ bdH bdH bdH aac -kyw -kyw -kyw -kyw -kyw -kyw -kyw -kyw -deq -caq -bwG -igb -cpz -ooA -kpj -sBY -wyG -qjL -kpj -rAo -lka -kpj -kpj -mQY +nnw +nnw +nnw +nnw +nnw +nnw +nnw +nnw +xnn +jkb +pAH +xhp +vVD +ftr +kmu +vdc +oTR +waY +kmu +byD +oBQ +kmu +kmu +dZT aem mUa aLG @@ -116836,17 +116719,17 @@ qxE rui vSp bJt -uXU -xbg -nhw -lyW -lyW -lyW -lyW -lyW -lyW -lyW -lyW +ogj +cER +fLl +qbs +qbs +qbs +qbs +qbs +qbs +qbs +qbs ajY aaa aaa @@ -116881,11 +116764,11 @@ aag aag aag aag -vHn -dGg -tob -hoT -tob +qdy +bEj +nxJ +oKB +nxJ aNi aZe aNm @@ -116934,14 +116817,14 @@ eAN eAN eAN pBG -vpf -mRU -mRU -mRU -mRU -vpI -vpf -woU +dhe +lYm +lYm +lYm +lYm +uCU +dhe +ckw aag aag aag @@ -116974,22 +116857,22 @@ bdH bdH bdH bdH -kyw -kyw -hCk -maK -lfx -lfx -lfx -deq -deq -deq -lfx -eYp -lfx -vmq -cqH -tjO +nnw +nnw +nqL +mQQ +wli +wli +wli +xnn +xnn +xnn +wli +ddN +wli +oPY +oPs +sbA bdd bdd bdd @@ -116999,7 +116882,7 @@ bdd bdd bdd bdd -teH +rhW aYO xNB bdd @@ -117040,17 +116923,17 @@ cDC vuF bJt bJt -xbg -mgb -mgb -mgb -gLm -ttD -mgb -mgb -mgb -lyW -lyW +cER +jbS +jbS +jbS +aTu +iPm +jbS +jbS +jbS +qbs +qbs aaa aaa aaa @@ -117084,11 +116967,11 @@ aag aag aag aag -vHn -oSG -tob -tob -tob +qdy +xIp +nxJ +nxJ +nxJ aNi aZr aNm @@ -117137,14 +117020,14 @@ skR oxc nBi pBG -vzB -mRU -pGh -xEs -mRU -jtU -tMU -woU +eLq +lYm +mre +flK +lYm +iTV +enA +ckw aag aag aag @@ -117177,22 +117060,22 @@ bdH bdH bdH bdH -kyw -xJp -lfx -deq -yih -deq -deq -lfx -lfx -lfx -rHq -bwG -nPO -cGB -ugj -fbC +nnw +cVZ +wli +xnn +ijw +xnn +xnn +wli +wli +wli +qkc +pAH +jEj +bTr +gVP +xiZ bdd uvU xZk @@ -117243,17 +117126,17 @@ feq loY aDU bJt -vAx -mgb -xbg -mgb -xpL -mgb -mgb -xbg -xbg -mgb -lyW +mHj +jbS +cER +jbS +kus +jbS +jbS +cER +cER +jbS +qbs aaa aaa aaa @@ -117287,11 +117170,11 @@ aag aag aag aag -vHn -oeH -tob -hoT -tob +qdy +pPq +nxJ +oKB +nxJ aNi aZs aNm @@ -117331,7 +117214,7 @@ aow hee ioX fKh -lDa +sSP eAN eAN vEG @@ -117340,14 +117223,14 @@ pBG pBG pBG pBG -vpf -tra -vpf -vzB -mRU -iJT -vpf -woU +dhe +whr +dhe +eLq +lYm +iQR +dhe +ckw aag aag aag @@ -117380,9 +117263,9 @@ bdH bdH bdH bdH -kyw -deq -lfx +nnw +xnn +wli nsY nsY pRT @@ -117392,10 +117275,10 @@ nsY nsY nsY nsY -bwG -bwG -msC -bwG +pAH +pAH +vwU +pAH bdd xwE dAQ @@ -117454,9 +117337,9 @@ nsY nsY nsY nsY -kqb -mgb -lyW +ogM +jbS +qbs aaa aaa aaa @@ -117490,11 +117373,11 @@ aag aag aag aag -vHn -mId -hoT -hoT -hoT +qdy +brD +oKB +oKB +oKB aNi jWr aNm @@ -117531,26 +117414,26 @@ vOy asp aii avj -mRU -mRU +lYm +lYm pBG aGs eAN eAN vEG vrJ -xOs +tQM kOH hIs pBG -mSM -mRU -tCd -vpf -tra -vpf -mRU -woU +gck +lYm +kqu +dhe +whr +dhe +lYm +ckw aag aag aag @@ -117583,9 +117466,9 @@ aaa aaa aaa aaa -kyw -lfx -deq +nnw +wli +xnn nsY xWT kxd @@ -117595,10 +117478,10 @@ rSG rur oqS nsY -hsh -cPP -deq -eLH +hnK +niy +xnn +fLI bdd eUZ lCr @@ -117657,9 +117540,9 @@ rSG qkP oqS nsY -mgb -mgb -lyW +jbS +jbS +qbs aaa aaa aaa @@ -117693,11 +117576,11 @@ aag aag aag aag -vHn -eDq -jFI -cGd -moK +qdy +rMG +fra +rOR +jZD aNi aNi aNi @@ -117734,8 +117617,8 @@ vOy meJ amO avj -mRU -vpf +lYm +dhe pBG xiU xUa @@ -117746,14 +117629,14 @@ pZH nnL lgt pBG -vpI -mRU -bhV -jtU -mRU -vzB -mRU -woU +uCU +lYm +aHx +iTV +lYm +eLq +lYm +ckw aag aag aag @@ -117786,9 +117669,9 @@ aaa aaa aaa aaa -kyw -lfx -deq +nnw +wli +xnn nsY xWT kxd @@ -117798,10 +117681,10 @@ iIP kxd dDt nsY -exb -deq -deq -qLY +krA +xnn +xnn +uoF bdd ljW bDP @@ -117860,9 +117743,9 @@ dmR kxd dDt nsY -mgb -xbg -lyW +jbS +cER +qbs aaa aaa aaa @@ -117896,15 +117779,15 @@ aag aag aag aag -vHn -cGd -cGd -cGd -iTQ -lWt -eDq -eDq -eDq +qdy +rOR +rOR +rOR +rLQ +rJF +rMG +rMG +rMG aNi aNi aNi @@ -117931,14 +117814,14 @@ vYz awR uoi vOy -jyJ -niF +pOR +vlf bPF aTL akU avj -mRU -vpf +lYm +dhe pBG pBG pBG @@ -117949,14 +117832,14 @@ pBG pBG pBG pBG -jtU -mRU -mRU -mRU -mRU -vpf -mRU -woU +iTV +lYm +lYm +lYm +lYm +dhe +lYm +ckw aag aag aag @@ -117989,9 +117872,9 @@ aaa aaa aaa aaa -kyw -lfx -deq +nnw +wli +xnn nsY gsg vHq @@ -118001,10 +117884,10 @@ rNb bxC jiU nsY -jvt -hiu -deq -vSr +dXU +tIN +xnn +vgY bdd asr asr @@ -118063,9 +117946,9 @@ iSm bxC jiU nsY -mgb -xbg -lyW +jbS +cER +qbs aaa aaa aaa @@ -118089,36 +117972,36 @@ aaa aaa aaa aaa -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -hoT -tob -tob -hoT -tob -tob -hqm -hoT -tob -tob -tob -tob -hoT -vyh -hoT -tob -tob -fkK +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +oKB +nxJ +nxJ +oKB +nxJ +nxJ +mvu +oKB +nxJ +nxJ +nxJ +nxJ +oKB +nSm +oKB +nxJ +nxJ +cLx bYe amO bYe @@ -118134,42 +118017,42 @@ paa sXd gVq vOy -sLk -niF +dan +vlf cbg bYe akU bYe -rXF -jtU -jtU -vpf -ycM -tne -jtU -jtU -vpf -ycM -vpf -jtU -jtU -jtU -uBx -fLi -jtU -vpf -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm +pmS +iTV +iTV +dhe +qsr +leZ +iTV +iTV +dhe +qsr +dhe +iTV +iTV +iTV +qHK +uPD +iTV +dhe +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv aaa aaa aaa @@ -118192,9 +118075,9 @@ aaa aac aaf aaf -kyw -lfx -deq +nnw +wli +xnn nsY nsY qxC @@ -118204,10 +118087,10 @@ nsY ntx nsY nsY -qWL -kIk -eXD -kMr +biv +oSy +waS +pJE bdd bdd bdd @@ -118266,9 +118149,9 @@ nsY gLZ nsY nsY -mgb -nhw -lyW +jbS +fLl +qbs aaf aaf ajY @@ -118292,7 +118175,7 @@ aaa aaa aaa aaa -gxm +uWv dxF dxF aaH @@ -118303,21 +118186,21 @@ aam aam aam aam -gxm -hgk -tob -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd +uWv +dRE +nxJ +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR aej aej aej @@ -118343,25 +118226,25 @@ vOy apv akU jHG -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -jtU -vpf -gxm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +iTV +dhe +uWv aeT aeT aeT @@ -118372,7 +118255,7 @@ aeT nnD aZF aZF -gxm +uWv aaa aaa aaa @@ -118393,11 +118276,11 @@ aaa aaa aaa aad -kyw -kyw -kyw -deq -caq +nnw +nnw +nnw +xnn +jkb nsY tUS bNh @@ -118407,10 +118290,10 @@ fPp lqN vlO nsY -xxG -smA -ktR -lfx +kkj +mIX +lls +wli bdd dJI jaf @@ -118469,11 +118352,11 @@ iQt uZo xmJ nsY -xbg -mgb -lyW -lyW -lyW +cER +jbS +qbs +qbs +qbs ajZ aaa aaa @@ -118495,7 +118378,7 @@ aaa aaa aaa aaa -gxm +uWv dxF dxF aaH @@ -118506,20 +118389,20 @@ aam aam aam aam -gxm -bLf -tob -cGd -vVY -vVY -vVY -vVY -kLB -vVY -vVY -vVY -vVY -kLB +uWv +tvm +nxJ +rOR +ivy +ivy +ivy +ivy +lYS +ivy +ivy +ivy +ivy +lYS aej aeO afG @@ -118546,25 +118429,25 @@ vOy ayT akU avj -mRU -bnF -lBw -bnF -mRU -qSw -qSw -qSw -qSw -urg -qSw -qSw -qSw -qSw -urg -mRU -jtU -nVE -gxm +lYm +vWb +fDC +vWb +lYm +wqU +wqU +wqU +wqU +tJa +wqU +wqU +wqU +wqU +tJa +lYm +iTV +kFL +uWv aeT aeT aeT @@ -118575,7 +118458,7 @@ aeT nnD aZF aZF -gxm +uWv aaa aaa aaa @@ -118595,12 +118478,12 @@ aaa aaa aaa aaa -kyw -kyw -veq -deq -deq -lfx +nnw +nnw +dle +xnn +xnn +wli nsY kio sJY @@ -118610,10 +118493,10 @@ xTW oGP cnM nsY -kqB -txH -txH -deq +foa +chi +chi +xnn bdd fva lkL @@ -118672,12 +118555,12 @@ pyc uMn ivz nsY -xbg -mgb -xbg -xbg -lyW -lyW +cER +jbS +cER +cER +qbs +qbs aaa aaa aaa @@ -118698,7 +118581,7 @@ aaa aaa aaa aaa -gxm +uWv dxF dxF aaH @@ -118709,20 +118592,20 @@ aam aam aam aam -gxm -rGz -tob -cGd -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY +uWv +qXe +nxJ +rOR +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy aej aeP agI @@ -118749,25 +118632,25 @@ vOy ayT aii avj -eyI -jtU -jaW -vkV -mRU -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -mRU -jtU -bWg -gxm +uai +iTV +tzZ +lOt +lYm +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +lYm +iTV +wlQ +uWv aeT aeT aeT @@ -118778,7 +118661,7 @@ aeT nnD aZF aZF -gxm +uWv aaa aaa aaa @@ -118798,12 +118681,12 @@ aaa aaa aaa aaa -kyw -lHB -lfx -lfx -lfx -lfx +nnw +cXh +wli +wli +wli +wli heK kam axc @@ -118813,10 +118696,10 @@ vHh pvh sZs nsY -bwG -erL -scX -caq +pAH +mtR +vmZ +jkb bdd cDH cHB @@ -118875,12 +118758,12 @@ xuQ uPW kYv oDx -sAS -sAS -sAS -rCh -xbg -lyW +lTL +lTL +lTL +tzC +cER +qbs aaa aaa aaa @@ -118901,31 +118784,31 @@ aaa aaa aaa aaa -gxm +uWv adj apk apk -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -hqb -vsd -cGd -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +euu +yma +rOR +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy aej aeQ agK @@ -118952,36 +118835,36 @@ vOy ayT aii avj -eyI -yfL -sjw -xHD -mRU -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -mRU -jZo -hQK -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm +uai +sbU +fWj +kdX +lYm +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +lYm +dDo +lqL +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv asM asM mwR -gxm +uWv aaa aaa aaa @@ -119001,12 +118884,12 @@ aaa aaa aaa aaa -kyw -eqm -lfx -vvH -bwG -bwG +nnw +hpO +wli +pzi +pAH +pAH nsY wpz oEX @@ -119016,10 +118899,10 @@ xxm qSK ieu nsY -mZc -lfx -neH -deq +aSV +wli +eKE +xnn bdd xXW gVu @@ -119078,12 +118961,12 @@ mzV pML ivz nsY -iZd -mgb -xbg -jPx -xQd -lyW +gcu +jbS +cER +fKC +dvD +qbs aaa aaa aaa @@ -119104,7 +118987,7 @@ aaa aaa aaa aaa -gxm +uWv ojH ojH taV @@ -119118,17 +119001,17 @@ ouf aLc wBI hGG -cGd -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY +rOR +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy aej aeR agK @@ -119155,22 +119038,22 @@ vOy aEK aSv ioX -eyI -byH -jtU -nvd -mRU -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -mRU +uai +jEm +iTV +ety +lYm +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +lYm vmJ elv vRR @@ -119184,7 +119067,7 @@ qXS hXX xDe xDe -gxm +uWv aaa aaa aaa @@ -119204,12 +119087,12 @@ aaa aaa aaa aaa -kyw -htg -deq -deq -qCH -cXm +nnw +slx +xnn +xnn +mSc +wgw nsY hUz dbn @@ -119219,10 +119102,10 @@ uRM ipe ehR nsY -xEe -lfx -tdH -igw +sEE +wli +tLD +rMk bdd sgm kEg @@ -119281,12 +119164,12 @@ sZH rjV ivz nsY -qZy -jfS -bUH -ciB -soT -lyW +eCZ +rEF +vDk +woQ +kHx +qbs aaa aaa aaa @@ -119307,7 +119190,7 @@ aaa aaa aaa aaa -gxm +uWv ojH ojH taV @@ -119321,17 +119204,17 @@ ouf sdf cRL hGG -cGd -cGd -cGd +rOR +rOR +rOR ahi -cGd -cGd -cGd -cGd +rOR +rOR +rOR +rOR uux -cGd -cGd +rOR +rOR aej aej agO @@ -119358,22 +119241,22 @@ vOy atL akV atL -mRU -mRU -veW -mRU -mRU -mRU -mRU +lYm +lYm +yjf +lYm +lYm +lYm +lYm nNX -mRU -mRU -mRU -mRU +lYm +lYm +lYm +lYm ayo -mRU -mRU -mRU +lYm +lYm +lYm cna nzD xDV @@ -119387,7 +119270,7 @@ qXS hXX xDe xDe -gxm +uWv aaa aaa aaa @@ -119407,12 +119290,12 @@ aaa aaa aaa aaa -kyw -lfx -lfx -yih -qCH -spT +nnw +wli +wli +ijw +mSc +hYE nsY nsY nsY @@ -119422,10 +119305,10 @@ nsY nsY nsY nsY -bwG -bwG -bwG -bwG +pAH +pAH +pAH +pAH bdd bdd bdd @@ -119484,12 +119367,12 @@ nsY nsY nsY nsY -ecj -bZf -lZI -faR -wxu -lyW +fXy +leL +kIr +nZp +ffL +qbs aaa aaa aaa @@ -119510,7 +119393,7 @@ aaa aaa aaa aaa -gxm +uWv ojH ojH taV @@ -119590,7 +119473,7 @@ qXS hXX xDe xDe -gxm +uWv aaa aaa aaa @@ -119610,14 +119493,14 @@ aaa aaa aaa aaa -kyw -lfx -deq -bwG -bwG -bwG -bwG -bwG +nnw +wli +xnn +pAH +pAH +pAH +pAH +pAH aLB acF heb @@ -119684,15 +119567,15 @@ cbD rGg qtn kJV -mJO -mJO -mJO -mJO -mJO -mJO -jPx -mgb -lyW +rng +rng +rng +rng +rng +rng +fKC +jbS +qbs aaa aaa aaa @@ -119713,17 +119596,17 @@ aaa aaa aaa aaa -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv dho wVt wVt @@ -119783,17 +119666,17 @@ qLg iup ryY cnn -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv aaa aaa aaa @@ -119813,14 +119696,14 @@ aaa aaa aaa aaa -kyw -lfx -deq -bwG -ycl -ycl -ycl -jCg +nnw +wli +xnn +pAH +pCe +pCe +pCe +vbk aLB nyG iDN @@ -119888,14 +119771,14 @@ fkO bHY kro bGb -plv -plv -plv -mbR -mJO -eBG -nhw -lyW +kks +kks +kks +xOb +rng +vKU +fLl +qbs aaa aaa aaa @@ -119923,10 +119806,10 @@ aag aag aag aag -vHn -fbe -hoT -rpG +qdy +xEq +oKB +oFg bGa dVn vwC @@ -119986,10 +119869,10 @@ dbc cNM ofU njk -rXF -jtU -vzB -woU +pmS +iTV +eLq +ckw aag aag aag @@ -120016,14 +119899,14 @@ aaa aaa aaa aaa -kyw -lfx -deq -bwG -ycl -ycl -ycl -ycl +nnw +wli +xnn +pAH +pCe +pCe +pCe +pCe aLB csl gjn @@ -120091,14 +119974,14 @@ dQs sFh guc bGb -plv -plv -plv -plv -mJO -jPx -enQ -lyW +kks +kks +kks +kks +rng +fKC +rOD +qbs aaa aaa aaa @@ -120126,24 +120009,24 @@ aag aag aag aag -vHn -ggD -tob -cGd -cGd -cGd -cGd -cGd -cGd -cGd +qdy +gLo +nxJ +rOR +rOR +rOR +rOR +rOR +rOR +rOR hZE sVV oON -cGd -cGd -cva -cGd -cGd +rOR +rOR +leQ +rOR +rOR ael ael agQ @@ -120170,29 +120053,29 @@ atC cnv amO lqJ -mRU -mRU -gBs -mRU -mRU -mRU -gBs -mRU -mRU -mRU +lYm +lYm +hdf +lYm +lYm +lYm +hdf +lYm +lYm +lYm mKi sfT hGV -mRU -mRU -mRU -mRU -mRU -mRU -mRU -vpf -tMU -woU +lYm +lYm +lYm +lYm +lYm +lYm +lYm +dhe +enA +ckw aag aag aag @@ -120219,14 +120102,14 @@ aaa aaa aaa aaa -kyw -lfx -deq -bwG -ycl -ycl -ycl -ycl +nnw +wli +xnn +pAH +pCe +pCe +pCe +pCe jUx aLG qmL @@ -120294,14 +120177,14 @@ jJe bHY buH vfo -plv -plv -plv -plv -mJO -nEl -bhy -lyW +kks +kks +kks +kks +rng +xIB +xcC +qbs aaa aaa aaa @@ -120329,24 +120212,24 @@ aag aag aag aag -vHn -hgk -hoT -hoT -cGd -vVY -vVY -vVY -tvS -cGd +qdy +dRE +oKB +oKB +rOR +ivy +ivy +ivy +pJa +rOR xVe sVV mbx -cGd -orq -rRb -qjT -kRk +rOR +bJK +tsI +hkF +mEL ael afE agT @@ -120373,29 +120256,29 @@ atC abg amO nQx -mRU -tih -vpf -tih -mRU -jwM -jtU -jtU -jHX -mRU +lYm +eSp +dhe +eSp +lYm +jnl +iTV +iTV +gOf +lYm aDS sfT hGV -mRU -qSw -qSw -qSw -vMQ -mRU -upS -jtU -jtU -woU +lYm +wqU +wqU +wqU +axT +lYm +pzA +iTV +iTV +ckw aag aag aag @@ -120422,14 +120305,14 @@ aac aaf aaf aaf -kyw -deq -lfx -bwG -ycl -ycl -ycl -ycl +nnw +xnn +wli +pAH +pCe +pCe +pCe +pCe aLB dEC aNO @@ -120497,14 +120380,14 @@ tfw bHY sVf bGb -plv -plv -plv -plv -mJO -nEl -rxe -lyW +kks +kks +kks +kks +rng +xIB +nuH +qbs aaf aaf aaf @@ -120532,24 +120415,24 @@ aag aag aag aag -vHn -vHn -tob -tob -cGd -vVY -vVY -vVY -vVY -cGd +qdy +qdy +nxJ +nxJ +rOR +ivy +ivy +ivy +ivy +rOR hHe gxn ioH -cGd -mNS -tob -hvq -pCQ +rOR +wLM +nxJ +vhM +qFp ael afH agV @@ -120576,29 +120459,29 @@ atC cbr amO uGt -mRU -mRU -jtU -wlB -mRU -bBc -vpf -jtU -bBc -mRU +lYm +lYm +iTV +ajq +lYm +yaa +dhe +iTV +yaa +lYm uRY pMA waJ -mRU -qSw -qSw -qSw -qSw -mRU -oNM -vpf -woU -woU +lYm +wqU +wqU +wqU +wqU +lYm +lcL +dhe +ckw +ckw aag aag aag @@ -120625,14 +120508,14 @@ aad aag aag aag -kyw -xkb -dAA -bwG -ycl -ycl -ycl -ycl +nnw +pDq +uxx +pAH +pCe +pCe +pCe +pCe aLB udF aNO @@ -120700,14 +120583,14 @@ mEb bHY haT bGb -plv -plv -plv -plv -mJO -jPx -mgb -lyW +kks +kks +kks +kks +rng +fKC +jbS +qbs aag aag aag @@ -120736,23 +120619,23 @@ aag aag aag aag -vHn -hoT -hoT -cGd -vVY -vVY -vVY -vVY +qdy +oKB +oKB +rOR +ivy +ivy +ivy +ivy aba aGA kbv fZo -cGd -nnH -hoT -hoT -eJj +rOR +oJX +oKB +oKB +oxo ael afI agY @@ -120780,27 +120663,27 @@ iWN ajt kGI aPm -mRU -jtU -vpf -rXF -jtU -jtU -jtU -vpf -mRU +lYm +iTV +dhe +pmS +iTV +iTV +iTV +dhe +lYm mzs aPT xyB ceD -qSw -qSw -qSw -qSw -mRU -isq -vpf -woU +wqU +wqU +wqU +wqU +lYm +qUT +dhe +ckw aag aag aag @@ -120828,14 +120711,14 @@ aad aag aag aag -kyw -deq -qZK -bwG -bwG -bwG -bwG -bwG +nnw +xnn +lpH +pAH +pAH +pAH +pAH +pAH aLB dzF dzF @@ -120903,14 +120786,14 @@ cwQ vtB tQo bGb -mJO -mJO -mJO -mJO -mJO -jPx -pgJ -lyW +rng +rng +rng +rng +rng +fKC +rzK +qbs aag aag aag @@ -120939,23 +120822,23 @@ aag aag aag aag -vHn -hoT -tob -cGd -vVY -vVY -vVY -vVY -cGd +qdy +oKB +nxJ +rOR +ivy +ivy +ivy +ivy +rOR mAF ilq pjj -cGd -dkt -tob -hoT -xfW +rOR +dzS +nxJ +oKB +cNn ael afJ agY @@ -120983,27 +120866,27 @@ sDC ajt kGI ejp -mRU -jtU -vzB -mRU -bBc -vpf -jtU -vpf -mRU +lYm +iTV +eLq +lYm +yaa +dhe +iTV +dhe +lYm gfN efj sxE -mRU -qSw -qSw -qSw -qSw -mRU -vpI -jtU -woU +lYm +wqU +wqU +wqU +wqU +lYm +uCU +iTV +ckw aag aag aag @@ -121031,14 +120914,14 @@ aad aag aag aag -kyw -xwd -lfx -bwG -ycl -ycl -ycl -jCg +nnw +sMe +wli +pAH +pCe +pCe +pCe +vbk aLB enx aQt @@ -121106,14 +120989,14 @@ ojR tki lQQ bGb -plv -plv -plv -mbR -mJO -jPx -mgb -lyW +kks +kks +kks +xOb +rng +fKC +jbS +qbs aag aag aag @@ -121142,23 +121025,23 @@ aag aag aag aag -vHn -tob -xLu -cGd -vVY -vVY -vVY -vVY -cGd +qdy +nxJ +wTe +rOR +ivy +ivy +ivy +ivy +rOR hZE kbv mbx -cGd -gMJ -tob -hoT -xfW +rOR +uUD +nxJ +oKB +cNn ael afK ahc @@ -121185,28 +121068,28 @@ cnS iWN ajt nYv -mRU -mRU -jtU -oNM -mRU -tih -ycM -jtU -vpf -mRU +lYm +lYm +iTV +lcL +lYm +eSp +qsr +iTV +dhe +lYm aDS aPT hGV -mRU -qSw -qSw -qSw -qSw -mRU -jtU -vpf -woU +lYm +wqU +wqU +wqU +wqU +lYm +iTV +dhe +ckw aag aag aag @@ -121234,14 +121117,14 @@ aad aag aag aag -kyw -deq -lfx -bwG -ycl -ycl -ycl -ycl +nnw +xnn +wli +pAH +pCe +pCe +pCe +pCe aLB ewo aNO @@ -121309,14 +121192,14 @@ fsH bHY pBn bGb -plv -plv -plv -plv -mJO -nEl -xbg -lyW +kks +kks +kks +kks +rng +xIB +cER +qbs aag aag aag @@ -121345,23 +121228,23 @@ aag aag aag aag -vHn -tob -hUb -cGd -cGd -cGd -cGd -cGd -cGd +qdy +nxJ +ujc +rOR +rOR +rOR +rOR +rOR +rOR laM kbv nkH -cGd -eJZ -rRb -cXd -xew +rOR +cFb +tsI +sYe +eOY ael afL ahe @@ -121388,28 +121271,28 @@ cnS cnv ajt bYe -rXF -vpf -vpf -aBQ -mRU -mRU -mRU -gBs -mRU -mRU +pmS +dhe +dhe +tXX +lYm +lYm +lYm +hdf +lYm +lYm oIa aPT bqY -mRU -mRU -mRU -mRU -mRU -mRU -vpf -vpf -woU +lYm +lYm +lYm +lYm +lYm +lYm +dhe +dhe +ckw aag aag aag @@ -121432,19 +121315,19 @@ aKQ aaa aaa aab -kyw -kyw -kyw -kyw -kyw -kyw -deq -iGc -bwG -ycl -ycl -ycl -ycl +nnw +nnw +nnw +nnw +nnw +nnw +xnn +sro +pAH +pCe +pCe +pCe +pCe cmC aLG aNO @@ -121512,19 +121395,19 @@ pJJ bHY buH cnd -plv -plv -plv -plv -mJO -kLm -xbg -lyW -lyW -lyW -lyW -lyW -lyW +kks +kks +kks +kks +rng +faC +cER +qbs +qbs +qbs +qbs +qbs +qbs aaa aab aaa @@ -121548,23 +121431,23 @@ aag aag aag aag -vHn -tJq -bLf -cGd -vVY -vVY -vVY -tvS -cGd +qdy +wGa +tvm +rOR +ivy +ivy +ivy +pJa +rOR hZE kbv mbx -cGd -cva -cGd -cGd -cGd +rOR +leQ +rOR +rOR +rOR adO adO adO @@ -121591,28 +121474,28 @@ cnT xvh fNC cKY -mRU -mRU -mRU -mRU -mRU -jwM -oZn -jtU -lPW -mRU +lYm +lYm +lYm +lYm +lYm +jnl +wzC +iTV +bDN +lYm aDS aPT hGV -mRU -qSw -qSw -qSw -vMQ -mRU -wUJ -vpf -woU +lYm +wqU +wqU +wqU +axT +lYm +vJq +dhe +ckw aag aag aag @@ -121635,19 +121518,19 @@ aKQ aaa aaa aab -kyw -ety -deq -deq -deq -deq -deq -xJp -bwG -ycl -ycl -ycl -ycl +nnw +eNf +xnn +xnn +xnn +xnn +xnn +cVZ +pAH +pCe +pCe +pCe +pCe aLB fTU bbO @@ -121715,19 +121598,19 @@ cmd cmh wAR bGb -plv -plv -plv -plv -mJO -nEl -xbg -jPU -mgb -cgU -oqI -iDk -lyW +kks +kks +kks +kks +rng +xIB +cER +wuR +jbS +pga +ygb +fkF +qbs aaa aab aaa @@ -121751,23 +121634,23 @@ aag aag aag aag -vHn -hoT -rGz -cGd -vVY -vVY -vVY -vVY -cGd +qdy +oKB +qXe +rOR +ivy +ivy +ivy +ivy +rOR hHe gxn gKd -cGd -hoT -hoT -svV -rIE +rOR +oKB +oKB +far +ssF adO afM fpR @@ -121798,24 +121681,24 @@ aUH aXx jKI aXx -mRU -tih -vpf -jtU -vpf -mRU +lYm +eSp +dhe +iTV +dhe +lYm lCL pMA gcm -mRU -qSw -qSw -qSw -qSw -mRU -uNz -jtU -woU +lYm +wqU +wqU +wqU +wqU +lYm +bEW +iTV +ckw aag aag aag @@ -121838,19 +121721,19 @@ aKQ aaa aaa aab -kyw -byt -lfx -lfx -lfx -lfx -txp -veq -bwG -ycl -ycl -ycl -ycl +nnw +pDZ +wli +wli +wli +wli +dDd +dle +pAH +pCe +pCe +pCe +pCe aLB ahj ahj @@ -121918,19 +121801,19 @@ ajX ajX ajX bGb -plv -plv -plv -plv -mJO -rxq -sAS -cXX -sAS -sAS -nHG -xbg -lyW +kks +kks +kks +kks +rng +ncw +lTL +kyH +lTL +lTL +onr +cER +qbs aaa aab aaa @@ -121954,23 +121837,23 @@ aag aag aag aag -vHn -tob -alh -cGd -vVY -vVY -vVY -vVY +qdy +nxJ +sen +rOR +ivy +ivy +ivy +ivy bWh hmj kbv fZo -cGd -ykY -hoT -hoT -tjz +rOR +cWP +oKB +oKB +vyS adO afN ahh @@ -122001,24 +121884,24 @@ aUH oyE mMP mMP -mRU -jtU -vpf -jtU -vpf -mRU +lYm +iTV +dhe +iTV +dhe +lYm mzs aPT xyB cix -qSw -qSw -qSw -qSw -mRU -bWg -jtU -woU +wqU +wqU +wqU +wqU +lYm +wlQ +iTV +ckw aag aag aag @@ -122041,20 +121924,20 @@ aKQ aaa aaa aab -kyw -deq -lfx -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr +nnw +xnn +wli +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA wdb ahj ahj @@ -122120,20 +122003,20 @@ vra ajX ajX hBC -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -nEl -mgb -lyW +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +xIB +jbS +qbs aaa aab aaa @@ -122157,23 +122040,23 @@ aag aag aag aag -vHn -btV -hoT -cGd -vVY -vVY -vVY -vVY -cGd +qdy +xeV +oKB +rOR +ivy +ivy +ivy +ivy +rOR mAF ilq pjj -cGd -boU -nNI -hoT -veO +rOR +eKk +jEB +oKB +pqU adO afO ahh @@ -122204,24 +122087,24 @@ aUH sIA gSj aXA -mRU -jtU -vpf -jtU -bBc -mRU +lYm +iTV +dhe +iTV +yaa +lYm gfN efj sxE -mRU -qSw -qSw -qSw -qSw -mRU -kUL -tMU -woU +lYm +wqU +wqU +wqU +wqU +lYm +uyb +enA +ckw aag aag aag @@ -122244,10 +122127,10 @@ aKQ aaa aaa aab -kyw -deq -iGc -wDr +nnw +xnn +sro +wdA bbB bbB arn @@ -122311,7 +122194,7 @@ bNE wDJ ivs nyQ -dXH +ipY vWB bSK nyQ @@ -122333,10 +122216,10 @@ aoc aAv eZi eZi -wDr -jPx -wdW -lyW +wdA +fKC +lyV +qbs aaa aab aaa @@ -122360,23 +122243,23 @@ aag aag aag aag -vHn -tob -tob -cGd -vVY -vVY -vVY -vVY -cGd +qdy +nxJ +nxJ +rOR +ivy +ivy +ivy +ivy +rOR xXT sVV tkR -cGd -ipr -pUL -tob -eQd +rOR +ulG +lrD +nxJ +kiY adO jkj ahh @@ -122407,24 +122290,24 @@ aUd ckK iKM aHM -mRU -jtU -vpf -lPW -vwJ -mRU +lYm +iTV +dhe +bDN +dRf +lYm nme sfT vAH -mRU -qSw -qSw -qSw -qSw -mRU -edG -vpf -woU +lYm +wqU +wqU +wqU +wqU +lYm +wQM +dhe +ckw aag aag aag @@ -122447,10 +122330,10 @@ aKQ aaa aaa aab -kyw -lfx -gSH -wDr +nnw +wli +cTc +wdA bbB bbB arn @@ -122536,10 +122419,10 @@ aoc aAv eZi eZi -wDr -nEl -mgb -lyW +wdA +xIB +jbS +qbs aaa aab aaa @@ -122563,24 +122446,24 @@ aag aag aag aag -vHn -hoT -hoT -cGd -cGd -cGd -cGd -cGd -cGd +qdy +oKB +oKB +rOR +rOR +rOR +rOR +rOR +rOR ehL kyr chb -cGd -cGd -cGd -moK -cGd -cGd +rOR +rOR +rOR +jZD +rOR +rOR lFt ahh aiw @@ -122610,24 +122493,24 @@ aUH dbv lII aWc -mRU -gBs -mRU -mRU -mRU -mRU +lYm +hdf +lYm +lYm +lYm +lYm tCx ncG tZg -mRU -mRU -mRU -mRU -mRU -mRU -jtU -jtU -woU +lYm +lYm +lYm +lYm +lYm +lYm +iTV +iTV +ckw aag aag aag @@ -122650,10 +122533,10 @@ aKQ aaa aaa aab -kyw -oif -nRN -wDr +nnw +jtG +ecf +wdA bbB bbB arn @@ -122739,10 +122622,10 @@ aoc aAv eZi eZi -wDr -xgS -svF -lyW +wdA +buY +jta +qbs aaa aab aaa @@ -122766,24 +122649,24 @@ aag aag aag aag -vHn -hoT -tob -lso -hoT -tob -tob -hqm -rpG +qdy +oKB +nxJ +cgU +oKB +nxJ +nxJ +mvu +oFg cSa aeA sjz -rpG -hqm -tob -tob -hoT -fkK +oFg +mvu +nxJ +nxJ +oKB +cLx aiw ahh aiw @@ -122813,24 +122696,24 @@ aGz ckd mQC aHM -rXF -jtU -jtU -egQ -ycM -rXF +pmS +iTV +iTV +ivG +qsr +pmS wcm lJY guo -rXF -fLi -vpf -uBx -jtU -jtU -vpf -vpf -woU +pmS +uPD +dhe +qHK +iTV +iTV +dhe +dhe +ckw aag aag aag @@ -122853,21 +122736,21 @@ aKQ aaa aaa aab -kyw -vaV -qxJ -wDr +nnw +oBS +qvG +wdA bbC aan aan -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA aLT aLT aLT @@ -122930,22 +122813,22 @@ bUU uDW bSJ bSJ -ljv -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr +lij +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA tGq tGq jjT -wDr -wtk -mgb -lyW +wdA +hLq +jbS +qbs aaa aab aaa @@ -122970,23 +122853,23 @@ aag aag aag abh -cGd -cGd -moK -cGd -cGd -cGd -cGd -cGd +rOR +rOR +jZD +rOR +rOR +rOR +rOR +rOR wYa nBK mzS -cGd -cGd -cGd -cGd -tob -cGd +rOR +rOR +rOR +rOR +nxJ +rOR afP ahh aiw @@ -123016,23 +122899,23 @@ aGz drk mQC mkG -mRU -vpI -mRU -mRU -mRU -mRU +lYm +uCU +lYm +lYm +lYm +lYm nuM uHr xwX -mRU -mRU -mRU -mRU -mRU -gBs -mRU -mRU +lYm +lYm +lYm +lYm +lYm +hdf +lYm +lYm uOi aag aag @@ -123056,10 +122939,10 @@ aKQ aaa aaa aab -kyw -lfx -gUn -wDr +nnw +wli +egM +wdA bdY bdY bdY @@ -123070,7 +122953,7 @@ aaF aaF aaF aaF -wDr +wdA aLT aLT aLT @@ -123133,8 +123016,8 @@ bSJ bSJ bSJ bSJ -ljv -wDr +lij +wdA anm anm anm @@ -123145,10 +123028,10 @@ anm pfp pfp pfp -wDr -nEl -xbg -lyW +wdA +xIB +cER +qbs aaa aab aaa @@ -123187,9 +123070,9 @@ aeA bbe aeA aeA -cGd -tob -cGd +rOR +nxJ +rOR afQ aiw aiw @@ -123219,9 +123102,9 @@ aGz eqB obC hcf -mRU -cpQ -mRU +lYm +dlt +lYm lJY lJY lFK @@ -123259,10 +123142,10 @@ aKQ aaa aaa aab -kyw -oxn -oxn -wDr +nnw +nsh +nsh +wdA bdY bdY bdY @@ -123273,7 +123156,7 @@ aaF aaF aaF aaF -wDr +wdA aLT aLT bbY @@ -123302,7 +123185,7 @@ bEs bIs bdm rbY -eAG +gwD bOK bPD bYa @@ -123336,8 +123219,8 @@ clI clg clW bSJ -ljv -wDr +lij +wdA anm anm anm @@ -123348,10 +123231,10 @@ anm pfp pfp pfp -wDr -cZI -xGT -lyW +wdA +xzx +mSm +qbs aaa aab aaa @@ -123390,9 +123273,9 @@ asA amF kmE aeA -cGd -iTQ -cGd +rOR +rLQ +rOR ahJ ahJ ahJ @@ -123422,9 +123305,9 @@ aUH aGz aGz aGz -mRU -vzB -mRU +lYm +eLq +lYm lJY qbx dcp @@ -123462,10 +123345,10 @@ aKQ aaa aaa aab -emA -vIg -vIg -wDr +kHq +fhT +fhT +wdA bdY bdY bdY @@ -123476,7 +123359,7 @@ aaF aaF aaF aaF -wDr +wdA aLT aLT bca @@ -123539,8 +123422,8 @@ bSJ bVo clX bSJ -ljv -wDr +lij +wdA anm anm anm @@ -123551,10 +123434,10 @@ anm pfp pfp pfp -wDr -cOo -rJf -tcO +wdA +hgR +kzd +nhJ aaa aab aaa @@ -123593,9 +123476,9 @@ aeC vOh gUX ily -cGd -moK -cGd +rOR +jZD +rOR aWd aWd aWd @@ -123625,9 +123508,9 @@ pji aWd aWd aWd -mRU -gBs -mRU +lYm +hdf +lYm cBb xVS lJY @@ -123665,21 +123548,21 @@ aKQ aaa aaa aab -emA -gPS -gPS -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr +kHq +uBE +uBE +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA aLT aLT aLT @@ -123742,22 +123625,22 @@ bSJ bSJ bSJ bSJ -ljv -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -nGM -hIp -tcO +lij +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +drQ +pGD +nhJ aaa aab aaa @@ -123868,22 +123751,22 @@ aKQ aaa aaa aab -emA -jEM -ikT -owU -iTq -ikT -jEM -kjY -riB -fGi -qan -jkN -jUh -tIF -bCk -jkN +kHq +aYf +hsf +lpj +iED +hsf +aYf +iJU +gBP +kSA +twO +pkv +glm +qXm +sNC +pkv aLT bco aMB @@ -123945,22 +123828,22 @@ clJ bVn clY bSJ -ljv -dnZ -eHy -eHy -eHy -cyp -oaO -lWY -ljv -jiM -ere -lYg -lYg -sEu -lia -tcO +lij +vCB +oKi +oKi +oKi +tfj +qLO +vRW +lij +xtU +doX +fmZ +fmZ +bYd +fJA +nhJ aaa aab aaa @@ -124071,22 +123954,22 @@ aKQ aaa aaa aab -emA -kJZ -kjY -fGB -snN -jEM -ikT -jEM -lty -eTD -lty -jEM -ikT -kjY -bCk -heO +kHq +aXd +iJU +kFi +eTJ +aYf +hsf +aYf +gYL +aEE +gYL +aYf +hsf +iJU +sNC +lPP aLT bco bdr @@ -124114,7 +123997,7 @@ lOr iwI bdl bdl -reH +bEt bNP bmD bNP @@ -124148,22 +124031,22 @@ clJ clg clY bSJ -ljv -eaz -lYg -lYg -aqH -oxl -wac -mjy -ljv -ien -xhO -xhO -xhO -cmN -srl -tcO +lij +vHZ +fmZ +fmZ +eyp +moT +dwn +lCT +lij +fNY +aCr +aCr +aCr +ofP +eQa +nhJ aaa aab aaa @@ -124274,22 +124157,22 @@ aKQ aaa aaa aab -emA -emA -emA -emA -emA -sEg -ikT -jEM -ahL -bFl -nZW -jEM -ikT -jEM -jEM -bCk +kHq +kHq +kHq +kHq +kHq +pMI +hsf +aYf +nmq +gEM +sRk +aYf +hsf +aYf +aYf +sNC aLT bcZ bdr @@ -124313,10 +124196,10 @@ bzV beB mCo iwZ -jFy +lBF bKA -mPK -dmF +sbM +pWA pXV bNP bmD @@ -124351,22 +124234,22 @@ clK clg bVy bSJ -ljv -ljv -ljv -ljv -tWl -jer -ljv -ljv -ljv -jEA -hCq -tcO -tcO -tcO -tcO -tcO +lij +lij +lij +lij +eYC +crr +lij +lij +lij +myA +lkg +nhJ +nhJ +nhJ +nhJ +nhJ aaa aab aaa @@ -124405,9 +124288,9 @@ nqV aeA ajk ily -taw -mRI -taw +mBf +rFS +mBf blb aWd aXT @@ -124437,9 +124320,9 @@ pji jFg aWd pCD -kNq -cWo -kNq +fcW +kAO +fcW cBb xVS lJY @@ -124481,18 +124364,18 @@ aaa aaa aaa aaa -emA -tcm -ikT -jEM -uzv -tYr -uzv -jEM -ikT -hYf -jEM -ikT +kHq +ozP +hsf +aYf +kAN +cSi +kAN +aYf +hsf +gHm +aYf +hsf aLT bco bdr @@ -124554,18 +124437,18 @@ clJ clg clY bSJ -bXh -lYg -lYg -lYg -sEu -eaz -ere -lYg -lYg -sEu -gEh -tcO +jQK +fmZ +fmZ +fmZ +bYd +vHZ +doX +fmZ +fmZ +bYd +gbz +nhJ aaa aaa aaa @@ -124608,8 +124491,8 @@ wXh aeC ajs qon -taw -obJ +mBf +nUS aep ggQ ggQ @@ -124641,8 +124524,8 @@ aME ggQ aME aep -hog -kNq +eWV +fcW dHe kUV vcE @@ -124684,18 +124567,18 @@ aaa aaa aaa aaa -emA -hyb -fGB -kjY -yia -ugZ -kcG -fBo -ikT -jEM -jEM -ikT +kHq +enq +kFi +iJU +lSH +bJr +gQz +aRm +hsf +aYf +aYf +hsf aLT bco aMC @@ -124757,18 +124640,18 @@ clJ bVo clY bSJ -tgm -xhO -xhO -xhO -xhO -gEh -sOD -gEh -xhO -xhO -tWp -tcO +dOr +aCr +aCr +aCr +aCr +gbz +tNy +gbz +aCr +aCr +nxM +nhJ aaa aaa aaa @@ -124811,8 +124694,8 @@ aeC aeC ajs aeC -taw -oxy +mBf +nHf aep afj afk @@ -124844,8 +124727,8 @@ aHS afk sHo aep -vmu -kNq +waa +fcW vcE kUV vcE @@ -124887,18 +124770,18 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -emA -emA -emA -emA -emA -iTq -snN +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +iED +eTJ aLT aLT aLT @@ -124960,18 +124843,18 @@ bSJ bSJ bSJ bSJ -cZp -xhO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO +oeY +aCr +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -125014,8 +124897,8 @@ aeC aeA ajk aeA -taw -oxy +mBf +nHf aep afk afk @@ -125047,8 +124930,8 @@ afk aHl afk aep -hLt -kNq +tWL +fcW lJY itR kKR @@ -125099,9 +124982,9 @@ aaa aaa aaa aaa -emA -ikT -jEM +kHq +hsf +aYf aLT bcE aMB @@ -125163,9 +125046,9 @@ clL bVn clZ bSJ -tgm -xhO -tcO +dOr +aCr +nhJ aaa aaa aaa @@ -125217,8 +125100,8 @@ asA amF ohL aeA -taw -oQL +mBf +sJo aep aep aep @@ -125250,8 +125133,8 @@ aep aep aep aep -ddF -kNq +vKo +fcW lJY ucw dcp @@ -125302,9 +125185,9 @@ aaa aaa aaa aaa -emA -qGC -jEM +kHq +bhe +aYf aLT bcE bdr @@ -125366,9 +125249,9 @@ clL clg clZ bSJ -xMm -pFr -tcO +iLH +tRd +nhJ aaa aaa aaa @@ -125420,9 +125303,9 @@ ntI aeA aeC puO -taw -oxy -eRG +mBf +nHf +nXv aep aep aep @@ -125453,8 +125336,8 @@ jgr gGp dMf oIB -vmu -kNq +waa +fcW lJY uxC lJY @@ -125505,9 +125388,9 @@ aaa aaa aaa aaa -emA -ikT -jEM +kHq +hsf +aYf aLT abS bdr @@ -125569,9 +125452,9 @@ clK clg acp bSJ -qKK -gEh -tcO +mAO +gbz +nhJ aaa aaa aaa @@ -125617,19 +125500,19 @@ atr aeC atr aeC -taw -taw -taw -taw -mRI -taw -taw -oxy -hja -taw -taw -taw -taw +mBf +mBf +mBf +mBf +rFS +mBf +mBf +nHf +iIt +mBf +mBf +mBf +mBf alG aYj aoD @@ -125656,14 +125539,14 @@ fXE kaS aiQ oIB -vmu -kNq -kNq -kNq -kNq -qDB -kNq -kNq +waa +fcW +fcW +fcW +fcW +nVz +fcW +fcW vcE bXe vcE @@ -125708,9 +125591,9 @@ aaa aaa aaa aaa -emA -jEM -ikT +kHq +aYf +hsf aLT bcE aMC @@ -125772,9 +125655,9 @@ clL bVo clZ bSJ -hTU -lNk -tcO +cBR +uIF +nhJ aaa aaa aaa @@ -125820,19 +125703,19 @@ atr aeC atr aeC -taw -hEj -cvi -taw -wFX -taw -ncV -oxy -oQL -taw -oQL -oQL -taw +mBf +eHJ +lhS +mBf +mFa +mBf +jYh +nHf +sJo +mBf +sJo +sJo +mBf alK ajP aoD @@ -125859,14 +125742,14 @@ wqr bZw xUV oIB -vmu -vDR -kNq -toD -wDq -aPO -sNP -kNq +waa +nUs +fcW +glz +jbl +gGX +bWm +fcW vcE bXe vcE @@ -125911,9 +125794,9 @@ aaa aaa aaa aaa -emA -rIV -dYc +kHq +kin +omi aLT aLT aLT @@ -125975,9 +125858,9 @@ bSJ bSJ bSJ bSJ -xsv -gEh -tcO +sFO +gbz +nhJ aaa aaa aaa @@ -126023,19 +125906,19 @@ atu azU aeC ldl -taw -oxy -stA -taw -tvA -taw -oTc -nwT -ocI -mfH -nwT -nwT -mfH +mBf +nHf +euw +mBf +llF +mBf +pBE +rDk +tcP +nVY +rDk +rDk +nVY aTS ajP aoD @@ -126057,19 +125940,19 @@ alL alG aYD aTS -qgK +uHZ tEB uBM dXo oIB -xPu -uOE -kNq -swG -jei -aPO -hIX -kNq +ePc +wKe +fcW +wCF +pNu +gGX +ddC +fcW vcE pxJ swM @@ -126114,9 +125997,9 @@ aaa aaa aaa aaa -emA -jEM -kDd +kHq +aYf +dJF aLT bdJ bds @@ -126141,13 +126024,13 @@ jJs bdl bEp bCA -wlh -cvb -bmC -nwG -lDL -nwG -lMw +iPy +qvd +nAC +hcx +oxt +hcx +lSF jeO nQv ltb @@ -126178,9 +126061,9 @@ bSJ clM clS bSJ -cZp -gEh -tcO +oeY +gbz +nhJ aaa aaa aaa @@ -126220,25 +126103,25 @@ aaa aad aag aag -fTl -taw -taw -taw -mRI -taw -taw -wpT -stA -taw -wTn -taw -nQw -oxy -wjP -taw -oQL -oQL -taw +sTT +mBf +mBf +mBf +rFS +mBf +mBf +fWP +euw +mBf +lOa +mBf +iao +nHf +sEC +mBf +sJo +sJo +mBf uBz aYj aoE @@ -126265,20 +126148,20 @@ wKF hzb ltU oIB -aPO -eDk -kNq -bCR -jei -aPO -fJp -kNq -kNq -kNq -kNq -qDB -kNq -fVe +gGX +xsj +fcW +maG +pNu +gGX +cvp +fcW +fcW +fcW +fcW +nVz +fcW +bMH aag aag afm @@ -126317,9 +126200,9 @@ aaa aaa aaa aaa -emA -jEM -ikT +kHq +aYf +hsf aLT beT bdr @@ -126344,13 +126227,13 @@ beB bdl ycp ycp -tPj +qmb ycp ycp bdl bdl -rtj -agv +vna +vuw bdl bdl bdl @@ -126381,9 +126264,9 @@ clG clg bVq bSJ -ien -dFL -tcO +fNY +fcx +nhJ aaa aaa aaa @@ -126423,25 +126306,25 @@ aaa aaa aad aag -fTl -vrZ -qlu -taw -wTn -kCu -taw -uPN -stA -taw -wFX -taw -lsh -oxy -hja -taw -oQL -hja -taw +sTT +bic +bZu +mBf +lOa +ihI +mBf +oBM +euw +mBf +mFa +mBf +sMC +nHf +iIt +mBf +sJo +iIt +mBf jMK ajR aoG @@ -126468,20 +126351,20 @@ phj vEf cNK oIB -aPO -jei -oYr -aPO -aPO -aPO -jei -jei -lYt -jei -jei -aPO -jei -fVe +gGX +pNu +caZ +gGX +gGX +gGX +pNu +pNu +vtZ +pNu +pNu +gGX +pNu +bMH aag ajZ aaa @@ -126520,9 +126403,9 @@ aaa aaa aaa aaa -emA -sEg -ikT +kHq +pMI +hsf aLT aLT aLT @@ -126547,13 +126430,13 @@ jJs bdl fKT bGy -kOW -snM -iqo +fUL +aZJ +fMK bdl -clV -crD -kLP +rGZ +tLA +lVK gvU cyo bdl @@ -126584,9 +126467,9 @@ bSJ bSJ bSJ bSJ -cZp -xhO -tcO +oeY +aCr +nhJ aaa aaa aaa @@ -126626,25 +126509,25 @@ aaa aaa aad aag -fTl -hjT -rWb -taw -oAK -kCu -taw -mRI -taw -taw -tvA -taw -oQL -oxy -oQL -taw -cap -fiN -taw +sTT +khz +cPy +mBf +kFM +ihI +mBf +rFS +mBf +mBf +llF +mBf +sJo +nHf +sJo +mBf +rsr +uUa +mBf rFY ctC aoQ @@ -126671,20 +126554,20 @@ opI dha pxj oIB -aPO -oUx -kNq -fPF -jei -nNT -jwJ -mgX -nZG -nZG -nZG -xGm -jei -fVe +gGX +gRt +fcW +tpQ +pNu +fFN +aYN +uhn +iWD +iWD +iWD +mVY +pNu +bMH aag ajZ aaa @@ -126723,9 +126606,9 @@ aaa aaa aaa aaa -emA -jEM -ikT +kHq +aYf +hsf aLT beT bdr @@ -126787,9 +126670,9 @@ clH oFV bVq bSJ -vUJ -hCq -tcO +vEv +lkg +nhJ aaa aaa aaa @@ -126829,25 +126712,25 @@ aaa aaa aad aag -fTl -qlu -uKl -kiR -oxy -oQL -jsu -oQL -gqt -oxy -oxy -kiR -oxy -oxy -oQL -taw -taw -taw -taw +sTT +bZu +ace +vMv +nHf +sJo +lGV +sJo +iAo +nHf +nHf +vMv +nHf +nHf +sJo +mBf +mBf +mBf +mBf aEp lIw aoR @@ -126877,17 +126760,17 @@ loP qej loP loP -kNq -fJp -aPO -wXl -dJe -unQ -nxe -tjH -tVn -oUx -fVe +fcW +cvp +gGX +ekz +cBE +crG +xdT +qeO +uAx +gRt +bMH aag ajZ aaa @@ -126926,9 +126809,9 @@ aaa aaa aaa aaa -emA -ikT -jEM +kHq +hsf +aYf aLT beU bdv @@ -126952,7 +126835,7 @@ baq jJs bdl ntd -hgO +iVj eqb mLR hdE @@ -126990,9 +126873,9 @@ bSJ clN clT bSJ -xsv -gEh -tcO +sFO +gbz +nhJ aaa aaa aaa @@ -127032,25 +126915,25 @@ aaa aaa aad aag -fTl -wIu -wXJ -taw -oxy -kMa -qIa -iSB -oxy -oQL -hdy -taw -oQL -oxy -oQL -taw -liF -wPR -taw +sTT +glC +oCV +mBf +nHf +hYj +mtj +oPS +nHf +sJo +hoC +mBf +sJo +nHf +sJo +mBf +lLx +aoZ +mBf ndJ anJ aoS @@ -127080,17 +126963,17 @@ vqL xBY qwo loP -ang -hqu -aPO -wXl -fJp -iCD -iCD -iCD -tVn -jei -fVe +qrS +jzp +gGX +ekz +cvp +nLT +nLT +nLT +uAx +pNu +bMH aag ajZ aaa @@ -127129,9 +127012,9 @@ aaa aaa aaa aaa -emA -qGC -jEM +kHq +bhe +aYf aLT aLT aLT @@ -127193,9 +127076,9 @@ bSJ bSJ bSJ bSJ -goM -tfQ -tcO +kTt +toh +nhJ aaa aaa aaa @@ -127235,25 +127118,25 @@ aaf aaf aag aag -fTl -taw -taw -taw -wTn -wOv -tuJ -iKV -oxy -oQL -oFr -taw -mUL -oxy -oQL -taw -oQL -oQL -taw +sTT +mBf +mBf +mBf +lOa +wNN +vts +lVv +nHf +sJo +ftE +mBf +kWc +nHf +sJo +mBf +sJo +sJo +mBf alG aDZ aoU @@ -127283,17 +127166,17 @@ wSn xBY lKa loP -fvo -jei -aPO -wXl -kNq -jcE -jei -lVR -pHD -dhp -fVe +yhx +pNu +gGX +ekz +fcW +qyu +pNu +fXG +xft +riw +bMH aag aag aaf @@ -127328,13 +127211,13 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -ikT -ikT +kHq +kHq +kHq +kHq +kHq +hsf +hsf aLT vZb tnY @@ -127396,13 +127279,13 @@ hcI hcI vPK bSJ -cZp -gEh -tcO -tcO -tcO -tcO -tcO +oeY +gbz +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -127438,25 +127321,25 @@ aag aag aag aag -fTl -hEr -oQL -kiR -oxy -wOv -qlu -qAG -oxy -kMa -gQu -taw -lsh -oxy -wjP -taw -oQL -oQL -taw +sTT +siP +sJo +vMv +nHf +wNN +bZu +hBR +nHf +hYj +sGD +mBf +sMC +nHf +sEC +mBf +sJo +sJo +mBf ylJ aDZ aoD @@ -127486,17 +127369,17 @@ kdi xBY kxo loP -nSk -jei -aPO -wXl -kNq -cke -hqu -oSR -fZI -jei -fVe +pwJ +pNu +gGX +ekz +fcW +wsw +jzp +cua +qJr +pNu +bMH aag aag aag @@ -127531,13 +127414,13 @@ aaa aaa aaa aaa -emA -hyb -kjY -kcG -tIF -jEM -ikT +kHq +enq +iJU +gQz +qXm +aYf +hsf aWT aMH beV @@ -127567,16 +127450,16 @@ bdl bdl bdl bdl -xWo +voU bdl bdl bdl bdl -reN -dEp -reN -htk -dEp +fqh +qtO +fqh +qgM +qtO bdl bdl cbV @@ -127599,13 +127482,13 @@ aMI wGE erG ewO -sEu -xhO -ffx -jhK -srl -lWY -tcO +bYd +aCr +uFE +eMt +eQa +vRW +nhJ aaa aaa aaa @@ -127641,25 +127524,25 @@ aag aag aag aag -fTl -hEr -xBS -taw -tTG -wOv -wIu -ydf -oxy -wOv -ixu -taw -wXJ -oxy -oxy -kiR -oxy -oxy -kiR +sTT +siP +dOX +mBf +ckq +wNN +glC +lGi +nHf +wNN +heI +mBf +oCV +nHf +nHf +vMv +nHf +nHf +vMv aWd aDZ nfp @@ -127689,17 +127572,17 @@ xBY xBY jGI loP -kNq -fJp -nOx -wXl -kNq -kNq -kNq -kNq -pAV -jei -fVe +fcW +cvp +uyV +ekz +fcW +fcW +fcW +fcW +jCu +pNu +bMH aag aag aag @@ -127734,13 +127617,13 @@ aaa aaa aaa aaa -emA -jkN -ikT -ikT -ikT -ikT -ikT +kHq +pkv +hsf +hsf +hsf +hsf +hsf aLT aZf duV @@ -127761,27 +127644,27 @@ kcl aLG aYO bZK -lZM -rSR -xss -rLK -xss -xss -uHk -dXb -dXb -dXb -cTX -xss -xss -dXb -ndm -xss -iFY -dXb -xss -xss -lZM +mgZ +wVU +row +rXg +row +row +kDT +fRD +fRD +fRD +muJ +row +row +fRD +jZz +row +evQ +fRD +row +row +mgZ cbW iEb bIT @@ -127802,13 +127685,13 @@ jGR jGR oqu bSJ -gEh -gEh -gEh -gEh -gEh -xhO -tcO +gbz +gbz +gbz +gbz +gbz +aCr +nhJ aaa aaa aaa @@ -127844,25 +127727,25 @@ aag aag aag aag -fTl -oqc -smw -taw -oxy -rgk -nUT -cnP -oxy -wOv -qlu -taw -qlu -oxy -oQL -taw -oQL -oQL -lnD +sTT +ozw +qzm +mBf +nHf +shJ +jXL +rcw +nHf +wNN +bZu +mBf +bZu +nHf +sJo +mBf +sJo +sJo +jpu alG aDZ xrr @@ -127892,17 +127775,17 @@ odD xBY mOg oHx -aPO -iXB -aPO -gof -bVr -ivL -ivL -ivL -fVa -jei -fVe +gGX +vnE +gGX +rji +lcM +cTb +cTb +cTb +gxW +pNu +bMH aag aag aag @@ -127937,9 +127820,9 @@ aaa aaa aaa aaa -emA -fGi -ikT +kHq +kSA +hsf aLT aLT aLT @@ -127964,13 +127847,13 @@ aQL beB aYT bzY -cvx -cvx -bKJ -cvx -cvx -cvx -cvx +qwT +qwT +xIy +qwT +qwT +qwT +qwT vub vub vub @@ -127978,13 +127861,13 @@ owW vub vub vub -cvx -cvx -cvx -bKJ -cvx -cvx -cvx +qwT +qwT +qwT +xIy +qwT +qwT +qwT cbX cbS ccO @@ -128009,9 +127892,9 @@ bSJ bSJ bSJ bSJ -gEh -dFL -tcO +gbz +fcx +nhJ aaa aaa aaa @@ -128047,25 +127930,25 @@ aag aag aag aag -fTl -taw -taw -taw -wTn -oQL -oQL -lUQ -oxy -tBU -iDs -taw -qlu -oxy -hja -taw -kLZ -tty -lnD +sTT +mBf +mBf +mBf +lOa +sJo +sJo +rEs +nHf +oFn +kpl +mBf +bZu +nHf +iIt +mBf +wfG +lPE +jpu alG aDZ xrr @@ -128095,17 +127978,17 @@ loP eMh loP loP -kNq -hnt -aPO -wSx -gYI -wPa -gYI -gYI -rzk -jei -fVe +fcW +cGP +gGX +wXS +kHv +rbE +kHv +kHv +foU +pNu +bMH aag aag aag @@ -128140,9 +128023,9 @@ aaa aaa aaa aaa -emA -jEM -ikT +kHq +aYf +hsf aLT bBg vPv @@ -128212,9 +128095,9 @@ qNd hzu hcI bSJ -xhO -xhO -tcO +aCr +aCr +nhJ aaa aaa aaa @@ -128250,25 +128133,25 @@ aag aag aag aag -fTl -oQL -mOE -gUG -oxy -oQL -taw -taw -mRI -taw -taw -taw -ixu -oxy -oQL -taw -taw -taw -taw +sTT +sJo +oPv +rEd +nHf +sJo +mBf +mBf +rFS +mBf +mBf +mBf +heI +nHf +sJo +mBf +mBf +mBf +mBf alG aDZ xrr @@ -128299,16 +128182,16 @@ vyI lPB oHl jWh -kNq -qDB -kNq -kNq -kNq -kNq -kNq -gGb -oUx -fVe +fcW +nVz +fcW +fcW +fcW +fcW +fcW +eEv +gRt +bMH aag aag aag @@ -128343,9 +128226,9 @@ aaa aaa aaa aaa -emA -jEM -jEM +kHq +aYf +aYf aLT nuN nuN @@ -128415,9 +128298,9 @@ rYp oEo oEo bSJ -xhO -lMO -tcO +aCr +aCB +nhJ aaa aaa aaa @@ -128453,25 +128336,25 @@ aag aag aag aag -fTl -oxy -oxy -bCv -oxy -oQL -taw -gCQ -rEs -tvr -taw -lsh -oQL -oxy -oQL -aYU -uxs -iDs -taw +sTT +nHf +nHf +vag +nHf +sJo +mBf +lnb +gBO +ozt +mBf +sMC +sJo +nHf +sJo +eNO +sCi +kpl +mBf alG aDZ xrr @@ -128502,16 +128385,16 @@ hSk hSk uIv jWh -jZj -sRP -oko -kNq -tiY -qAK -xGK -gGb -jei -fVe +nmp +iPe +dbj +fcW +eje +olv +njr +eEv +pNu +bMH aag aag aag @@ -128546,9 +128429,9 @@ aaa aaa aaa aaa -emA -oPF -jEM +kHq +slG +aYf aLT vug vug @@ -128618,9 +128501,9 @@ yle wWX wWX bSJ -xhO -xHa -tcO +aCr +dvi +nhJ aaa aaa aaa @@ -128656,25 +128539,25 @@ aag aag aag aag -fTl -wTn -oQL -qmq -oQL -nXo -taw -gCQ -bNc -tCC -taw -ftG -oQL -oxy -oQL -oQL -oQL -keE -taw +sTT +lOa +sJo +dLx +sJo +rYM +mBf +lnb +pVG +ndd +mBf +vAu +sJo +nHf +sJo +sJo +sJo +tlX +mBf alJ aDZ xrr @@ -128705,16 +128588,16 @@ hSk hSk uIv jWh -eHz -aPO -tMT -kNq -jei -ltm -oAT -gGb -cmV -fVe +iCI +gGX +gMj +fcW +pNu +vBa +bcQ +eEv +yen +bMH aag aag aag @@ -128749,9 +128632,9 @@ aaa aaa aaa aaa -emA -rIV -nvI +kHq +kin +iZh aLT iPS vAE @@ -128821,9 +128704,9 @@ vSW scy kPJ bSJ -xhO -eeR -tcO +aCr +wkJ +nhJ aaa aaa aaa @@ -128859,25 +128742,25 @@ aag aag aag aag -fTl -oxy -taw -taw -xcs -taw -taw -utC -oxy -ikC -vRJ -gNQ -laP -gNQ -gNQ -gNQ -gNQ -gNQ -xDG +sTT +nHf +mBf +mBf +mkq +mBf +mBf +opU +nHf +iqN +ovx +fwQ +wJS +fwQ +fwQ +fwQ +fwQ +fwQ +wZD alP ajW apc @@ -128908,16 +128791,16 @@ vyI kpQ vSE jWh -nwA -xZz -kRN -kNq -jei -ltm -ejj -gGb -jei -fVe +pPw +iay +waG +fcW +pNu +vBa +xiD +eEv +pNu +bMH aag aag aag @@ -128952,9 +128835,9 @@ aaa aaa aaa aaa -emA -sEg -kDd +kHq +pMI +dJF aLT aLT aLT @@ -129024,9 +128907,9 @@ bSJ bSJ bSJ bSJ -qid -lNk -tcO +twi +uIF +nhJ aaa aaa aaa @@ -129062,25 +128945,25 @@ aag aag aag aag -fTl -oxy -taw -tZM -qEZ -frV -taw -gCQ -uqJ -vbu -taw -taw -taw -mRI -taw -taw -taw -taw -taw +sTT +nHf +mBf +vkW +uVx +aFE +mBf +lnb +fmY +mkW +mBf +mBf +mBf +rFS +mBf +mBf +mBf +mBf +mBf ylJ aDZ apd @@ -129111,16 +128994,16 @@ qbZ jWh jWh jWh -fQl -aPO -nGZ -kNq -xQe -jei -lVR -pHD -dhp -fVe +rYT +gGX +lQk +fcW +iOt +pNu +fXG +xft +riw +bMH aag aag aag @@ -129155,9 +129038,9 @@ aaa aaa aaa aaa -emA -eTD -ikT +kHq +aEE +hsf aLT bBg vPv @@ -129227,9 +129110,9 @@ mAV hzu hcI bSJ -rqz -xhO -tcO +dpM +aCr +nhJ aaa aaa aaa @@ -129265,17 +129148,17 @@ aag aag aag aag -fTl -lmq -taw -mDz -pIf -uwf -taw -gCQ -rEs -bhZ -taw +sTT +pSP +mBf +vwJ +vWa +iIa +mBf +lnb +gBO +sXg +mBf uiG rTZ tfb @@ -129314,16 +129197,16 @@ cKL jbH rJh jWh -rJY -dPl -qQG -kNq -cfm -jei -oSR -grd -jei -fVe +pOa +fZu +gyT +fcW +eeL +pNu +cua +fNv +pNu +bMH aag aag aag @@ -129358,9 +129241,9 @@ aaa aaa aaa aaa -emA -efP -ikT +kHq +gER +hsf aLT cjc cjc @@ -129430,9 +129313,9 @@ yfm fXN fXN bSJ -gEh -xhO -tcO +gbz +aCr +nhJ aaa aaa aaa @@ -129468,17 +129351,17 @@ aag aag aag aag -fTl -oxy -taw -taw -taw -taw -taw -taw -mRI -taw -taw +sTT +nHf +mBf +mBf +mBf +mBf +mBf +mBf +rFS +mBf +mBf bNM wkX jhx @@ -129517,16 +129400,16 @@ soP eoG uIv jWh -kNq -qDB -kNq -kNq -kNq -fJp -ekz -gGb -oUx -fVe +fcW +nVz +fcW +fcW +fcW +cvp +tIE +eEv +gRt +bMH aag aag aag @@ -129561,9 +129444,9 @@ aaa aaa aaa aaa -emA -uzv -ikT +kHq +kAN +hsf aLT cjc cjc @@ -129633,9 +129516,9 @@ yfm fXN fXN bSJ -xhO -dFL -tcO +aCr +fcx +nhJ aaa aaa aaa @@ -129671,13 +129554,13 @@ aag aag aag aag -fTl -wTn -mOE -sWp -nUm -moL -taw +sTT +lOa +oPv +dFW +gog +bBO +mBf mDJ owg xUA @@ -129720,16 +129603,16 @@ ovi iat eim jWh -kNq -spd -kNq -kNq -dVH -cAz -bVr -pHD -jei -fVe +fcW +mEN +fcW +fcW +ieG +nGp +lcM +xft +pNu +bMH aag aag aag @@ -129764,9 +129647,9 @@ aaa aaa aaa aaa -emA -hfO -ikT +kHq +aDY +hsf aLT iPS vAE @@ -129836,9 +129719,9 @@ gEo scy kPJ bSJ -gEh -pFr -tcO +gbz +tRd +nhJ aaa aaa aaa @@ -129874,13 +129757,13 @@ aag aag aag aag -fTl -oxy -oxy -tIN -oxy -oxy -kiR +sTT +nHf +nHf +fcK +nHf +nHf +vMv owg owg uKV @@ -129923,16 +129806,16 @@ thV uWV uIv oSx -kNq -oUx -kNq -kNq -fJp -ekz -hqu -jei -qDS -fVe +fcW +gRt +fcW +fcW +cvp +tIE +jzp +pNu +ght +bMH aag aag aag @@ -129967,9 +129850,9 @@ aaa aaa aaa aaa -emA -jkN -ikT +kHq +pkv +hsf aLT aLT aLT @@ -130039,9 +129922,9 @@ bSJ bSJ bSJ bSJ -gEh -kMR -tcO +gbz +owD +nhJ aaa aaa aaa @@ -130077,13 +129960,13 @@ aah aag aag aag -fTl -pWw -hbE -cbc -qIa -qIa -taw +sTT +jaF +emX +iGH +mtj +mtj +mBf ptK afX ptK @@ -130126,16 +130009,16 @@ upR fCL uIv vVw -iSV -jei -oYr -jei -aPO -aPO -aPO -gtQ -wiO -fVe +cWF +pNu +caZ +pNu +gGX +gGX +gGX +mdG +hNn +bMH aag aag aag @@ -130170,14 +130053,14 @@ aaa aaa aaa aaa -emA -hyb -jEM -jEM -jEM -jEM -hyb -jEM +kHq +enq +aYf +aYf +aYf +aYf +enq +aYf aLT cjc cjc @@ -130237,14 +130120,14 @@ kPJ fXN fXN bSJ -enY -srl -gEh -xhO -xhO -xhO -jay -tcO +hMV +eQa +gbz +aCr +aCr +aCr +sce +nhJ aaa aaa aaa @@ -130280,13 +130163,13 @@ aaa aad aag aag -fTl -prX -oYs -odG -biC -qlu -taw +sTT +hEB +ojg +mbp +bib +bZu +mBf bKm hsr mDJ @@ -130329,16 +130212,16 @@ pZK fCL uIv lFA -kNq -jei -kNq -kNq -jei -jei -gYU -oGi -dVR -fVe +fcW +pNu +fcW +fcW +pNu +pNu +kjY +kMW +uGy +bMH aag aag ajZ @@ -130373,14 +130256,14 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -jEM -ikT -jEM +kHq +kHq +kHq +kHq +kHq +aYf +hsf +aYf aLT iPS vAE @@ -130419,10 +130302,10 @@ xYP jmK hcw cgE -yht -blq +qGS +dPf buJ -jHe +lln buH bJC kIP @@ -130440,14 +130323,14 @@ oer vSW scy bSJ -mCE -qid -hCq -tcO -tcO -tcO -tcO -tcO +ljD +twi +lkg +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -130483,13 +130366,13 @@ aaa aad aag aag -fTl -fTl -fTl -fTl -fTl -fTl -fTl +sTT +sTT +sTT +sTT +sTT +sTT +sTT qJx hsr mDJ @@ -130532,16 +130415,16 @@ ovi fCL lYk bYn -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe +bMH +bMH +bMH +bMH +bMH +bMH +bMH +bMH +bMH +bMH aag aag ajZ @@ -130580,10 +130463,10 @@ aaa aaa aaa aaa -emA -oPF -ikT -jEM +kHq +slG +hsf +aYf aLT meY meY @@ -130622,7 +130505,7 @@ wLm wLm lJu xYP -wbV +hko laU buH hop @@ -130643,10 +130526,10 @@ oer oer oer oer -uVp -gEh -pFr -tcO +tQw +gbz +tRd +nhJ aaa aaa aaa @@ -130783,18 +130666,18 @@ aaa aaa aaa aaa -emA -wtn -ikT -ikT -ikT -ikT -ikT -ikT -ikT -jEM -ikT -jEM +kHq +eRm +hsf +hsf +hsf +hsf +hsf +hsf +hsf +aYf +hsf +aYf aQL qZX qZX @@ -130838,18 +130721,18 @@ lbf lbf lbf bJC -gEh -cmN -gEh -xhO -dzX -foS -xhO -gEh -gEh -gEh -gEh -tcO +gbz +ofP +gbz +aCr +doM +nda +aCr +gbz +gbz +gbz +gbz +nhJ aaa aaa aaa @@ -130986,18 +130869,18 @@ aaa aaa aaa aaa -emA -pGj -uoj -jEM -jEM -jEM -jEM -fBo -jEM -jEM -jEM -jEM +kHq +dJm +nmS +aYf +aYf +aYf +aYf +aRm +aYf +aYf +aYf +aYf aQL qDq qDq @@ -131041,18 +130924,18 @@ oXb oXb oXb bJC -gEh -xhO -gEh -xhO -gEh -hWH -xhO -gEh -xhO -xhO -rhD -tcO +gbz +aCr +gbz +aCr +gbz +uvB +aCr +gbz +aCr +aCr +wqX +nhJ aaa aaa aaa @@ -131189,18 +131072,18 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -emA -emA -emA -emA -emA -ikT -oBr +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +hsf +qwE aQL qDq qDq @@ -131244,18 +131127,18 @@ oXb oXb oXb bJC -xhO -gEh -gEh -tcO -tcO -ucy -tcO -tcO -tcO -tcO -tcO -tcO +aCr +gbz +gbz +nhJ +nhJ +urZ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -131401,9 +131284,9 @@ aaa aaa aaa aaa -emA -qGC -hyb +kHq +bhe +enq aQL ksp ksp @@ -131447,10 +131330,10 @@ kIP qer kIP bJC -xhO -wYd -pFr -tcO +aCr +wFG +tRd +nhJ aaa aaa aaa @@ -131604,9 +131487,9 @@ aaa aaa aaa aaa -emA -ikT -jEM +kHq +hsf +aYf aQL aQL aQL @@ -131616,31 +131499,31 @@ rou ksp aQL aLG -aZl +nFG tzf mRS tzf tBL -bhn +dUf tBL tBL tBL -crW +sub tBL tBL -mji -ftx -ftx -bUz -ftx -ftx -ftx -bCE -ftx +wnQ +uWp +uWp +kJr +uWp +uWp +uWp +xcl +uWp hvp -rUs +mBZ hvp -bIl +gcz bIR bJC kIP @@ -131650,10 +131533,10 @@ bJC bJC bJC bJC -gEh -gEh -gEh -tcO +gbz +gbz +gbz +nhJ aaa aaa aaa @@ -131807,17 +131690,17 @@ aaa aaa aaa aaa -emA -ikT -jEM -jEM -hYf -jEM -oBr -oBr -oBr -oBr -oBr +kHq +hsf +aYf +aYf +gHm +aYf +qwE +qwE +qwE +qwE +qwE tfl aLG aLG @@ -131831,7 +131714,7 @@ aLG beB aLG aLG -bsV +qll buH buH bJz @@ -131844,19 +131727,19 @@ buH cbD buH buH -jMb +sXh bJC bJC bJC bJC bJC -xhO -xhO -xhO -gEh -xhO -xfq -tcO +aCr +aCr +aCr +gbz +aCr +dXc +nhJ aaa aaa aaa @@ -132010,21 +131893,21 @@ aaa aaa aaa aaa -emA -kAv -jEM -ikT -ikT -jEM -jEM -gCu -ikT -ikT -oBr -oBr -qPn -oBr -oBr +kHq +kai +aYf +hsf +hsf +aYf +aYf +lfs +hsf +hsf +qwE +qwE +bhV +qwE +qwE bCW bEH bHt @@ -132044,22 +131927,22 @@ bYE bZz cav bBa -ljv -ljv -sUi -ljv -ljv -xhO -xhO -xhO -xhO -xhO -xhO -xhO -xhO -xhO -srl -tcO +lij +lij +saa +lij +lij +aCr +aCr +aCr +aCr +aCr +aCr +aCr +aCr +aCr +eQa +nhJ aaa aaa aaa @@ -132213,22 +132096,22 @@ aaa aaa aaa aaa -emA -qFS -pPG -jEM -jEM -jEM -jEM -gCu -jEM -jEM -oBr -sRM -jEM -jEM -oBr -oBr +kHq +qev +gaW +aYf +aYf +aYf +aYf +lfs +aYf +aYf +qwE +nSI +aYf +aYf +qwE +qwE sqg rPQ sqg @@ -132246,23 +132129,23 @@ oJk sqg mgu sqg -ljv -ljv -xhO -gEh -xhO -xhO -gEh -gEh -gEh -xhO -xhO -xhO -xhO -gEh -aEr -keO -tcO +lij +lij +aCr +gbz +aCr +aCr +gbz +gbz +gbz +aCr +aCr +aCr +aCr +gbz +tbz +xUS +nhJ aaa aaa aaa @@ -132416,22 +132299,22 @@ aaa aaa aaa aaa -emA -twp -iyE -ecb -ikT -ikT -ikT -ctp -ecb -jEM -jEM -jEM -jEM -ikT -ikT -oBr +kHq +hFR +kJD +fMn +hsf +hsf +hsf +aPP +fMn +aYf +aYf +aYf +aYf +hsf +hsf +qwE fcS gdJ oyR @@ -132449,23 +132332,23 @@ oJk ppn nAY cjt -ljv -ceY -gIm -gEh -gEh -gEh -xhO -wra -xhO -gEh -xhO -gEh -gEh -sOD -eMx -xgr -tcO +lij +xtk +xWh +gbz +gbz +gbz +aCr +erR +aCr +gbz +aCr +gbz +gbz +tNy +lgI +ulI +nhJ aaa aaa aaa @@ -132619,22 +132502,22 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -emA -emA +kHq +kHq +kHq +kHq +kHq +kHq +kHq vgw sqg sqg sqg mpP sqg -oBr -qGC -oBr +qwE +bhe +qwE fcS gdJ oyR @@ -132652,23 +132535,23 @@ oJk pkA nAY cjt -ljv -gEh -ljv +lij +gbz +lij sqg mpP aep aep aep dKL -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -132836,8 +132719,8 @@ sqg rwB lKM sqg -nSq -oBr +vJJ +qwE fcS gdJ cjt @@ -132855,8 +132738,8 @@ pRZ fcS nAY jOE -ljv -mPc +lij +lGo sqg qEL vmE @@ -132956,9 +132839,9 @@ eky ins wRP aHe -eZm -eZm -eZm +wUB +wUB +wUB jWh jWh sWC @@ -133039,8 +132922,8 @@ sqg eKy wQA sqg -jEM -oBr +aYf +qwE uYn jaM oXM @@ -133058,8 +132941,8 @@ mkP muQ ojh nxx -ljv -xhO +lij +aCr sqg gEC skC @@ -133141,9 +133024,9 @@ gPc trB exy ptK -fLl -fLl -fLl +diy +diy +diy eky eky aNl @@ -133159,9 +133042,9 @@ eky aNl eky rqj -eZm -jYm -aZI +wUB +pLB +tpk jWh duz hXG @@ -133344,9 +133227,9 @@ eet fcP pDh ptK -aqZ -aqZ -ptQ +uQp +uQp +rlO aMT aMT dPm @@ -133362,9 +133245,9 @@ okg dPm aMT aMT -hbp -mwP -mwP +qtZ +aBO +aBO jWh axR mIP @@ -133547,9 +133430,9 @@ wxj lht rYv ptK -haO -pKB -fLl +frq +iDx +diy svf arV wZX @@ -133565,9 +133448,9 @@ eky wZX arV vUh -eZm -xUy -mwP +wUB +dnW +aBO jWh vpv pgw @@ -133750,9 +133633,9 @@ ptK afX ptK ptK -haO -fLl -fLl +frq +diy +diy lDn arV wZX @@ -133768,9 +133651,9 @@ eky wZX arV wkA -eZm -eZm -mwP +wUB +wUB +aBO jWh jWh kLc @@ -133945,16 +133828,16 @@ bdH uMc bNM ofK -fLl -uxl -haO -ebf -haO -aqZ -tot -haO -qqS -fLl +diy +lkN +frq +dfv +frq +uQp +hOc +frq +oeq +diy xrq vVu arV @@ -133972,16 +133855,16 @@ wZX arV oIt xrq -eZm -qHG -mwP -xQW -vJR -mwP -hkz -ckj -oaw -eZm +wUB +hZp +aBO +dsp +vsa +aBO +exX +fDm +hyL +wUB lbB uIv pql @@ -134148,16 +134031,16 @@ bdH uMc bNM ofK -fLl -uxl -haO -uLG -haO -aqZ -pbo -haO -xLn -fLl +diy +lkN +frq +cIZ +frq +uQp +fUF +frq +ruS +diy vlk mKy aMT @@ -134175,16 +134058,16 @@ sQO aMT wNS vlk -eZm -oHg -uiK -mwP -vJR -mwP -jrB -eoK -xTG -eZm +wUB +fAH +fOO +aBO +vsa +aBO +iUD +cLt +ebz +wUB lbB uIv pql @@ -134257,8 +134140,8 @@ aWZ qAB gEC sqg -aIh -eTb +jon +iQK kkW iwf uFg @@ -134276,8 +134159,8 @@ vXo gWu xMl lft -eTb -aIh +iQK +jon sqg siN cjt @@ -134351,17 +134234,17 @@ bdH uMc bNM rtd -ptQ -aqZ -aqZ -aqZ -aqZ -aqZ -leM -haO -iYm -fLl -fLl +rlO +uQp +uQp +uQp +uQp +uQp +nLN +frq +wIz +diy +diy vjd aRp jBX @@ -134377,17 +134260,17 @@ tKf jBX aRp quy -eZm -eZm -bjt -eIN -mwP -ksw -ksw -ksw -ksw -ksw -hbp +wUB +wUB +jDf +hfs +aBO +opf +opf +opf +opf +opf +qtZ uWV uIv pql @@ -134460,14 +134343,14 @@ ggQ pYS ivS sqg -ppM -eTb +xjU +iQK hbs vZU elx jnI oJk -xef +ggx dPQ ams eni @@ -134479,8 +134362,8 @@ nYn elx mDL fSF -eTb -ppM +iQK +xjU sqg lvh iks @@ -134554,17 +134437,17 @@ bdH cuC htb pfc -fLl -fLl -fLl -fLl -rht -aqZ -aqZ -aqZ -aqZ -aqZ -ptQ +diy +diy +diy +diy +gNj +uQp +uQp +uQp +uQp +uQp +rlO qYG atM bGc @@ -134580,17 +134463,17 @@ atM bGc atK qYG -hbp -ksw -ksw -rHB -ksw -vJR -rPq -eZm -eZm -eZm -eZm +qtZ +opf +opf +vrG +opf +vsa +oDI +wUB +wUB +wUB +wUB jAJ lAu bYn @@ -134663,8 +134546,8 @@ aep mkL gEC sqg -ppM -eTb +xjU +iQK hsy hsy baJ @@ -134682,8 +134565,8 @@ foC kph hsy hsy -eTb -eUe +iQK +nJm sqg wWl trh @@ -134760,14 +134643,14 @@ tgK tfb wuT lMx -gJF -gJF -gJF -gJF -gJF -gJF -gJF -gJF +bma +bma +bma +bma +bma +bma +bma +bma aPw avu mhG @@ -134783,14 +134666,14 @@ dxK dPC aMU aPw -wxy -wxy -wxy -wxy -wxy -wxy -wxy -wxy +nzC +nzC +nzC +nzC +nzC +nzC +nzC +nzC jFY qKY jHL @@ -134866,27 +134749,27 @@ wpS fZA fEe sqg -ppM -ppM +xjU +xjU hsy shL uXk mlF hsy -hgV -osM -ghX +wdN +lsQ +lsQ dTS -okQ -xIO -nxZ +lsQ +lsQ +wdN hsy tos uXk tkn hsy -aIh -ppM +jon +xjU sqg fEe nqW @@ -135069,8 +134952,8 @@ vgw vgw vgw vgw -aIh -aIh +jon +jon hsy wed uXk @@ -135088,8 +134971,8 @@ tos uXk wed hsy -qBS -lib +hts +afA vgw vgw vgw @@ -135271,11 +135154,11 @@ aah aag aag aag -nic -tmQ -ppM +eUf +ioT +xjU hsy -npn +ujr bVN oGJ xpZ @@ -135289,11 +135172,11 @@ coH oTO uqh iAE -gNG +vji hsy -iWa -fZR -nic +gMX +uSI +eUf aag aag aag @@ -135474,29 +135357,29 @@ bdH aad aag aag -nic -aIh -aIh +eUf +jon +jon hsy -cGe +lxm uXk rae jIV pzM mtZ -bqP -fyd -qYo +lsQ +lsQ +lsQ fQn pzM nac xNf uXk -fbH +kIj hsy -aIh -aIh -nic +jon +jon +eUf aag aag ajZ @@ -135677,29 +135560,29 @@ bdH aad aag aag -nic -ppM -ppM +eUf +xjU +xjU hsy -ebt +duP nCn oGJ uSW kzO vaZ kYL -dLi +lsQ sCV rjO suY pdK uqh pJr -fbH +kIj hsy -aIh -aIh -nic +jon +jon +eUf aag aag ajZ @@ -135880,29 +135763,29 @@ bdH aad aag aag -nic -aIh -ppM +eUf +jon +xjU hsy hsy -vVX +mBT mlF uXk hmw gSa mtZ -nbv +lsQ fQn wSV ulp uXk tos -fbH +kIj hsy hsy -ppM -eUe -nic +xjU +nJm +eUf aag aag ajZ @@ -136083,29 +135966,29 @@ bdH aad aag aag -nic -aIh -aIh -aIh +eUf +jon +jon +jon hsy -hwd +osd mlF hsy -kag +jiq fQn mtZ -xxl +lsQ fQn mtZ -dKc +lsQ hsy beL -hwd +osd hsy -cWb -aIh -aIh -nic +tHw +jon +jon +eUf aag aag ajZ @@ -136286,29 +136169,29 @@ bdH aad aag aag -nic -ppM -ppM -ppM +eUf +xjU +xjU +xjU hsy ylh opH hsy -kJn +gTV fQn qoR aPU rjO mtZ -rDB +goF hsy iEw ylh hsy -dDT -ppM -dDT -nic +qEP +xjU +qEP +eUf aag aag ajZ @@ -136489,29 +136372,29 @@ bdH aad aag aag -nic -nic -wsw -aIh +eUf +eUf +xUt +jon hsy ylh mlF hsy -nFM +lsQ eZp kzO pzM hip ptZ -urW +lsQ hsy tos ylh hsy -qBS -piJ -nic -nic +hts +hEy +eUf +eUf aag aag ajZ @@ -136693,9 +136576,9 @@ aad aag aag aag -nic -qBS -lib +eUf +hts +afA hsy hsy suJ @@ -136711,9 +136594,9 @@ hsy wdv hsy hsy -yjE -ppM -nic +sUq +xjU +eUf aag aag aag @@ -136896,9 +136779,9 @@ aad aag aag aag -nic -aIh -vsi +eUf +jon +mtQ hsy uiC sIr @@ -136914,9 +136797,9 @@ rlc hfb hUk hsy -ppM -fZR -nic +xjU +uSI +eUf aag aag aag @@ -137099,9 +136982,9 @@ aad aag aag aag -nic -ppM -ppM +eUf +xjU +xjU hsy thc sIr @@ -137117,9 +137000,9 @@ pAm sIr fZl hsy -mxV -aIh -nic +tyY +jon +eUf aag aag aag @@ -137302,9 +137185,9 @@ aad aag aag aag -nic -aIh -aIh +eUf +jon +jon hsy tIe uAK @@ -137320,9 +137203,9 @@ bVv nJa jPd hsy -ppM -eeC -nic +xjU +flY +eUf aag aag aag @@ -137505,9 +137388,9 @@ aad aag aag aag -nic -ppM -ppM +eUf +xjU +xjU hsy dPH sov @@ -137523,9 +137406,9 @@ pAm fZl oex hsy -aIh -aIh -nic +jon +jon +eUf aag aag aag @@ -137708,9 +137591,9 @@ aad aag aag aag -nic -aIh -aIh +eUf +jon +jon hsy rBv sov @@ -137726,9 +137609,9 @@ pAm fZl snt hsy -ppM -ppM -nic +xjU +xjU +eUf aag aag aag @@ -137911,9 +137794,9 @@ aad aag aag aag -nic -ppM -ppM +eUf +xjU +xjU hsy fqW qYq @@ -137929,9 +137812,9 @@ mQn wQD fqW hsy -aIh -aIh -nic +jon +jon +eUf aag aag aag @@ -138114,9 +137997,9 @@ aad aag aag aag -nic -aIh -ppM +eUf +jon +xjU hsy hsy hsy @@ -138132,9 +138015,9 @@ hsy hsy hsy hsy -ppM -ppM -nic +xjU +xjU +eUf aag aag aag @@ -138317,11 +138200,11 @@ aad aag aag aag -nic -aIh -ppM -csd -dDJ +eUf +jon +xjU +liF +aBK hsy haz fQn @@ -138333,11 +138216,11 @@ pzM mtZ haz hsy -dDJ -rXH -aIh -aIh -nic +aBK +feZ +jon +jon +eUf aag aag aag @@ -138411,7 +138294,7 @@ aaa cuC cuC jPq -xgm +jZS aqK cuC uiR @@ -138520,11 +138403,11 @@ aad aag aag aag -nic -aIh -aIh -aIh -aIh +eUf +jon +jon +jon +jon hsy haz pLt @@ -138536,11 +138419,11 @@ mZL lOX haz hsy -fpi -aIh -aIh -aIh -nic +gvt +jon +jon +jon +eUf aag aag aag @@ -138723,11 +138606,11 @@ aad aag aag aag -nic -nic -mem -piJ -piJ +eUf +eUf +ydb +hEy +hEy hsy mkI aPS @@ -138739,11 +138622,11 @@ nop aPS ddf hsy -atS -ppM -fZR -nic -nic +wQV +xjU +uSI +eUf +eUf aag aag aag @@ -138927,10 +138810,10 @@ aag aag aag aag -nic -aIh -ppM -sER +eUf +jon +xjU +wri hsy hsy hsy @@ -138942,10 +138825,10 @@ hsy hsy hsy hsy -aIh -aIh -aIh -nic +jon +jon +jon +eUf aag aag aag @@ -139130,25 +139013,25 @@ aag aag aag aag -nic -aIh -ppM -aIh -ppM -puT -aIh -xrg -ppM -ppM -ppM -xrg -aIh -erE -ppM -ppM -ppM -aIh -nic +eUf +jon +xjU +jon +xjU +olk +jon +mdF +xjU +xjU +xjU +mdF +jon +ssH +xjU +xjU +xjU +jon +eUf aag aag aag diff --git a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm index b593cfbd943a..5a4ce7045021 100644 --- a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm +++ b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm @@ -700,6 +700,13 @@ /obj/item/stool, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/two_south) +"cB" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/engineering) "cC" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, @@ -1397,76 +1404,6 @@ "fj" = ( /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"fk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, -/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, -/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "fl" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/sentry, @@ -1929,13 +1866,6 @@ icon_state = "floor_plate" }, /area/whiskey_outpost/inside/cic) -"gX" = ( -/obj/structure/machinery/gel_refiller, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "gZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/glass/beaker/bluespace, @@ -2177,6 +2107,13 @@ icon_state = "whitegreen" }, /area/whiskey_outpost/inside/hospital) +"hH" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/engineering) "hI" = ( /turf/open/gm/grass/gbcorner/south_west, /area/whiskey_outpost/outside/lane/one_north) @@ -4286,6 +4223,13 @@ /obj/effect/landmark/start/whiskey/engineer, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/two_south) +"pk" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/engineering) "pm" = ( /obj/effect/decal/cleanable/blood/writing, /obj/item/weapon/gun/pistol/m4a3, @@ -4898,6 +4842,10 @@ "rp" = ( /turf/open/jungle, /area/whiskey_outpost/outside/north/northwest) +"rq" = ( +/obj/effect/landmark/start/whiskey/engineering, +/turf/open/floor/plating/plating_catwalk/prison, +/area/whiskey_outpost/inside/engineering) "rs" = ( /obj/item/storage/toolbox/emergency, /turf/open/floor/plating/plating_catwalk/prison, @@ -5058,16 +5006,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"rR" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "rS" = ( /obj/structure/filingcabinet, /turf/open/floor/prison{ @@ -5446,13 +5384,6 @@ /obj/item/tool/pen, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"tt" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "tu" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -5485,14 +5416,6 @@ icon_state = "darkyellowfull2" }, /area/whiskey_outpost/inside/supply) -"ty" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "tz" = ( /turf/open/floor{ dir = 1; @@ -5898,6 +5821,13 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) +"uM" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/engineering) "uN" = ( /obj/structure/disposalpipe/sortjunction/untagged/flipped{ dir = 1 @@ -6554,6 +6484,14 @@ "xb" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/outside/north/beach) +"xc" = ( +/obj/structure/machinery/light/small, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/engineering) "xg" = ( /turf/open/floor/prison{ dir = 4; @@ -7438,6 +7376,13 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) +"Ay" = ( +/obj/structure/machinery/gel_refiller, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/whiskey_outpost/inside/hospital) "AA" = ( /turf/open/jungle, /area/whiskey_outpost/outside/south/far) @@ -9779,6 +9724,14 @@ /obj/item/tool/crowbar, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) +"JA" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light/small, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/engineering) "JB" = ( /obj/structure/disposalpipe/sortjunction{ dir = 1; @@ -11094,6 +11047,17 @@ }, /turf/open/gm/river, /area/whiskey_outpost/outside/river/west) +"PR" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/whiskey_outpost/inside/engineering) "PT" = ( /obj/structure/machinery/medical_pod/sleeper, /turf/open/floor{ @@ -12545,6 +12509,76 @@ icon_state = "floor_plate" }, /area/whiskey_outpost/inside/bunker/pillbox/one) +"Wj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, +/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, +/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/whiskey_outpost/inside/hospital) "Wk" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -19565,13 +19599,13 @@ WK ak ak ak -ak -mT -mT -mT -mT -mT -mT +nK +nK +nK +nK +nK +nK +nK mT mT mT @@ -19767,13 +19801,13 @@ aC qe ih Nr -ak -mT -mT -mT -mT -mT -mT +nK +uM +rq +fG +rq +PR +nK mT mT mT @@ -19970,11 +20004,11 @@ PB PM Ed nK -nK -nK -nK -nK -nK +pk +sP +rV +sP +cB nK nK nK @@ -20174,9 +20208,9 @@ PM nK qu re -rR +rV sP -tt +hH nK vl vR @@ -20376,9 +20410,9 @@ uI nK qx ri -rf +rV sP -ty +JA nK vl rV @@ -20578,9 +20612,9 @@ mh nK qu re -rf +rV sP -tt +hH nK vl rV @@ -20780,9 +20814,9 @@ nI Kr qC rs -fG +rV sP -ty +xc nK vl rV @@ -26217,8 +26251,8 @@ bG cb pq qz -fk -gX +Wj +Ay hD im iO diff --git a/maps/templates/Chinook.dmm b/maps/templates/Chinook.dmm index 077729447e29..96e9d35c88f9 100644 --- a/maps/templates/Chinook.dmm +++ b/maps/templates/Chinook.dmm @@ -41,6 +41,11 @@ icon_state = "rasputin15" }, /area/adminlevel/chinook/shuttle/unpowered) +"ak" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/fancy/cigar, +/turf/open/floor/almayer, +/area/adminlevel/chinook/offices) "al" = ( /turf/open/floor/almayer_hull, /area/space) @@ -658,11 +663,6 @@ icon_state = "sterile_green_side" }, /area/adminlevel/chinook/offices) -"cr" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/storage/fancy/cigar, -/turf/open/floor/almayer, -/area/adminlevel/chinook/offices) "cs" = ( /obj/structure/machinery/light{ dir = 1 @@ -750,6 +750,16 @@ icon_state = "wood" }, /area/adminlevel/chinook/offices) +"cI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/fuel_cell, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/adminlevel/chinook/engineering) "cL" = ( /obj/structure/bed/chair/comfy{ dir = 1; @@ -1248,19 +1258,6 @@ icon_state = "blue" }, /area/adminlevel/chinook/offices) -"eA" = ( -/obj/structure/machinery/power/fusion_engine, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/adminlevel/chinook/engineering) "eB" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -1297,16 +1294,6 @@ icon_state = "sterile_green_corner" }, /area/adminlevel/chinook/medical) -"eG" = ( -/obj/structure/machinery/power/fusion_engine, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/adminlevel/chinook/engineering) "eH" = ( /obj/structure/machinery/light{ dir = 1 @@ -1919,6 +1906,19 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook) +"gD" = ( +/obj/structure/machinery/power/reactor, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/adminlevel/chinook/engineering) "gH" = ( /obj/structure/sign/safety/press_area_ag{ pixel_y = 24 @@ -2026,6 +2026,16 @@ icon_state = "orange" }, /area/adminlevel/chinook/offices) +"ha" = ( +/obj/structure/machinery/power/reactor, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/adminlevel/chinook/engineering) "hc" = ( /turf/open/shuttle/dropship{ icon_state = "rasputin6" @@ -2407,6 +2417,16 @@ icon_state = "plate" }, /area/adminlevel/chinook/sec) +"it" = ( +/obj/structure/machinery/power/reactor, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/adminlevel/chinook/engineering) "iu" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -2440,6 +2460,14 @@ icon_state = "plate" }, /area/adminlevel/chinook/engineering) +"iB" = ( +/obj/structure/machinery/power/reactor, +/obj/structure/platform, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/adminlevel/chinook/engineering) "iC" = ( /obj/structure/target{ name = "punching bag" @@ -2765,15 +2793,6 @@ icon_state = "plate" }, /area/adminlevel/chinook/event) -"jK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/multitool, -/obj/item/fuelCell{ - pixel_x = 5; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/adminlevel/chinook/engineering) "jN" = ( /obj/structure/platform{ dir = 4 @@ -3518,6 +3537,15 @@ icon_state = "plating_striped" }, /area/adminlevel/chinook) +"mx" = ( +/obj/structure/machinery/power/reactor, +/obj/structure/machinery/light, +/obj/structure/platform, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/adminlevel/chinook/engineering) "mz" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -4588,19 +4616,6 @@ }, /turf/open/floor/kutjevo, /area/adminlevel/chinook/event) -"pT" = ( -/obj/structure/machinery/power/fusion_engine, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/adminlevel/chinook/engineering) "pU" = ( /obj/structure/platform{ dir = 1 @@ -5238,6 +5253,16 @@ icon_state = "plating_striped" }, /area/adminlevel/chinook) +"sq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/tool, +/obj/item/fuel_cell{ + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/adminlevel/chinook/engineering) "sr" = ( /turf/open/floor/almayer{ dir = 1; @@ -5639,6 +5664,24 @@ icon_state = "sterile_green_side" }, /area/adminlevel/chinook/sec) +"tI" = ( +/obj/structure/machinery/power/reactor, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = -15; + pixel_y = 5 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -15; + pixel_y = -7 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/adminlevel/chinook/engineering) "tJ" = ( /obj/structure/closet/boxinggloves, /turf/open/floor/almayer{ @@ -6561,6 +6604,15 @@ name = "\improper carpet" }, /area/adminlevel/chinook) +"wC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/multitool, +/obj/item/fuel_cell{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/engineering) "wD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/knife/butcher{ @@ -7269,14 +7321,6 @@ "zW" = ( /turf/closed/wall/almayer/reinforced, /area/adminlevel/chinook/engineering) -"zX" = ( -/obj/structure/machinery/power/fusion_engine, -/obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/adminlevel/chinook/engineering) "zY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, @@ -7532,16 +7576,6 @@ icon_state = "stan9" }, /area/adminlevel/chinook/shuttle/unpowered) -"AV" = ( -/obj/structure/machinery/power/fusion_engine, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/adminlevel/chinook/engineering) "AX" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -7835,16 +7869,6 @@ icon_state = "orange" }, /area/adminlevel/chinook/engineering) -"BZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/fuelCell, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/adminlevel/chinook/engineering) "Cb" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; @@ -8208,6 +8232,13 @@ name = "\improper carpet" }, /area/adminlevel/chinook/offices) +"DF" = ( +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/adminlevel/chinook/engineering) "DH" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -8223,6 +8254,13 @@ "DJ" = ( /turf/closed/shuttle/ert, /area/adminlevel/chinook/shuttle/unpowered) +"DK" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/adminlevel/chinook/engineering) "DL" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, @@ -8373,6 +8411,19 @@ icon_state = "wood" }, /area/adminlevel/chinook/offices) +"Eu" = ( +/obj/structure/machinery/power/reactor, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/adminlevel/chinook/engineering) "Ev" = ( /obj/structure/barricade/handrail, /turf/open/floor/almayer{ @@ -9089,13 +9140,6 @@ icon_state = "plate" }, /area/adminlevel/chinook/engineering) -"Hn" = ( -/obj/structure/machinery/power/fusion_engine, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/adminlevel/chinook/engineering) "Ho" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out" @@ -11618,13 +11662,6 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) -"Ri" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/adminlevel/chinook/engineering) "Rj" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bathroom" @@ -11677,24 +11714,6 @@ icon_state = "plating" }, /area/adminlevel/chinook/sec) -"Rt" = ( -/obj/structure/machinery/power/fusion_engine, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = -15; - pixel_y = 5 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -15; - pixel_y = -7 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/adminlevel/chinook/engineering) "Rw" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 1; @@ -11730,15 +11749,6 @@ icon_state = "red" }, /area/adminlevel/chinook/sec) -"RD" = ( -/obj/structure/machinery/power/fusion_engine, -/obj/structure/machinery/light, -/obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/adminlevel/chinook/engineering) "RH" = ( /obj/structure/toilet{ dir = 8 @@ -13572,16 +13582,6 @@ name = "\improper carpet" }, /area/adminlevel/chinook) -"Yi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/tool, -/obj/item/fuelCell{ - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/adminlevel/chinook/engineering) "Yj" = ( /turf/open/floor/almayer, /area/adminlevel/chinook/cryo) @@ -18391,7 +18391,7 @@ aD ba bH Qs -cr +ak db dy jF @@ -19961,7 +19961,7 @@ Tt UD WK UK -Yi +sq bz zC GS @@ -20347,10 +20347,10 @@ bz Ki ot Kl -AV -eA -Rt -AV +ha +Eu +tI +ha Fv OZ IP @@ -20477,7 +20477,7 @@ PO no no no -BZ +cI UE OZ jk @@ -20490,7 +20490,7 @@ vT je pm Ig -Ri +DK XH al al @@ -20606,7 +20606,7 @@ mA mA mA iP -zX +iB UK Ig RM @@ -20728,12 +20728,12 @@ ZB Il Rl ot -Hn -Hn -Hn -Hn +DF +DF +DF +DF iP -zX +iB UK Lm RM @@ -20855,12 +20855,12 @@ Nv Il PR ot -Hn -Hn -Hn -Hn +DF +DF +DF +DF iP -RD +mx UK bJ RM @@ -20987,7 +20987,7 @@ Hy tS lV iP -zX +iB UK Ig RM @@ -21115,7 +21115,7 @@ mA mA UE OZ -jK +wC Ig RM UK @@ -21236,10 +21236,10 @@ bz Ki ot JU -eG -pT -eG -eG +it +gD +it +it PO OZ cv diff --git a/maps/templates/baseone.dmm b/maps/templates/baseone.dmm index 2d51be77280c..471478fb17e5 100644 --- a/maps/templates/baseone.dmm +++ b/maps/templates/baseone.dmm @@ -1589,6 +1589,9 @@ dir = 1; icon_state = "term" }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, /turf/open/floor/almayer{ dir = 8; icon_state = "orange" @@ -1683,10 +1686,10 @@ /turf/open/mars_cave, /area/adminlevel/bunker01/mainroom) "eg" = ( -/obj/structure/closet/firecloset, /obj/structure/machinery/light/small{ dir = 8 }, +/obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/almayer{ dir = 9; icon_state = "orange" @@ -1801,7 +1804,6 @@ /area/adminlevel/bunker01/mainroom) "et" = ( /obj/structure/surface/table/reinforced, -/obj/item/clothing/gloves/yellow, /obj/structure/pipes/vents/pump{ dir = 4 }, @@ -1813,6 +1815,9 @@ dir = 8; pixel_x = -25 }, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /turf/open/floor/almayer{ dir = 8; icon_state = "orange" @@ -1884,16 +1889,13 @@ /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/toolbox, /obj/structure/disposalpipe/segment, +/obj/item/clothing/gloves/yellow, /turf/open/floor/almayer{ icon_state = "orangefull" }, /area/adminlevel/bunker01/engineering) "eB" = ( -/obj/structure/machinery/power/geothermal{ - buildstate = 4; - icon_state = "on100"; - is_on = 1 - }, +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/almayer{ icon_state = "orangefull" }, @@ -1902,11 +1904,7 @@ /obj/structure/machinery/light/small{ pixel_y = 0 }, -/obj/structure/machinery/power/geothermal{ - buildstate = 4; - icon_state = "on100"; - is_on = 1 - }, +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/almayer{ icon_state = "orangefull" }, From 6764fa9d1c5bff4044c3b04161a44bee2ab933c4 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 19 Feb 2024 04:41:54 +0000 Subject: [PATCH 007/148] Automatic changelog for PR #5657 [ci skip] --- html/changelogs/AutoChangeLog-pr-5657.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5657.yml diff --git a/html/changelogs/AutoChangeLog-pr-5657.yml b/html/changelogs/AutoChangeLog-pr-5657.yml new file mode 100644 index 000000000000..53961d4fcdce --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5657.yml @@ -0,0 +1,10 @@ +author: "BeagleGaming1" +delete-after: True +changes: + - balance: "Xenos can slash reactors" + - balance: "Reactors that are damaged will still run until reaching weld damage or being manually de-activated" + - balance: "Reactors that are damaged will lose fuel (when applicable) and fail more often when fuel runs out, new cells need to be used to reset the fail rate" + - balance: "Reactors can be damaged by bullets or explosions" + - code_imp: "Updated Power all ship reactors admin button code" + - imageadd: "Updated reactor sprites" + - maptweak: "Minor changes to reactors and surrounding areas" \ No newline at end of file From 0ae33a6d82d6f95c42911ef7d0081be3f4445719 Mon Sep 17 00:00:00 2001 From: Julian56 <117036822+Huffie56@users.noreply.github.com> Date: Mon, 19 Feb 2024 05:48:59 +0100 Subject: [PATCH 008/148] adding the ability for SG to buy the VP78 and the SU6 (#5701) # About the pull request adding the ability for SG to buy the VP78 and the SU6 # Explain why it's good for the game it's clear that SG is suppose to have the option to have a sidearm so i am giving him the ability to by the VP78 and the SU6 # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: balance: add the ability for SG to buy an VP78 or an SU-6 each for 15 points. /:cl: Co-authored-by: Julien --- .../vending/vendor_types/squad_prep/squad_smartgunner.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_smartgunner.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_smartgunner.dm index c022f87abc6d..8c64e48f0f84 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_smartgunner.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_smartgunner.dm @@ -26,6 +26,10 @@ GLOBAL_LIST_INIT(cm_vending_gear_smartgun, list( list("M4A3 AP Magazine", 5, /obj/item/ammo_magazine/pistol/ap, null, VENDOR_ITEM_REGULAR), list("VP78 Magazine", 5, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR), + list("RESTRICTED FIREARMS", 0, null, null, null), + list("VP78 Pistol", 15, /obj/item/storage/box/guncase/vp78, null, VENDOR_ITEM_REGULAR), + list("SU-6 Smart Pistol", 15, /obj/item/storage/box/guncase/smartpistol, null, VENDOR_ITEM_REGULAR), + list("CLOTHING ITEMS", 0, null, null, null), list("Machete Scabbard (Full)", 6, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR), list("Fuel Tank Strap Pouch", 5, /obj/item/storage/pouch/flamertank, null, VENDOR_ITEM_REGULAR), From 9158b56b4c6cbe8f1dd9728173e864e0c028491e Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 19 Feb 2024 04:57:56 +0000 Subject: [PATCH 009/148] Automatic changelog for PR #5701 [ci skip] --- html/changelogs/AutoChangeLog-pr-5701.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5701.yml diff --git a/html/changelogs/AutoChangeLog-pr-5701.yml b/html/changelogs/AutoChangeLog-pr-5701.yml new file mode 100644 index 000000000000..60b4a63f7a8d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5701.yml @@ -0,0 +1,4 @@ +author: "Huffie56" +delete-after: True +changes: + - balance: "add the ability for SG to buy an VP78 or an SU-6 each for 15 points." \ No newline at end of file From 618be9894895c7a18ae6cf18e33ce03f4466c26c Mon Sep 17 00:00:00 2001 From: Zonespace <41448081+Zonespace27@users.noreply.github.com> Date: Sun, 18 Feb 2024 22:44:45 -0800 Subject: [PATCH 010/148] Add inrange check to removing vehicle parts (#5734) # About the pull request Closes https://github.com/cmss13-devs/cmss13/issues/5731 # Explain why it's good for the game Bugs are bad # Changelog :cl: fix: You can no longer remove vehicle parts from a vehicle at a distance /:cl: --- code/modules/vehicles/multitile/multitile_hardpoints.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vehicles/multitile/multitile_hardpoints.dm b/code/modules/vehicles/multitile/multitile_hardpoints.dm index a6014c6cf2cd..2a6f97dda06f 100644 --- a/code/modules/vehicles/multitile/multitile_hardpoints.dm +++ b/code/modules/vehicles/multitile/multitile_hardpoints.dm @@ -149,7 +149,7 @@ hps += H var/chosen_hp = tgui_input_list(usr, "Select a hardpoint to remove", "Hardpoint Removal", (hps + "Cancel")) - if(chosen_hp == "Cancel" || !chosen_hp) + if(chosen_hp == "Cancel" || !chosen_hp || !in_range(src, user)) return var/obj/item/hardpoint/old = chosen_hp From 534d77054676f56e83272456e1e4b6f4ca57c61e Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 19 Feb 2024 06:53:59 +0000 Subject: [PATCH 011/148] Automatic changelog for PR #5734 [ci skip] --- html/changelogs/AutoChangeLog-pr-5734.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5734.yml diff --git a/html/changelogs/AutoChangeLog-pr-5734.yml b/html/changelogs/AutoChangeLog-pr-5734.yml new file mode 100644 index 000000000000..8672d40318d1 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5734.yml @@ -0,0 +1,4 @@ +author: "Zonespace27" +delete-after: True +changes: + - bugfix: "You can no longer remove vehicle parts from a vehicle at a distance" \ No newline at end of file From 53ebed164f28f33b9db5d06e3149f4f22bada5b7 Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Mon, 19 Feb 2024 06:46:59 +0000 Subject: [PATCH 012/148] Xeno strains unit test (#5725) # About the pull request Adds a unit test for xeno strains. I could have included this in #5542, but I thought it would be better in its own PR in order to keep the checks and everything separate. The removed sprites for the Trapper, Charger, Gardener, and Watcher strains are (as far as I'm able to tell) completely identical to that of the base caste, and are only there in order to make the old system work properly. Currently, this includes the following tests: - Checking that the `caste_type` variable on each `/mob/living/carbon/xenomorph` subtype has a corresponding entry in `GLOB.xeno_datum_list`. (Not really strain related but I figured no harm in including it) - Checking that each `/datum/xeno_strain` subtype has its own `name` and `description`. - Making sure that each strain's `actions_to_add` and `actions_to_remove` lists are added and removed from the xeno properly. (Taking into account any which are re-added.) - Making sure that the strain's `behavior_delegate_type` is successfully added to the xeno. - If the strain doesn't have an `icon_state_prefix`, going through the xeno's `icon` file and double checking that there aren't strain sprites in there (That is, sprites beginning with the strain's name). If there are any, then `icon_state_prefix` should probably be set to use them. - If the strain *does* have an `icon_state_prefix`, making sure that the xeno's sprite actually got changed to the strain version. # Explain why it's good for the game More unit tests! (woo) # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: code: Added a unit test for xeno strains. /:cl: --- code/__HELPERS/text.dm | 4 ++ code/controllers/subsystem/minimap.dm | 2 + .../xenomorph/abilities/general_abilities.dm | 6 ++ .../castes/hivelord/resin_whisperer.dm | 2 +- code/modules/unit_tests/_unit_tests.dm | 1 + code/modules/unit_tests/xeno_strains.dm | 59 ++++++++++++++++++ icons/mob/xenos/boiler.dmi | Bin 7743 -> 4796 bytes icons/mob/xenos/crusher.dmi | Bin 10003 -> 6427 bytes icons/mob/xenos/drone.dmi | Bin 4591 -> 4089 bytes icons/mob/xenos/facehugger.dmi | Bin 13481 -> 6962 bytes 10 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 code/modules/unit_tests/xeno_strains.dm diff --git a/code/__HELPERS/text.dm b/code/__HELPERS/text.dm index 967967790b28..9287197bbcc2 100644 --- a/code/__HELPERS/text.dm +++ b/code/__HELPERS/text.dm @@ -381,3 +381,7 @@ if(.) return return 0 + +/// Check if the string `haystack` begins with the string `needle`. +/proc/string_starts_with(haystack, needle) + return (copytext(haystack, 1, length(needle) + 1) == needle) diff --git a/code/controllers/subsystem/minimap.dm b/code/controllers/subsystem/minimap.dm index 410ded82f7b3..478848906047 100644 --- a/code/controllers/subsystem/minimap.dm +++ b/code/controllers/subsystem/minimap.dm @@ -585,6 +585,8 @@ SUBSYSTEM_DEF(minimaps) owner?.client?.remove_from_screen(map) minimap_displayed = FALSE + UnregisterSignal(target, COMSIG_MOVABLE_Z_CHANGED) + /** * Updates the map when the owner changes zlevel */ diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm index 460a561fa801..0e897335cf10 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm @@ -497,6 +497,7 @@ ability_name = "view tacmap" var/mob/living/carbon/xenomorph/queen/tracked_queen + var/hivenumber /datum/action/xeno_action/onclick/tacmap/Destroy() tracked_queen = null @@ -505,6 +506,7 @@ /datum/action/xeno_action/onclick/tacmap/give_to(mob/living/carbon/xenomorph/xeno) . = ..() + hivenumber = xeno.hive.hivenumber RegisterSignal(xeno.hive, COMSIG_HIVE_NEW_QUEEN, PROC_REF(handle_new_queen)) if(!xeno.hive.living_xeno_queen) @@ -516,6 +518,10 @@ handle_new_queen(new_queen = xeno.hive.living_xeno_queen) +/datum/action/xeno_action/onclick/tacmap/remove_from(mob/living/carbon/xenomorph/xeno) + . = ..() + UnregisterSignal(GLOB.hive_datum[hivenumber], COMSIG_HIVE_NEW_QUEEN) + /// handles the addition of a new queen, hiding if appropriate /datum/action/xeno_action/onclick/tacmap/proc/handle_new_queen(datum/hive_status/hive, mob/living/carbon/xenomorph/queen/new_queen) SIGNAL_HANDLER diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm index 8bdcd1311f94..a6c493f3ada0 100644 --- a/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm @@ -23,7 +23,7 @@ hivelord.can_stack_builds = TRUE hivelord.recalculate_plasma() - hivelord.client.change_view(10, src) + hivelord.client?.change_view(10, src) hivelord.set_resin_build_order(GLOB.resin_build_order_hivelord_whisperer) for(var/datum/action/xeno_action/action in hivelord.actions) diff --git a/code/modules/unit_tests/_unit_tests.dm b/code/modules/unit_tests/_unit_tests.dm index 3967ee70e391..6f2b63e5b9e8 100644 --- a/code/modules/unit_tests/_unit_tests.dm +++ b/code/modules/unit_tests/_unit_tests.dm @@ -87,6 +87,7 @@ #include "tgui_create_message.dm" #include "timer_sanity.dm" #include "tutorials.dm" +#include "xeno_strains.dm" // Unit tests backend #include "focus_only_tests.dm" diff --git a/code/modules/unit_tests/xeno_strains.dm b/code/modules/unit_tests/xeno_strains.dm new file mode 100644 index 000000000000..6609f977efeb --- /dev/null +++ b/code/modules/unit_tests/xeno_strains.dm @@ -0,0 +1,59 @@ +/datum/unit_test/xeno_strains + +/datum/unit_test/xeno_strains/Run() + for(var/mob/living/carbon/xenomorph/caste_mob as anything in subtypesof(/mob/living/carbon/xenomorph)) + var/datum/caste_datum/caste_datum = GLOB.xeno_datum_list[initial(caste_mob.caste_type)] + if(!caste_datum) + // not really strain related but may as well have this in here + TEST_FAIL("[caste_mob] has no `/datum/caste_datum`! (Possible mismatch of `caste_type`)") + continue + + for(var/datum/xeno_strain/strain_path as anything in caste_datum.available_strains) + // Check for these, but test the strain either way. + if(!initial(strain_path.name)) + TEST_FAIL("[strain_path] has no name!") + if(!initial(strain_path.description)) + TEST_FAIL("[strain_path] has no description!") + + test_strain(caste_mob, strain_path) + +/datum/unit_test/xeno_strains/proc/test_strain(mob_path, strain_path) + var/mob/living/carbon/xenomorph/fred = allocate(mob_path) + var/datum/xeno_strain/strain = new strain_path() + + strain._add_to_xeno(fred) + + // Actions which should have been removed. + var/list/removed_actions = strain.actions_to_remove + // Exclude any actions which are in both strain lists (re-added afterwards). + removed_actions -= (removed_actions & strain.actions_to_add) + + // Actions which should have been added. + var/list/added_actions = strain.actions_to_add.Copy() + + for(var/datum/action/action as anything in fred.actions) + if(action.type in removed_actions) + TEST_FAIL("[strain.type] failed to remove [action.type] when added to a Xenomorph!") + if(action.type in added_actions) + // Remove this action from `added_actions`. + added_actions -= action.type + // If there's anything left in `added_actions`, then something wasn't given to the xeno. + if(length(added_actions)) + TEST_FAIL("[strain.type] failed to give the following actions when added to a Xenomorph: [json_encode(added_actions)]") + + // If the strain has a `/datum/behavior_delegate`, but it wasn't applied to the xeno. + if(strain.behavior_delegate_type && !istype(fred.behavior_delegate, strain.behavior_delegate_type)) + TEST_FAIL("[strain.type]'s behavior_delegate was not applied when added to a Xenomorph!") + + // If the strain doesn't have a custom icon state set. + if(!strain.icon_state_prefix) + // Check if any of the sprites in the xeno's .dmi file belong to this strain. + // If there are any, it probably means that someone just forgot to add an `icon_state_prefix` to the strain. + for(var/icon_state in icon_states(fred.icon)) + if(string_starts_with(icon_state, strain.name)) // (This won't catch everything, but it should get the easy ones.) + TEST_FAIL("[fred.icon] contains sprites for [strain.type] that aren't being used!") + break + + // If the strain *does* have a custom icon state set, but the xeno's sprite wasn't changed to it. + else if(!string_starts_with(fred.icon_state, strain.icon_state_prefix)) + TEST_FAIL("[strain.type]'s icon_state_prefix was not applied when added to a Xenomorph!") diff --git a/icons/mob/xenos/boiler.dmi b/icons/mob/xenos/boiler.dmi index 94d45c459e036681ed2e0bb38a6a73bc9129c481..4edcf556eb11d0e800c805ab86bc6d248271c14c 100644 GIT binary patch literal 4796 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 E7of2+u>b%7 diff --git a/icons/mob/xenos/crusher.dmi b/icons/mob/xenos/crusher.dmi index 014246dbee66b3e3320d6a718585fd074668fc3b..a198cc1d5cd95ac750ad929059042f9c7cdb2e18 100644 GIT binary patch literal 6427 zcma)BX*d*YxPE727#jPQERlUDRLaP{Wv%Q(mZ(J8DKnOkgve6JpzK5`TbV(UkL(GB zL3UZgV9cDpbI!kWopYUE&+w53|dLLR|GGt{IU z*W9eMv;AwFEzNB8NhFell)8eBg{i5>3AEs4$NTO<1?)U01djR3t0Xk5j{z#yo9 zQ9*frfnlW1cAbk?p)eLsE>S3y<-{?;PEyU^CTz@n*47Dc+hlI}iI4375nd%VRa4l@ ziN=4&23lXT0hswwufIWAxUF5Fo@apjT_68IAHUlGgy!b;*B*;jVq+jT-cLlW8gR_a zpF9=I#~dr=*B&f`ArGK_jl;=`|KZalRIX62VtLiD$W24!ezIvy3?BqFgZL*^fvyT=!h_RS10@64g2~Y5p=u?)`pq(Bm%%&Z>*Np14BIewBc_(wL|6?(EJ#)(x3KB@3*wVU1`Wav%WBIf= z_<<}lHQ=4}7|N-U8AxM`?hWT7v){NlN6I;bUcEz74%UeO>t-3$6HD%FRk+F>Kb-SBw%=}DBM!VdJ6=_8o!7z7-(@7^3)r1)cdeIDaB zVbv^-SD_+v1!~NN`&L2+ep1?*5a|0t+Vk^nYeuJ<{f)js{c~uRguo352Co3B&_~m- znjm>#{o?nFPlxhzk}7%xy`aib5I*(pO&kJuBZN1z%;tioV*T-;|Vrq8K~BXYj9}4aQEgL*#h~WyI~3@>Nc1I)4A|Sto&(%2IgkUDBiE3`x&>J%K$;GhNhfOkAka9zC! z_obqGCLyRK$vf?=K}?eXvhIfHx0X$o9*vz2)8uhQhvT2*X_*x4Sb4>p*V{#fd=3ka z_JFK{H@?1MFr6vfScD#1(=YVxCIrv{^aL=jmU!LHDR2{frbkb|wrCE^wyxNw{6Oo0^@&Y!?fs8A9uAci31DE@eGPx#*llWS~PHZ`ufL0T-JgUoIKHRxUrTcI1i3PHM@yS^Ut(mO+&1J!#4vl<(4-%K zX6o)Q`fZ?oX!1ERVonOjrA)R$HS_Osn437&2>>oJ;E>_jq0ZGoP=Rh^0Kxaw>`%K4 zihu^fVEsW_%-HH>`x#AWjZl=sJ)vuKzSbPRZ|=86T<)9#?}qsnq-D&CDD900DxfRs z%r^*`5P`_A-e;2M`V9FL_K&Q3?Lk5J2-M_AcK}m^Vu)A9bZ{gv)yuWLfDp*Gv%`cmOa2qfs((+RWx=Z@;_5 zg1tjyX+o>raps_;#3}o;OBZZ%nQgrK8R@K`jhYxhn5|N0U|z40JI>iGcBP`> zthS}%pXY{u_HV5?ykm?jKm;D=R)9*eENpNn>*6#;XL}U@%TFluLyqUQ?nnI`4L+XY zVi5jZMIwO0aJM?`! zm3$KF!r%f28}643E)y@Lsj}nWqXL0kAP6bec95hpvqzbX<5j`gp_M1BT9D*)=+nO| zH)QUMN6LX3ceY<0Y@v#H^L2ifs{Zp!;&}|t1TWrHh^H0KcDC}`S!!lfevCJN+KKSp zGVUkN3bdMX)r3w(@_v%xm|V^S`x? z;(1KjYDTR1MH(gQ^vmq7zqji*zW<{C(#;wqN#RVZ3+3?OT?98plW-iNxh!`qYMNTc zbmP{mL479hD!KN|_3-Zf{ZXs51FhyEPf^Ks>Au&2UR=iBG)|!Yb&jPI!jDkOy+gqZ zJEJj!Q{G{k?1S%-B8Gd4GBu7|$+-V&4bu)64ubR`RRcg}Ix3YY&Oy z#=eeP=kK3`&%|`|(F)P`wBa*N)pd2o_jTcVdk`?<;Qb)~+&%UGl5+MRTD zlCcD!0@sYD+i9EY~~`Yu;(|A*x4f$;kN5=6Z>k*$k&%JoZgVqhW-=m zn;N~swP*KJq)sfs&-a$;W(i#;(zlS@j}>Prim>#s4+Wx zQA-a%bE92Q;O5ttD~>m`b3PooJ_(dw+QX2>&q73Gao>T+3QKq4)4nR+eDlf3(on35 zV^o)XT9219=Pwzrii(U7qsBK~-V*D)^}zqdha*dASyo^fFn4o>nGsaVS=DOSwcNX2 zdMQjr+@CD7*;e;VJ!cr|Vs0x|1O1*r~5J+}w~-1fFouVV+nC$zhY% z`~xX=n!>kXNvlEjODE{z_mAUR?GjgR$~5GDdAD?_XS~!ARWkr>yZMCUd?vRD9dHX% zfQsF%8AT}u1%d)KbL(UO(~Jaaoj&q=C1%8i37CaM*Kz`VFn(Em`Z+|82HA}?K9h6- zkJH%XHQEi&`q;O+Q$Q=a1Z|n6QFb*HR;47C>!Jxmho`kB^ty7s3i-ep&AGr=5~1P8PT9>>Tkb^ z+gE*?G5}D+O?@~L|F2Su%F#PcV%6?eVCS`M3=Qg|%J-)2uj=YG(-I)M zyF6#REU!?@%}Ee`8dx&A7+w6Qc)S{hhq+#>9eCIg7c*T%LETE-4asi5a_Ud~2;_J) zw_I%5HMfkshv|`C=a$qbjFZ|*kxn0Ph;y?%Xq8I5r-7bTB>S?QdV57a*bJHd@F8(z zGyY1jTSkGgJ%dwz@4b@NyDNb)-rUd&#m>jxd>@FTSy2({%yk*lW=$9Zx9PTFahg6@ z_J&F?Tsqu54QUksU$EpppL;@|ux!pefUH!k#8UH}F{kIEw50I|Q)f)u?K|+abv1~q zWb^Bhd@4d!?Lx}5V!~HNm%e|twS0VoaUJwPX`kG!W=%gco6cBA>Jzsf3+u;8FI`;* zuoP4e|KpS}Bo30n1tYAW&Oc&2uP2Rt3D=y@^6m=R+7bVrn7lM+A|m&n z6VTI&$oB~h1bCE)8{QoFm)VGR{or8hH8Nw5;v76>-=pSbklontB0(G@-!Hf{0Aq=+zcgNNrU3GW@FXj3VDQ z-$V-0Ra_U`s<@v3Mr#y(1v#=L>t+zEt=1txt@k>Dwz+m3B2-~2U zw|B=)v*{;FQN#WH&2ar0#l^6swJxkuT6I`DYEjhNJ*FZ=b#RcPGdS%*PrRW=i-x2O zoZm+ov=N9l$~VkAwNr1_e$e2(?DXsmTl#lKErY#T#q5N@z2vl4zK8d-u6uP`h}NhF zoILe<@4wDWQk8KmkR#l<$KKVFfJpo9@YDHDGm1ugb?aSNe~H@dlyedEqb7u$SdGik z3!;dp)8rE(+05bX)qt^#05z@!-n|_b_|DJI9X49YL|20*rT+12Y`pKLH_KO2g3Loo zG^92#v}k*uoy$xN6=!qo>>*Zmfz=unbURwK{0!~KMCi?MtN&ywY>-iI+ z&XuGQQ?GvCky1-V;PSL`iDbX@&TZcR($z#e6*{TDOW7{9M>}<&@o%u#)uR33#4*Om z{bDMtUx;nvhsG~q?_X$ka@KmMcE8@(@8r&QpOAxKD$JNZTYKh3aP!d8pWhV5=O^m4 zg)Ag#i)Q4*4K#^jVdxW1JA1mMU1L_*TQ7wANQyk`xQSL{2LpmtxU(PECtLXGnDk0v zTu%Mop8NJ4iVGD67a4=(ispigZNzk(>li0)&@cof$Zm8JGjJGr7K8lAISt_b38mI7 zcE5Fsq^%_BWTRC7aO@B_6OTC$(H07DAz z-&^9~Q& zXQaQwKa@ZFKcNZWLb)ikVu~(5JGnI4vxRo`&)z^Q+1-1Z#9q^v22V0t3}Yd^{WW~? z1tYkHqwfpS!NtNCI5LI?F)+>_@X1MHBUecu^<=O6P}kNaKgaj|`~jp`yN>oh*=VwgcGE*U|jtRkV93^~B%9<!U`93)^P@55@pYxehY3&jyD=`4s)53gO3hcC~&N4;zvU|D|(aVV|b3q+pjRnF< zwfGtFQgWotQo}zkgTHid&}e$ycb}e%Ql-L*I!{$l7+XxPY4OMkO`&dILld-FIQEJ! z;Dtm6?hqDC<IFOIw zM9<|pvf$t%d_o1+n$(}?sXE95Cmq6>79x=yu-p}+McK%1HFzNCq^}%DS$E1|A_ij5 zV@(pwDpWoW=GA+V5nm+JKWklRy8Pm8(CfiRGwu&L9?b2mSHm!kfdx$9>srDyJm_bk zFcLzCScI~i7K9t@BZj{{IHGmD14=@VAZ69D*2ar^{cSI9zX*{Y43K$c8g^Q<{>{-G zDY}3qMgoetlDqps@$kN@#H?O=T%6G9wSC6t=?%oz*|fNT`E#Wfi4U!=82Kv;al-!@ zu52A{D}+n(hF&EbqDbgTCS+jRJugdlKebGiWwfc1{$Y4~Aiv8U(0bh2xeh;z$ARS( z;ViZ0`g%o1{GCoUVTmshevkN42btLjgIgMzP|!lP{2i=$1JnA+IgC(6 zz=`^O%ySWG7(j(Ek-CPxx7q0=A8Lcg-p;b&QOR-L(79kHqX(LC8l_81qD2kZxgpSQe-hr7c)2=2jsK0Vq>kxpB4f1kPQ2iqMli5K-m7+wx` z?O$0RN&Rhcq2aMMU*S<*-otH8X-rumO><(HVJ2cQ9(?$C8cr~#!s5SZD}_7VMT6cc z9pONVJdF6MsNk{Q%9{D2?ZNfN@A4oVyDRsk;Ol--Y??S52M_f^M9SL6AZy5_ zt&dD}(sUpjEoyT%?R5&Q7owD@h`YqL*gr4#ESzn;rG>T{w5yG4X$f9HU9@LQ&yBvc zydAr{DnHw9seTvHj)QR+H22j22dJ)tz7Mm518>Ck}xsRk_k%sdS=M6x34pK za4r;)OOPA?*}W~x`Z)SMO{YRzFhzJ>IKKVxN9{8$g+|?Z5(_ZK6`c|?@0HgBnUjYT z`3g`rhkPS-BVV4aWJd7m$uaZW-Y`5kPoDk4j*0B(Jhk^FmydYp^#0F5K&22MjeJZ3 zQ}o|$Y@lJ#6E2}h%#>#TNjmo(wI%uxkoH|UccxPDL~V6i)?n=ulPkRTd` zw4{%->|{l&;Ll!Sm((rb-z!C8#JYNi?SSTK#tWyMo>aw@c8y6*ui>oe9BNTEy|oDPVsG)jP<&I zv6t-%6lzQ#+atC!Avwh0y;Jl^E}wlyrTG)bgf%wMx1RR*nLs=DH=lAo=Qml1lD8qso; zN1=}vdBZnvsM@5ue5S(o9!ABV=9(Y;R}!248VVn?@bXt2g>mD4w?{S^==j{C>K|cW zQffwN`bw=rji!7~FGD{F*#_P917`~pXc6=?=gZHBQvKDEf_t9|tn$0~=KXY}uglRH Y9XZ!zB>Uw4{p|q8`j_;oFS>(*j%#1BW$Py)yJrtEC>x?C9mh2QG zOWCrIWyU@CGoR0Se!u5?&hyW6pEGC9T-W=3y_b9L>w3Lj=Z-fu)?;Nl%>;o!SPk@b z%pnjcj`q=HfYU}Ix9wGEUv{Q9EUpm<1X1zJGFm3ruev0Vaf+XhjZap~ zOjJ_I+9?VSWu}>XKg{t93?X#2YiV1<;4GY6=U^}vem1@?LKQm`kGXl==Qc?nKanXC zM37rfQQwn#bl zC+=h}?#X8&9sSq5ST4#h&;6WCyR7LwEmSEx=gL`A1t^7q4lTD}jlf&+h&N0-I(Le! zs$zU4HeZneq9o zk;=*Xn_kdIp6mhww@!EPXS9rUN31&b-+j<}qh`+PX(BjtDI@v1+v;AuX|4vh^eEDu zm-NfINaL{26GlljmIYu8Ie$MKX~7tNwBShbx%HB7ZE=Y0b5>GWYcF))jAdxWTet z+TV4sn=Jg^pnv|B^3wef@>z>~ixk@x_v}gVJ4q@2?QV$$EX*#&@n-KG-SdPJQk7wO zohK6)pfA-(4MTlE8)u(+pKO=SckN}aMqlE4)XiD4uakex=gFU$tEneuGDQW>T z0+)Eh2aNpTzxQl)SENKFLVu;Q%_VwXOc9X`fit(GpZp~*iy8D$JHOQb2@3|a&MlkV zXwyiU{m#(Fs1urbH%W74TNfK$vYF>`(fQ`9S&_^9yV`~&FEDw-uOOeW7b)qeN~~^D z@{?q>iC5H~Gpy$W6{{ex-xwP*#$yak{^UMyNjL@HXP|fo=f8E5q&~$2R4~}Mf?X5n zzLD2qf*BB*l*y9aG*n^1Te`WuxtaEQm6gXH3MuCIr4J&`FmcskcgzhM2B^ujFs}6? zDsCi2X;sm9VLLc8ZqGJA2c;7liWapECTpCgU%xn}*d}^am36XQ-{bYT=NR1`b_!6hcR+3) zHBYYn`?sDw{OZ~6t<1xW{BaXcwm=Up+2CNn!8ah*c-bCuMNoiQ7NWxX z7Za}hN^6Y^J2!L!mIWmv=}V26`D)LnhN^4sf`}ie0qis4{nWer*kC{*v&7?u%@gN~ zrS~!J!$0ZRw8bG0HDn+cJmk{(%_0eV>Z8AP#FWjg${=t>?lN7M3}>pzzARVHa@=pH zo3(S%$se#UiZ|jc5d;0q&(&J(=9h=_GNP|0w@a8oZp5c`Wa5fXXq{(YgkUB4jyR*< zK$Z*MzPNY6PD~+h=!U0jUb|jD`t4>;-eRFZoyrpJiCM|CaBF5Br=Y&Af=8f0SgR9AOex z*yDZT8=-wI`4{@WqTg5Xq!ztDN_*V=?XJ!Zkft5N&iAEJSXFMuu2<^B`BsFfJbRwy ztFzyqOjWrCb`nJv!&XRwzREp0T>^u_I?*05;#f99xd)P&texDy-;v&7r>2?^Kz^T_=nc z!iGeyWcCa}V?u55Ai$zC(!^VL&*GvBxvL~hj>3opcTb|uio z?hm3nQrElN5geMfmWV~Xh6a;YN@#kN-Y6cPsqkkHo5W4d+;v*EITxjG3Gpc@V9sZ} z8^nw|nQ#j2WMt12kZD7bhrjb1kLmHR=Z^BZpLd%8aKNZTi@9vhDV;G3i4C!VFD%wg z)FTqjmZS;1u@aMbsuCT6F($|tI(*7BZw@w8@p3@-PqBP1D>i&K64?TZdjtFr`7W`N|!}+Vp`A2Z`z~)J&f7MzY!f;8WwM6*0A=lTSf|P zYVZrtSeW&RCc*P!hL<(D6^BKF=~NFNOyaRs;+O?xo+_31A4?5X-^^C;2ff-DmiKK% z%PSh23T4>WqHW0se^Z^)Bf{6vw_shIey<=S%Bi~*(=nBciClTBkq@D|e5RN?Sg)L~ z_!v2V*E7yYhN!8%-lw`SGQSuk$pzc{frum!1fi-E*eV2D0=lrnQMok8CJ|ARX?)#5 z?ke{p$FV%im}c0w=|06Qth{G21Ep_$jV0zzP6`B%n2hU>iPky9}8%F9C-T0gmQLe#P8M@Y{XV ztnxYr&9#<6$ajP0LL&(4(gI7?$Fns~fS$tgNoO~D3&;)lT*QnI%o)4hc4o#$ye~yF z%H@7jJ0#qopxCo=*$8M|2Gp6^}rlTVWH zxXm=Bo~wP?^J<%|${UE4C%{@( z6vZL?2siFL@`HTHGCbgX!VfV{T)in#qXl)G{OL^AFn8b~w*4>q&ymTw>k3!mU*D?$ zHXXqqdthdf?euEEzz}f?q$8dbyx#4$tG3JB`wgu`)11V>M?jD(Fh|5gu(nq-m=T6Nq*~uajw)Ft*+BDhC>AKjkEKo%y1upnMg| z`4K~0nMlkiJPtRMk~BfT9~o8pOs&j4Ej>3RNLOpcbI{yJ)R7wM+*j~jj8S2ZEBcAe zil+cm?MYdzI)G7oCpoB8>GHQwW6R__;| zF(0`n>)3+FfL>V(&l#%N!wX0}4B{T9LvIlTFZLNnmu9W)jf_cqJobW(OfsNx(fQtQ zM(3q?cG#f`QPJQie4_{Xwb9ze382>a%f#4mcJ$kP8+POE(1^p`ne%@lMoD}U9R4X9 zXTQBsGkG14UP%>RW%HMN{r{8K25g=-@QG zj-1b)Lf^&$7zhTTdf3Ye>DPJHUp4o{{NQY*LVjI0i!&1fmUl{bx zEg$@d{DCzFRe-2ap?!GZ+sUeoP@Kfrj(J4p8`Ql1<_xmJw*HX0uUFW*vrZB zxmyqbb4%B($-81I83z;pHC*1mjeMppY+`$+at9uMdKsu$ynIaeNs#_^_lMfik$0?( z$gd`o4tOF{_q1A$E4Kw9!GAaNIVK%aqyyz&ce~&o zhujc8X%sa_VqR;EF;_{@Pp%i7ee^2=N1}!z_zu_Jo$x=#MaWq-c9{gnVepFBvkxy2 z2YcT0Z#exz=X^?(0dsy{c1w$&lWX2m93~acvM41|&Zitge~Tt&OsQkqg!d@7T{j>+ zp$Si*363~AhFZI?yi-tjm%|W?WqZ$Y$^%;yZxno?GX5Dul7Jk0=W59UQY{99)p}sN z_GjJWsEMWO4Mfc=vnu$CY#dVXgry>bc|41s{ywth@pCxhW%ASr^PQyv^0CD+&i(sl zY|;Az<@v{42hhaEJ%P;|bD!qBO?welMLIjjoz!!4htMe_p7M1hEl4s3d#*)K@B-SC zfxsm$fq7^4PCyir>c%LGJT*n^LUq52!Le_pZF9cS!{bfM&f#*{uB4xouyzdN+DY5) zRe)}R#b)=i=>*Vu+K;Xkmt|6ngHGZZBM)T#8P)4qF|)rwH#y3m zJ?t3g%lAPC2v*5Sz?0dX$@ld6t$-%FvU{L@w z<>kw;9Eg-!XqypI=FmNtNnsx2_dj#av8M~=F&_tb(CQxEtjw+xfSqP4t7%;vNSb z*yKmg_3Tjuo*_F>9!eiqNA4Bu>Pdn>sa`h$s@}rBOy>__&XqgIxc@#9FR+t9fyC17 zU1uEtL<+BhXcjXNydOsflUrB9uHH=JX191|K*nP zMEj*xaFfLk>?>-zg^FDxohE@nx*>vVPBIfx)Y3*xnkn;Q*avQ3^5L4Dqlp=awNCeW zOcs+KvZqaP6tNRtl#FAWG5iDnPR&w=yhEtuhIC>{DTo)-#BCxKc}4^^ug{l)=;-a2 z-MuP?Mi3O;#t9M_`&L&ps{DLGJT6r)V#mMLW{ZUk4l*ovv+zJ?Z)Z5mtYZo5B|>wp zv{6QkkGH=_$2CsXG9h+cYAms@es5%`j~@U7uAMv^*)Jo}+OZk>1-X1cLZlP_?1cS3 zGCk4`*F~n<8QmUl<%2H5jAQX zLb^kkURS#aj8N>j0&7wC;F{D1bJuf)VC`W?NA3IP^kECKh^1W(LB|`#Ax34xbGfmuoXQGWH3_|5r@HUWcYDbhGoaD9XudMu!~&3LZ~=ojuLNRakl57z&GpEAuK~b zKK5%?VH5{dD>DO3!CX;2bpR{IRdv$Y5;MA#=fU7fMq!AXeM1l5QEU zw;3_rQU^92LQDKYP(z^X(QG_r>Mf(Y`mZq`UHGi|zw7hwEg%(l1{xewcJw&-YMUgK z6lj~xNf~`mpdZ^t9eQfu7i~S#wG767b;{~}%Z-MFlom3+luT`#wP2n{z8-M5qvv}< z0{cEy#5n_CJQU(T8hgv+AT2p&EZ80Zafi$|Ram~F{6#%49}FqmmOQwBj2o$Oh0*VU z_I2JLsbJxeEts1j{G%b)7YksMR}PtlzX+fS&U`OwaBZTuT&%vLzHDX8K>={!uiY;) zxUBCmGw2fpfJ2AOcUCsLP=uDK4=`nq*&Lgb=sD(*Y%KsB|JPFD+vGAPb!B*l1YTW` zO)SC-pmBcV>GfP2xAIp0lpR8sme$r-U>>Pc-$A_9+>e?_66iVmrX~=*Qn^?{0{=`^ zp2WVrvQ29t8-lDN=IdbPYk3UWQOvx)l7;(J1e!dN?W2WyO9oZ?#x6JHiuPeGK&;U* zU2dq`G33^HPndF5^&TzIdA?^hP2WM;O10x!-wDZ&?&__OJurt`wIUGx9f>gpu@1*E zcemmGmUEwl<~Xfkw4#;olxCdu_gn$fjvDK{Gh%l`A|c7>bJRSkucxwS8P9ZsQfVy{XUYsx`lvx5`?mqA6>h0%w$4X%KdNqCxWpm`gd>%8l9 zhkV#IF5_l<3=x_OlhM*#A%Q0OAhF&-sykBt`BDuZuYhsKm)sH1i648LW_2J244s6M zh41BC$R-Gwx_r8cxx@A4)?fvQZFn#E(7*diikMafX?#uC16mZqK$jct4@yImO%xchDsuUY^>v+kwJW9zE$d z&g?swI9SJTEXdJ%*fR~}@ zA`m}~8RSCa>K02W*k2*He-?g4IHRk%D1&35Uv)0_28gWz-q4!RgV+kqS~p@D;=w(h zGn{&6pATY784fQ3;Mjg6H=0oMs$!AWEF5#9fFL40Ocf?QfVkDixiQ_KQBDQPhs;6q z$S>ozfZ=1zG30DGYyqiRKDQTMESYOO;r9vr6+mv$sH1|bhs?Be=Gsd4K+l1YE8*xy zDi}&pzkQ6OJx^7a{4>I=0g$x+xbqPDp#T*4f;1DGwFa@xz#9z=K@Ik30(A1j|I16C zX4kGK9}+is(avtj(#zT#d@uFUH~%R|=>KwIc)(^Gm0jAg?f|+r?&1qE;1iM)tmX<& z;+!RkQdb6Qi<4>%V_G^BRuBBFz!+1B0elOjvW$qg1TwWfHNaP}rfLjGPjaHmXp&kk zuilGoCxPmYws>p;xe_t}(9``)qVD?Ce9Ii$B$iSOvevDJ&R(62uBI-*fWO@1{|@Sl z?wCv8GdW*+M^0K5ET@IC1WyNhC0@#G_6aoS3JQ&Ip>in8IfPIrMmLEcsF7v+Ll_es z3O{Pt_AyV0a+0v~kaE#T8B|&w^rm@RVYr7c6xs>)I9MH^-dh{Ih%W7ax0faPg3SFV z?dr!=r7OOSLkv(s?K`_9kn)d_(V8E#FQ`H)5f-`kFD(&ShdpkXgC z=uYx*emUyXCko?KSpqLuFVp_)0c0S1+)0~_13DyarN|mNAzQI|%5X_qXy&0-R=ULB z@fC35pPVkNInhm;@dRGdyCWS8DRxWFVwUJz-XZosi8Xu|D&&c`0r9PCw47|PJSxxq zb>$xSgY4rBD)%?*ZnwBk|Bt0^V`eDtWY zn25g(FmJ2FJdX^nLSj`fVBWP@oUqe;=vq%(2FLyHGBM_?(DlHfw-x&JJM#r8xqRf8 zmvS>#L8ahJ0F`ykX|fi`V4+`6i;GO}M6f{ib@8>Ejy5=AXJ^>g3+L~+KyfRxlIOmeC|vc`9EQPji9+o=ZP;t7a%ey&(itkETIZ(>@ zSxT*WQN5#RV|ft2ZRb}Cf?j06Jco5bV6?=$=J;IZs0#Rm49b=ev6E_4ElT>=YEs=8 zh}8n90!di8XGSE@p(X|YVDYRQ=hogf>c6)PN3PFplh=Ma*8uBSqlP=~6}19yc8JB| zSTU;~g9Dt8L+;mY~^MQ%A9s{F6}^QiaY(QyL~MVWEtI2yKI z`_(Xu(O+9-$=ge%sa|Hm6epRbrKjwp6Jz_FOb!{)blueRs3h=$ILa01yOxigaG>QO z0>AGoGJBJ-s3?_ayb62^dWmYVU`36%6n8 zDvkSTmQDU)#su{V@d75+CVn-|VvbXu;q#L8W}jp{65=U3(AcwkgKv>pI`C`;d@>vt z#$|d0<>gq|=O|FtPDO^H)Zk}83X6%#yMKf<`N*Lp4B!o4PHoZ0a~N~XeTtz)U*bu@blG()~POWSy&jTwhiqaXM)Y15!X zHHz*`LeK;*>6<3&9KRLg?=~v(8%7dlHH|Xy>fL=N5kMGO%nz(itWv&n2<~W)gQ9vJ*#T02 zy8=Si>%@`X3b{}z*=Se7;8C$b@8$z<1@YNtM(Hv+xf7BAs_@)6$JSr10)ibyB~$x7 z!@Q&PZ;#I`F5Ky@7q^%c-uNh-o+tI3fcbuHtb^{uXOSHV@7y-ag_P36&d==utk%`j zm=&{|^sXvP^4Vf4cb$(o_$lv5fRyUX3C61sWNErcvH9t2eso^vsckqS*q{9D_c`Fo z+|zhWRPDFLtH2(lbaT^yfI6^bXdP%>m^)qG_=W7S-nQb`Ufu-%1%?@wimRV z;HYT5IL+4AhtT6&CydSw|HRtS&}GEeQggprYsS*kEn21(XwDoCG~~LIJT?W`V29k7 zj0;s{B`n{q9Hp%y`&og>w{0}?#~qwO`x&_|6fX3NRCss!$e9ilBn}r8pcw2a zV6}*qb__)zx=?vvH{+EA>DOZ~*-l_G&0t%~){Z?hS{oAOJk@Q^+p62zHw&BrEKkcN zdcnxfibJS@H$(RcC9!biwM?iFv-r+yGYEt(;h%Q_?qKJDS|kn{s#?p-FrNH7@ID9Hamq2IG^P2+Hk@M@msY6W*JJn&8R;loNZ1O0*Qe zV1zUUYQp3O+0mLZtgAs4A;gC1?|wD{_=O+F$Eli>+%iwz7rThO@namJQhF;*`uXZn=V|NA}Z}cCr8!xNvBcbWm)+ z8pp!Pqt8`H{&$QMX6b?a*H#$kk$lmRN7`j4`;Y~Z%6U(4G(mKL8a|D20l%{mrhO}v zx&wl=UuERKy*ecalY^4X(yNp6qkEPWI#8PI$oi}2-cP{xA_@-js%NRYGzQeNq)xz` zC#qh2@%*`wcj?TE;YO0dB|{j>RjZFn2Cm1>x#hmgw+%lX;_e`;e^kK0WE zWV)Sj=L7eDIeu{(C)?d4u`<(HT zrx6dII*22mrM?N-&|zbD)o?SBP0UDM-BsL%^QEr?xF`0R8TKd9IJN#I^DClxK2ymo zPA}g7s1aT7`dAh`G3=}BQ~fS0}gU1J5pNPADJvL zlpwtCx(zRVhNW?^?U!+f#};GTMcZ&q!kFvmZ`J+AM}8AmeqO>hGRwu7=?F>tP-~iUcvFK)z`9tV?WtTy2^xVNF`dR->E*g)WIJ%H1V7lX=<%(y1 z&)6bPA_YoR2Kx~|T=GP_Z%{={k97Z)IH^w#p<9=TRm7EmBPv-Vr)41XQ&6K74%m=q zFH>9mI+CsI0s@Cn`H@0VzaeBCY)6yG{S9|0OQVqAu!*1~^KA0oHvCxqJofrAWHz;6 z81tWmEOyE-F~WaWX&c@&ze?ml=efdy)o<*J(tEHF)cuRrJL!H5*8AWheU|4uP7QMW z%gE&ZhmrZ9ZC*2ec_H?*=3$OI{;V~1BV}%H@B}(fJ!aRQVRr$!wam|hhS<@SY${|N z1~y>Q095A4!NV4ykkeJ(&6PP7e7_BsN$kZa{!zC diff --git a/icons/mob/xenos/drone.dmi b/icons/mob/xenos/drone.dmi index 937ddaa7b96a4b927ec56e0f85c9d9805427be43..a918d6fb95ab71a4bbbfc52d2addd8fa0d75c1e7 100644 GIT binary patch delta 4067 zcmYLM2|UyP|99j_Y|3qHq?1TR!_PK38VNZfxs$VRrreBAZhFoPt zCP$WBYc%(@4V&w~@BjNhUXRE7{W{<8=j;7?y&sSF`c-#1& za2jxoiZv?&sgEt$EJ2ni)0LVLVS>M}FhvY1G+Tuo(~kNP9P_h*wyY{p*smm;l?%dH zoU`|siiD`&ep=-5{z2cIlZ)HcT|bAq_>1Z{6MFkuT{AZ&F&XN<#fYDlc(Fv~lU8C+ z=PHV?D26`tGxHCMKbSRU_VzL9!BmCT-4l@2xVOhY*b^1>Cgyhd_&~2LOfNV@<}A9! zCycy5BqX)(uk4z#7+_;>kM&Lb$gzX%;z604dW&Nuv76TSyi~~bmvnXhkFdw9e?0!3 zvUDZ%B{FZaT|9AJbv)IU9XVazX99js^;tDA zQVgtkzd=0`TYURMyHFzdaNCte{~3Ko)5Q+5kWXF=VESn!hH+^`W&|%|aL@~b{pl*$ zJDz=XI-{JQl!Oyol)D;yrB^NQ85PNR_gvR@sqMt96*^Rx9i-s5-%Dbgar4`Es#GKa ztI5b&q@gjdf;ahHQZ~BKUz6npJ)~xT`x#y9a1KQ2g%TQ*pjFVX3=RLH*opa18zWuM z1Q-&)*<`Lkj}MOdrby06ZsOvni{{t-Q9tf=wLYn3iC&O$KqA`A>nZ5qDQ2@z`?VdWfI{G4)`X zd)Nep?$p;=Tf$r3LdEeP=V84$*mP}@i4~%B4AEvPdm4pNSKL<{n8Q7`Q1=^E1>U(4 z57y+wJUzN@&l#{0)a`76E%_BNWq`uKbPKik~+osU-)$zv34R~mzIQ*PdwY@NHMmlZHC zDNrVO@p*>tb1VBX+#AkHn zE~bFu&y|0MnutHDWGuI1W?+ZDJD#ol`zK7VC1 ztf*Pn-K|K_4*u*7Nc>A*S$wVaW6Q>qHMu!$r*rsv^o;4nOP-|7!4->*ilOR0Ze?0~ z<=6KQ&#b2oO@U8n=ldv{^Z*VpR1gXzeQL3;8`kShz*%C3rI_M`Qf>eI00KR zlFhar{))PcI8_51HZ(gBTiO@V1fF&lNq+WBKIe%yM>|5vEm+z8Wavp+^c@HKhbMvX ztA$x6b<%_aE}X%)Eb67n#TUT9XG~x*sp{oBmL)#hhEdd@JLY5ogY(MV7g=`0 zt!f`9@=abP0i>eVKhb{_WXj*Qrny5_zq07Bq5kPWM;{>D5aIfzQU4fhpyd}4f!=B| zAGgBc1TO`l#8Z*uI%Wrqf)C};6a4o%Cs`JyecK#&rD$vShO@{MYeH>qBLQJ*G$H!C zcO_AGw-8sq(}PY^f7=nG`acjGS1XkwsQKm*;rb(M+}Y7oEOR0J#T2#5_u|8C_U1^^ zI`jjK063m=6pi>1LRq?f0`_r?rbh|NVbl*f-y06V1hN~`{88a3yHk}YsHA5S(qXdK z3)0=d7w9){9IcSp_B*6#%xu!AotsMq*Pa*OzjXi7FS6?AZ03Bu(74WG^^c(N?3L0B z`8yEk`J;a?!gCfdr z1uhSRK}*n=2!9)s|0VuQ1@B^nQk!=@KDbPDK`y;D_ioT&Hk8|?+NnHOSKx!HooXI)LB+^ITX zeVgm2@S7g>6rU%bOsfeTK#2saRcixzPb_}>24svL<6*w+3#sK#H+74|lpU}cJF7cC zfRdsnT8tOjW{%9Z0P-X(!8eKPCje(PSSz{iw^$%?tni9#%DyG1`C#pc>N)z98UJWF zhiAG}G7tZD_HDcJau0F7nDKayB27r~_E z9Te>;0jLsNpFC^`r%QusmC*nePbayT0q#;A&I#kglZjN7%WFQQ=W!!BmC39UHl-xc zE9F;yvXsYdNf4s6gJ^!N3Uub51uIEbmtl$TR*K*dflG3~X-0Z4z8cEM)$B%@)xl(P zBA=29rSVHs*Bt9#qE#95nexe9(#HxaoARN;m?2irMCq}nOO!bisFYE_9iLLky8cP56%jtE1g0n$9Ham%!ufkaP0lLWuR;=I1Vm_37nY3w&8Wp80sa zju|B{yb1o2%9v=cEQ6CeG7Jw+hwN^Xu(2e+X~HM0d(d>(X5lq_Z1VT>SggDt=$1;;DyJ0Ln;mu{H)MwP z7m{Itmq2XagF=drvZ&8(>Y*_&SRK?ak?p;G^VwK$B%`9Dg2CJBEt@LGbJoq_D2#J+ z051M^;r+BVTW@e0i+brj`E_Lh*?k6wLYiZ?T_my-bD!d`Td=9Mnnzev%cj*7$OrmM zdATXV#nYO7-X(_+=LrG*5b%?6c|*DTE9cg1d8Y99FMa4o78F&eqS4+^H}*2qw!{t* zUdZOP=)sv$v6bss_9E&Vy6h603e;+9M(fSsQfTl}^GYTAjY54xU06-DDLyu4F;kVg z^!ES+1^;hDlUDT-?d7;$&&1R5&3ByQAwu**=AuRc^)g0Dv?!Tn&x1j;sofp2xC&MW zF$KeDW%BY_{_gFORvK#W+O(>!+X9~^I9ejYBRQJU3-4;!hXBeDq+#X?*`ryF2a*KM zE`x(OITb_DPBfxvLlJS_3DdZN9jwy0!@GhMwA;NV1|g1*Cux2eXWCj4c|M8%C$QHr zmm#p=x_64)%ck62aNcuG+?mTgK=jxNQ3x*uv|2u~DMHlxUFY=J`P^xq0O%V_<}bSL zDYaNrO2f+msOsTHza6Hi#Z2w39j2+Vq~h}RJ?zn*bm@pP03`m0Q_M`{NreK@&+u7N z+l$V7mo+I&+bYKu9u5JqfF1PKh#5kmL#UkM3fzLjp3=mPDMFmo4%1vO8_#uPQ3#xR z>>!2!r2p_^+BO5YUH$91-_Sefxr|MBB#ixQCRgU%zYGpzZ_VV^bBZS{_7);}%xv#+ zQ+GFd2gGHxVFw$AQ1f;4ocmsVL2L?~Q!JqYW5=;6ny|2c->df5Dw*L+2w06yGi!-g zE2iZ#5>}(q9BRwSQt3IZspTQ(*$gOt^zGU1?_V2I-Ns#y-H;+Q#L#?v~13pCb4^t&pJ2s)wGHtjD^2y2~kW;uKd+10^P%r*TqJ zh0}7|T~p7WF$m@2tV(0T`zp0o_{n{>(bsbDBrVsZjZG`XLuo;=0|Z_kZY`~&-)obD z&%U|$S5>41a_;?P;dZ}rmve}X@1-?cCn4b5X`KDpGOt(pDzLDt*QTBe&trt*A=588 z#U*WLn?rYRnVWHnZzX^sz^^mSIu(t2yu+#3zDqU6X;qxk>_NLp7{|@pvJ^5gE*=3V z|3|m@VYz(!%p@;GY45mz=iR59)OnqA(|E=yAj9D?o5x`6=Dlzx{KiWUgHQEmOzke&T!oTS(ni*5&R(YBj<-A`?30zR>mcR}dg!qj;no&5 z47Zl2Jn4jhuyueNz(O7ddk4b31N<2n!i#gp8aQwY7h)GQB9h8}^u|9)PJTNs9y;8u zk^h0q{E|sobabu7`FCGJ*^U#aVj8}LD*sqvpOaf!cgozEt9vsuO*ke82!)y4u-Wz@ zCC#lJ70=WLX8W$15qA8?Z`Q2>f9TBwAx*wa>@kwsDe;5O2VYj+UI=(4Ej|t{GEHa7 zFMt<%eC~C%3X-ubGq1Ubo)Te9mgjAI`)6EgRil1gX8OLRuQ89|(T=S(*WFW}7y8ra zqay^9-&>X~cs)6kf#Cwu#6Z_Jym-?E@UX0gH|GXRBX!z0GK_k5w)#@Q(&~JDl1l$7 zc+|rq;YHrc7w^KP|BJF%#oPzT#{rK1nyD!~%r}G~#A31wOw|yama)u8s%_Pc$4&H1oLZtc_%?l<#HCfAklNRL+C^*R768 z*K`8%MJuwiHJ13(OLkSi#4Sn()Wlwu>Lp1Dj`oP@6rlLiA>DE3v{12Snd=gK&EmJE zd=4Bp!cAA*#}RwMwn|9WvI&-$MZ6-WO z*7J7=R=X5|a7!j7>C4%op}ih>vJa*PwGfP}-K~lcZAIN) z;-f1f#f&K$%j}`dYzj8jPS!|t$oVwM44FIZzt*`fk^5GG;aNnDCB4ibu{= zR=wv~`8NDFSeac$3+%GR9EO8vPomAOg(_njTt=uVR!D1JTTLYD=G&*AuXjFM$#LLY z<8vU~;DKjn^ebP!g6x{^6z#4*iGFz95I)jN#NPbbogW)BZ@6>8Fd?u`o%{MoPZRG{ z%;iDVq*lvk`I5$6pKpndc*#XX#V6ro9&z@U$7MoM{r2i@?uOUz{m~+Fhy5#0Oq`xhhk?``1n#G};T^Q~Lpo$UaUl$%|T0K~o`Y^1yjYP>#C4?R~@F_bgN zQzTfj#F#cMaoWrl*u7<~Ha4szddGvNHo$~!c$2nwRYF#ls5$r#(~1_mNLA{u~=7NN2yRgrxXsc+q*XuHJ-8uOp!<(M$ zLmh6)BEx!_xhCOX7JT%}iD3-*R@V-gksJgq8q!xD8A(vIn3ujECayjfkT2FgMUp_k!Eo88#fayyKsS!e;baaUI@+$+24b}Nw8b28zM?h8Ha{X#Y6SXD&673U=S zjZ1`eZ5NCDSk_BrwptFGa-tFZWG#%6U7(R3YAY_ha#LYuea{ORG7(Rvl-18j={Fs0 zNaunTnN?h{b$Br!T|**%?p$;22=n@k#p+&}{|)xS#vn6+jlbsdeg(Ei`3JI3oSK1p zyuaV8YcC#k0@{i=4Zxbj9F>t#BLh^Cb#;xda;I$O+akaEUvWUql=Z1252gHRU8r{< zXIBK7khfNlpS+u1w*v5U!=FC=e%=vg4LX$wn122mIK;o^(`HgSoAKt}{5aC9`2jfW=he$o zy(x@04e47Ls@M=^uR>liT|w6p7{6H&^IU$3$kln1WpDDm5&X#|$uO!!3 zCsymUTk-dguKnOXUkLM(_2H<8)2=9Vxb;k6(_A|0SYE0KY_!KO86!5Mrs3#MRLkV7ErJ^9*vZvCrDgL~XO`Vl zjj`h=5-Ek&r+G4S4`^;)YvBPr1gX5cn%@2cv!cH1q409sz(#GK@1s2}d<~wJ9KB-z zuXx^faJ)3d@F6ua18Sk)0L(%W6T5=~=S8&b5A{XUqN)JA%BJj>!T}q8{^SI;-oI=pLk{~_X)DubhTR>e0{}4;HoWUa{!N>IE-$J*2MY--%A?GITxq)bh<0zBBeMf zuQcUQ=V5eBbk-n9$daBA>wfqp@Zd9^5LP3Xrfo%|s+dlrDYY*&r4U<1aNg|=4(Fps zUIyf6?WKl^VVrtY5jL;#6G(b#bkK3~cju^^Hpj4*YP~3Vy$yR| zGhqRHegoCr)VJwuDMJ~T4=DR9BO;A_f)PXtOlz;5y}>kc!&$DjBT%86Z5Xr6gWjH- z(@13Okfh?vB4WbRpD*NX_LF>uLmk>#Gv5wb66R)d?Vw_+hLD+um-MJ?P14wOcI0$j zlzh~$z0k^YKLTEZo>*3?@D#OPVd2sFIdb_?H^@H@;2kh{)}=XXj89*vI{LuU;|DpU*30xtPVv zm6yA_RXfMUsUrM|Ghlfg^JlItS|!QN6b~IPkMGos;zggf!>kG^1kicrQzd7dPReLd zx-csR7P-^z87tNSYuYNcA7aL~6qbvsc7C25iDeAek)9k`BHKZVRk{%M=h zD0!ibQhzrC22D}o(?K95uF8}GtX}^i@vQkSDKBR^WWc$>{mg#um~1N$#=KC)_!#gb zURCk8Y=Hw6j&$?}=Pf-CWlY%I3W|#12fE;mKS&6QFZ?|llkQ6QnF@cJ#%lg+Ig`l5 zUKSPoHi{Q@dxyZW+kPSZW$JmQyZrE_Eq>ICA&?B7gmc>9bxdF8*)A*&c>PoGJ+1LU zlzjfYI+T(U>|Gc&Gz{MhseRsJB^1 zmG^G%1^Q#qO%zfaUARw^;i;Sin5N7v5yuhk8oQu>#1u-NdMnhylSYUgtOn)^o#DD8 z4seacl7B=RMUt)Z8-S2D7yJ+XPI)9^Q47o!z@k2^qhNiI1v0`tV%JGU0|RxiqlKE2 z8G?c_=y8f1+vF%9nZC-c(95|b<}VC-ielt!4w98dQul37Z55G@P;J;^{k#7_owo{_ zFM1EOq4AY_Xn~CDY(qmGII$c32=|M$#>eX@mSdRxBml5Opg&jQYIlGuobazq{jiD> zyNz_@EOoqqt%*?TC^iSx6zmej^%^O#!68sRkbg1HBq9idzJZ)Z9pDxzu*nHP@>1SQ zGtdTcKc+X+N`0Xqoe(L zK_6d1^Mx}OMBM=h+`lB1{zX|L4dwAu!ce%!vyo_=`H8E z+ylwxx`sOb|GcYD9`OAi)F;qe#IGw|>jQM^Pg>jl8p^LXJ&QCBn9UXq17py&$3dg? zhDekO6B8IK{sk}$HOEA$I2ma-2|MGQSq%Fv|hw`JknG>U6q@+qW z)=v8!{MoOC3HpS+BIGTw1xDMVkycR}+HHly6;XAIyC3_WJJZD_XA1y*KOttLL-^8TGyqZdAYbUz7Q&rnu>?eF z83q)Yg?ce_N$bl$7?9q zF41iM!@^Dt!rhUk9vsMrLBo;XSKOe3CjYn;`xH8*wunuDIv{EPt?g{t8tT~U0LNrJ zadzU3LH~GBdX@t_>o*=hyVDZmcf+?kL`;kn}7w<0WK|7f*wpz0O1ZFNIElILmAGB@;V~im8?Lr zqo*0_3DBuH-C7boB3thZ`VrVYKUwwl-NnPN*N|}(G5XAthijz3ltxVTrRnbTrL+Ect9u@7Z>ldYS5x{xuS~~02hdtD@I-isk%PL-*_uI z24~TCTL1t60d!JMQvg8b*k%9#0Lpq)Sad{Xb7OL8aCB*JZU6vyoSjik3xYrpJ@5XC zMXw?X8C|-B77}@={=lM>yR;v&u1fztwLpR*kzwGyVIJ=>6xmILL zR(^m{#|z5_vcZS}FPVLj+ENQWbTVxu6=Y9yU`<(qA?HRZu1W`^f}46+$LMCLgaL<( zmFs>AfuReF_O9k3CjL6Ix3ytp&+sD)Z`Y<&3O?3)ko0T(imv5Kz3#3XVhpq zOz6D}BcXLQF1jSi;_a^CLW$B7-A#?z&7oAQA9dytwDW>n{Vz;E!$0zNQ1%^{(CQXhKyuI(YATT-7c`{|eJP$@n+xA@7rwT3^Kl&{tcXMUl8l+oJPwzXPr z)b#NE&#siGK38%{vV8W#z2CWn8v3lBu0MEsCLg7CIAd4UBdF}N^@pOOCkX`xNH8DX zep+w$6)A_>>9IQNr^|;VL?SY*Hnf%r^L4HEHQO5MmRRoT<`sz~;z>AOPx9AY+>)9; zTHBHitzVaZ<<6bt17f|IJdiRyG)Ng=Jxk$c+1zLNTs1RC%m#6qCg0gITf4u87H z=j4?2)Eg&vLn&vC^H$Bm9M;XuIXlulDS%m1J6WP z8ZB`|pMnx`het)9E{muISIr_a_I#%3Qag<%H|t#VwIo|fv3WLRZLdiYac{gD9e3M% zNkHDSDBVaaj5(r~T(zU_8qy#o-h5`sSqn?1QJ^oj`SoiMl&BFk9U)9>&glVa zMTJNONRHHgRAaErqJ&5yE_9T;O)?TT**sl990iFwZRm1ALe7w*4Ju0Rab1TrCgn7{ zwLTM2;Bnnr!mly`O>NbR22qd6P~br6L&J% zx}Yc_QUNmy6!GbCJF*c(A$wLZF=F34{6U;wU0&fAbVF`P7kHT1InHxdq>3(5kB$5D zhk8od;7SS+CSqh*!RL}h>F1KhLE6wEG8u{hUbFtVQY@pvC1Xq~N?*s70h@v-u^hbg zNFEVmpw?$-3NFHU8rd=UXjs4*g7#|*Q9PZ7*+Z=4xl~ypqI_t)$p6y_I3-NLRnQ^o z@t;3%(yTval>@U$MafnB#|oEOgoCMQa_AfeT(JkF3XVet1p*DzbmYqDNxrnwqJE<1 zDcp`vVYfw>WiFzoZ%%?h@2l*f&*l@`Q z!Qz8_JkNvB-RSLC$+T=l`w_Dr@{n{*)x?r@NRLiah}4q)1PAEmiKRQO?AWN!VfxOF zhinrPg8r0!kim+?z;fY^Dtgc+pBPmd7Psj1z^Y(}vi~`;i%v^ggXu)L!^7Kt49lPC z5iYujf)9d#;CSozT#8ZazI7B(%jP3-@;_$V4B`rx{C`~2O2d|`5Quyz#P8&#hEv?M zy4y{w_;_2@xI4ldzZEatFn3OL61HcTD#QU6-bd`W3zL;jFL2^bTX(Pd%|XRR+3Yv{;1qQBF_+sgu{A-CD7V+)F_kC^dVDA+fDTR*B^-x zezCLvksLIZC##yLZawv0NPTwOpq)I>{IHVmx^>n2pneMU=wan;wq5Gb(_g@rpH|#9 ztAFqJLhAO4XanssVaL5xgVss)ddK#!v=+l1e<+>t1H6y5#LGVpP=^ zs!4$=@m#I>IPH{}@D))YAV(TSMiNz_pY6bm?crFn-!blmH6S>7Rav zfasqh8pkdKB%zfQd;+W<;1`HTLLWh*^nirt0zUJmeU|T-zhcf9eh8#h1#NeXSg{dg94tSQsc?}8^2`8YH_}-9z zz;ijYD#DLQtyPZa0-Vj-RWo4y5BvwybQ1rN5b^H<|KT3<{oK6r&WBtvw8?2;KUFcc zpW4uP5l;^2GP<*bR>C!iVgb+PglQ<_Y{5&yb5SG)$Zyf*g@*8ShB4ugCjek&{>iWL zL`X&c`5xz_qxs6)edO+FGz`9j8I%*0A)k?X0?J99D$q(Nz`hvI<;3kW%;$4F7vNm_ zR_X30ys$$Dyeb33%lvb5#S&}Ru9n7gh)e=9;A0@O;dd#`@ z{_#5SQ+G@tZ$-#+dg#zHHgkv(uhT&hYaZ}V)OaRh7_cg?g5A1`t>OoVdscvKbal&r zBiE)w!Nt`u6^*`T1Lna?s_I^MKap?K3y>-w)WG>aoDbVwgIfC0L@k_47}esno3E^* zj=R_moOc_gehAVeCm+(-#}zuyO7UbX&>gbU#foF|4V7NfnzVU z+sLsS>b}f-clwvv>+hhQA~|!?>XJ~m^;y{5{%z=59T#z-Kh87gLw%&rkK96b9zO^ zte6)0p7esUeJ?!}?)lU`{O-~{H}tu?3hhyWR0ZT>qRuL`M+K^Z>}1qehwf9g`#h$l zZ7WNy*;Z}jUU6u|Ix^*sT$6nT>Z?OYHcms(={e4(iXauxvT&Ys+XMRQ5K2M?JXh^N zOL(rkCm3z{-hOlfo=bCTYb(4y;n6Bhp`QO}ToKR3P>-6c%6P6jn(%1aTM^GSI!?}y zc&<9@PyDN~DA<(OTF<{SfI{eq=PDyvrfW_&^|>mnCgRahGef|m!N8QC@Mx$DC*MEe z(F7!_GqF@w8IQKShT&NO&&5bQ@hVQnpYU8<8t%ql+yitbJeP739*rSiXk-{Sa%RMq z&_9#bJf1_z}tHLAJefdimln z0p1vF2DD58&xJWh5)g_@;eU%U9Fqc8IQ(^@UtuTWY%Jacw3TQvu#pVUC6&uCz~3Z1 zm$NII4NK&nj`g7wgPY9yJ1>AXN0=6=^5|2lcYb*9o%M#=fZ(6xDh3%~nrwzgV|-n? z!`5mB(K4QEwHQ{$QGn$~JeOM&=&VBkyahZL1GPx|3MOV4wuWZPO?9XAyjZ+VjbSL- zs1yI94~3UP-M+-XmcSQ~D8?+}xvW?L?{tIbT5UGz5WrcC=L(1!ZAu&K>}UByyD6gT zd9`?#Tm|=F=lWt|?hG#1Oa4ncZWs{geXP%At7-%;@La3rGN}*>ZUfJidRvS%VU-c; z$T>6Pxpd<9c45t>fOO&?#Q~)eCf&^W7p`zYND|Wvxzo(J3zgRF@LK8j)2N=)u?_1I0*Y^T z9~@uAV+CT{8$NI=FK?XJN(k&H&{9JMiIsudQ+n5?bS;%r6=CIZX{LfXOjZGCQaZa*&6lx zT1{PkO&Y}uUOB#b&Ub$udeIw^Zq)ysUj39+6k=m->6se44;Ve zwmDZBb@HOvcK#6u*Y+_2#d)_KZu}~m_iejm9=>zFUZAx6>f=SXZF><^I&Rl;9Ri-Ayl8oYdM-?xmM5?*oWkeh%ad0VZ+ zk@gvf_Z@P!4*oLIAY{c8aH=T#7%9cQYY8?at#Ta~u_clcd5ANM(Z4*C6aQ>plQ7cP+Xdu|=i>5V0-g(i zw}j`)3`egly1>d*U#wCq5}u3xmRBmlvj+Yh&_@OZhXg#D;u=5!kEZoG_l-e??lvH% z`dlchQ$*v;crFw0T=q`-w_N~WZ>}#Udvp9g;n7B0-ip+rSjb#ojLV1B@E_}oK|G6U zEZm7(1)Az}dBbp-5}s=ecrH}38_!1Nu2(AHj>?nB4=Vu62hg>Ll;k$;p3oa&1$ zZ;Ag}ZegjpK36EbRf4l{eJ=PpNa$|rqaQdJhF(l~G%r+NvjK6J;kgRch88F(7#8y{ z*B5iabnp33w_IotJCTUzq9O4o?TUCVvR@lZk(oR7*AHKRao7uZu5vLWl=fs5pYdEk zM6GSP&A_3+zv5|-Twe_EyU}L##j;xlmCP(5M4<`KrAJ7p(1%dacXSvFbB|GX4<`Ez zk&AdP0c+xTUZWRywEKc*Q7pLvf&Wlq?<6EyI|h-XZB}3GmL^k3`7wZIv1``rQ;3O~ zF`%!3l&;xLjX7=s&sB%U$?J>VTUZR1dCUy_yUNW=OamB2xXyp7$ToqM$npc6t3p7G z_Ge^c&Fj(|g|9o#Qq6d-djr#4wthM50{`?NUA1L{y3;|e3xLv4ku3{C5uqgj0#6B1 zSO2c-7Gqj>m7eEUcfHUdx98@*kYnY!8lixkFuJ$4LBHE}zzlaVUlIYMOi4GkS=;0RbK^Yw?B+#Kk0v#GurbB_s zbm&i+4*d~mcW}2i&#~-J?|qKT3+Sl3DAC)N&w3RdDkRaNLJ}Q1B+;Qm5*^Sbi4GkS z=$%x^e}~KLsX#0{?xIe;vfQJw53F0nfz;B_!kc7e=kvPd& zpM52ylsb2P7u5zy6Wb1u3TqDj9fm>ml@O}vJb4r57HTJ#6v(cz#&dC+JqjlY zcrMGBjv3FzHw&nY;usFr_!jwi^I`3WeB^(?r$juL23Vrh?^LgCs?W97Hmh-tVnYFs z=9R0dF9t~_JXho~%KBc1hIFsN`e18yQc@oV#_2yq!vU_qKtjNCJ*tM46PiIpQ+=*A zEz0tQNrSk)7@%4V){^jOTxuoYxm7C6grOx1qj4C7id)P2Vijc|Z}43AOx$@= zp#C-Hi7tGs-#Wr9QB$d6wN8DdkvB@m+CW5x9T4dc{Zm|_1e{gCa~VE> zL`djY?iSA_62RR$t;Nb$xM)z2X}MpwQt84I=%4Sg5UM>*60j zibJ+^2@*@F#79aLyP+zV=wWgdbVqu}%|^zDgVY}134Ad+ti(ADOCIu3EKp;E4iyE| zmcQ>KYAS3Ch`&sq-CME9wyXQ zVXU?>>rd*itV4qzEDMG|Ed8iHTGns^Mfq$x>ZT5kIW?{n{J>|q#15Y-BK?4^NM1(L zKZafO^W+n0<5@{fDpYH_1GYHAx)~os#f}HG#^Cq@eCZ*d#Y(H?vK}?YIAZZsFIZ(E zg5}r1Bu`l;}-AucC z0Xs||4cB0r*@KzW@d{ri-Etz?uOy8PyzgdW*QB*Pum9zw4^Je~k<=*Bp+f>4DkRXM zK@uG`dk#A2po3azxchQYPSeIw;||iVpdsIS3>%S$kaB`drt_fjrER13=MyJ-MhW4c znv9V5rxvHHydARlXccd(-=Er?F2AW(!^a1|dj9e9+2C|Zhs=N%hlBYA`m@F9!pf}Y zk2jT1gHLI5x*?wkX%2>Hkkg6wNliYb#p%Y3G~{l648w<)6Vmoa?LMW&=}sDibiJCC z#{JO-pVI7fNpU#M-tR_ry7`nqjZPN|1gHbVH1tPtR!}#evdQVPMIuohCZ=SxPiN}t zQ?@u=fH@ey$sea;3h*nauTN=rx(N)V68P@Bb?5~?rOD||`BIP&w^rZmsJr`=txlK3 zYMW(Kc|p^bWoMtV-RV|hT)#4oE9Kv~W!crIv^w3;YT~Sd|4XK4gAtWt%a&zNpVH)X zS;GvgTzrr$pf9@f2lJ8rmNiM9 z6buGBgFYk5eEoMZfJv9HYu~c$=2K2BPIuV0HoY=e>Muu`udho*W@hW^xtC9Ab-EQA z^Y|$qZknUa-%C}LX^Tp|e99)LyM-=a*Ws_{D06|2xR!Wok4oKq$`+@)ft2}sxn92J zD0BH*@9~DH)X}GGaJua@n6JxqP$ZSF7-g=P>w1sdqf$SgveD_b(cmq~gFAegqKr6` z+qPx-bf3~iW9}ZpQ$qmGFCofY(^E4@lS|KO?17?VdnaE5qta- zqEZ`OW0<*ov2{s3{sB>`m4ZOXIaBbuit+31qf#aPAJq5N3?h_cVE_OC07*qoM6N<$ Ef;vuZssI20 literal 13481 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 X;wZ3ku#u|x00000NkvXXu0mjfrWott From a3babc1a351caa2173e4117dc538e306bde3b026 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 19 Feb 2024 07:10:53 +0000 Subject: [PATCH 013/148] Automatic changelog for PR #5725 [ci skip] --- html/changelogs/AutoChangeLog-pr-5725.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5725.yml diff --git a/html/changelogs/AutoChangeLog-pr-5725.yml b/html/changelogs/AutoChangeLog-pr-5725.yml new file mode 100644 index 000000000000..b960418d6fa9 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5725.yml @@ -0,0 +1,4 @@ +author: "SabreML" +delete-after: True +changes: + - code_imp: "Added a unit test for xeno strains." \ No newline at end of file From efc4e0aa3bda7ba8c48b08a9e1980831620a77b3 Mon Sep 17 00:00:00 2001 From: Drathek <76988376+Drulikar@users.noreply.github.com> Date: Sun, 18 Feb 2024 22:48:41 -0800 Subject: [PATCH 014/148] Update Guns Lineart and Autowiki Handling of Base Types (#5729) # About the pull request This PR is a follow up to #5631 and does several things related to gun icons: - Autowiki now skips mags and guns with no icon_staste set (I did the same for attachments, but none are in this scenario) - Gun lineart now has the no_name sprite as the first sprite so it is used again as the default sprite when no lineart exists - Various gun linearts have been duplicated for sub types that are basically the same icon. - The testing for missing linearts has been fixed to check icon_state instead of base_gun_icon because only a couple guns even assigned base_gun_icon before Initialize - The testing for missing linearts now skips `GUN_UNUSUAL_DESIGN` since they can't be inspected - The unit_test for spritesheets now enforces css requirements. See https://www.w3.org/TR/CSS2/syndata.html#value-def-identifier - The 88m4 has been renamed to _88m4 to comply with css requirements. - Removed the two cases where a base_gun_icon was set in the definition (that would just get reset in Initialize) - Since many guns are now missing sprites in the missing lineart test, the testing error is downgraded to only a debug log until they can all have an exception set or the icons set. Currently all the missing sprites are below:

Missing Sprites in icons/obj/items/weapons/guns/lineart.dmi - /obj/item/weapon/gun/pistol/np92, icon_state="np92" - /obj/item/weapon/gun/pistol/np92/suppressed, icon_state="npz92" - /obj/item/weapon/gun/pistol/np92/suppressed/tranq, icon_state="npz92" - /obj/item/weapon/gun/pistol/t73, icon_state="tt" - /obj/item/weapon/gun/pistol/t73/leader, icon_state="ttb" - /obj/item/weapon/gun/pistol/clfpistol, icon_state="m43" - /obj/item/weapon/gun/pistol/es4, icon_state="es4" - /obj/item/weapon/gun/energy/rxfm5_eva, icon_state="rxfm5_eva" - /obj/item/weapon/gun/launcher/rocket/anti_tank, icon_state="m83a2" - /obj/item/weapon/gun/launcher/rocket/anti_tank/disposable, icon_state="m83a2" - /obj/item/weapon/gun/launcher/rocket/upp, icon_state="hjra12" - /obj/item/weapon/gun/rifle/m41a/elite/xm40, icon_state="m40sd" - /obj/item/weapon/gun/rifle/m41a/elite/xm40/ap, icon_state="m40sd" - /obj/item/weapon/gun/rifle/nsg23, icon_state="nsg23" - /obj/item/weapon/gun/rifle/nsg23/stripped, icon_state="nsg23" - /obj/item/weapon/gun/rifle/nsg23/no_lock, icon_state="nsg23" - /obj/item/weapon/gun/rifle/nsg23/no_lock/stripped, icon_state="nsg23" - /obj/item/weapon/gun/rifle/mar40/lmg, icon_state="mar50" - /obj/item/weapon/gun/rifle/mar40/lmg/tactical, icon_state="mar50" - /obj/item/weapon/gun/rifle/xm177, icon_state="xm177" - /obj/item/weapon/gun/rifle/xm177/dutch, icon_state="xm177" - /obj/item/weapon/gun/rifle/ar10, icon_state="ar10" - /obj/item/weapon/gun/rifle/m4ra, icon_state="m4ra" - /obj/item/weapon/gun/rifle/m4ra/training, icon_state="m4ra" - /obj/item/weapon/gun/rifle/l42a/abr40, icon_state="abr40" - /obj/item/weapon/gun/rifle/l42a/abr40/tactical, icon_state="abr40_tac" - /obj/item/weapon/gun/rifle/rmc_f90, icon_state="aug" - /obj/item/weapon/gun/rifle/rmc_f90/a_grip, icon_state="aug_com" - /obj/item/weapon/gun/rifle/rmc_f90/scope, icon_state="aug_dmr" - /obj/item/weapon/gun/rifle/rmc_f90/shotgun, icon_state="aug_mkey" - /obj/item/weapon/gun/rifle/m4ra_custom, icon_state="m4ra_custom" - /obj/item/weapon/gun/rifle/sniper/XM43E1, icon_state="xm43e1" - /obj/item/weapon/gun/rifle/sniper/svd, icon_state="type88" - /obj/item/weapon/gun/boltaction, icon_state="boltaction" - /obj/item/weapon/gun/boltaction/vulture, icon_state="vulture" - /obj/item/weapon/gun/boltaction/vulture/skillless, icon_state="vulture" - /obj/item/weapon/gun/lever_action, icon_state="r4t-placeholder" - /obj/item/weapon/gun/lever_action/r4t, icon_state="r4t" - /obj/item/weapon/gun/lever_action/xm88, icon_state="boomslang" - /obj/item/weapon/gun/pkp, icon_state="qjy72" - /obj/item/weapon/gun/revolver/m44/custom/pkd_special, icon_state="lapd_2019" - /obj/item/weapon/gun/revolver/m44/custom/pkd_special/k2049, icon_state="lapd_2049" - /obj/item/weapon/gun/revolver/m44/custom/pkd_special/l_series, icon_state="pkd_double" - /obj/item/weapon/gun/revolver/m44/custom/webley, icon_state="webley" - /obj/item/weapon/gun/revolver/upp, icon_state="zhnk72" - /obj/item/weapon/gun/revolver/upp/shrapnel, icon_state="zhnk72" - /obj/item/weapon/gun/shotgun/combat/riot, icon_state="mp220" - /obj/item/weapon/gun/shotgun/combat/guard, icon_state="mp221" - /obj/item/weapon/gun/shotgun/combat/marsoc, icon_state="mk210" - /obj/item/weapon/gun/shotgun/type23, icon_state="type23" - /obj/item/weapon/gun/shotgun/type23/breacher, icon_state="type23" - /obj/item/weapon/gun/shotgun/type23/breacher/slug, icon_state="type23" - /obj/item/weapon/gun/shotgun/type23/breacher/flechette, icon_state="type23" - /obj/item/weapon/gun/shotgun/type23/dual, icon_state="type23" - /obj/item/weapon/gun/shotgun/type23/dragon, icon_state="type23" - /obj/item/weapon/gun/shotgun/type23/riot_control, icon_state="type23" - /obj/item/weapon/gun/shotgun/double/twobore, icon_state="twobore" - /obj/item/weapon/gun/smartgun/rmc, icon_state="magsg" - /obj/item/weapon/gun/smg/pps43, icon_state="insasu" - /obj/item/weapon/gun/smg/pps43/extended_mag, icon_state="insasu" - /obj/item/weapon/gun/smg/bizon, icon_state="type64" - /obj/item/weapon/gun/smg/bizon/upp, icon_state="type64_u" - /obj/item/weapon/gun/smg/uzi, icon_state="uzi" - /obj/item/weapon/gun/smg/nailgun, icon_state="nailgun" - /obj/item/weapon/gun/smg/nailgun/compact, icon_state="cnailgun"
# Explain why it's good for the game Now the 88m4 pistol doesn't show up as the default icon, and instead is the no_name icon: ![image](https://github.com/cmss13-devs/cmss13/assets/76988376/6d02f72b-4a29-48d6-900a-8b7109cd5057) Now spritesheet states that can't be displayed (such as the 88m4 because it starts with a digit) will fail unit tests: ![image](https://github.com/cmss13-devs/cmss13/assets/76988376/180d5834-d873-46b4-9cb8-e4c0ac03d033) but I ensured the rename to _88m4 still works correctly even with the empty state: ![image](https://github.com/cmss13-devs/cmss13/assets/76988376/0b788b37-e993-4c25-af3a-f4f7778034ac) # Testing Photographs and Procedure See above. All "new" sprites are duplicates of existing. # Changelog :cl: Drathek code: Autowiki now skips guns and mags without icon_states code: Unit testing for spritesheets now enforces css requirements for class names imageadd: Gun stats lineart now uses the no_name sprite again for guns without lineart /:cl: --- code/modules/asset_cache/asset_list_items.dm | 11 +++++++++-- code/modules/autowiki/pages/guns.dm | 12 +++++++++--- code/modules/projectiles/guns/pistols.dm | 4 +--- code/modules/unit_tests/spritesheets.dm | 4 ++++ .../weapons/guns/guns_by_faction/uscm.dmi | Bin 31689 -> 27678 bytes icons/obj/items/weapons/guns/lineart.dmi | Bin 15450 -> 17104 bytes 6 files changed, 23 insertions(+), 8 deletions(-) diff --git a/code/modules/asset_cache/asset_list_items.dm b/code/modules/asset_cache/asset_list_items.dm index e35974bc6276..0b27cf268a12 100644 --- a/code/modules/asset_cache/asset_list_items.dm +++ b/code/modules/asset_cache/asset_list_items.dm @@ -378,9 +378,16 @@ InsertAll("", icon_file) for(var/obj/item/weapon/gun/current_gun as anything in subtypesof(/obj/item/weapon/gun)) - var/icon_state = initial(current_gun.base_gun_icon) + if(isnull(initial(current_gun.icon_state))) + continue + if(initial(current_gun.flags_gun_features) & GUN_UNUSUAL_DESIGN) + continue // These don't have a way to inspect weapon stats + var/obj/item/weapon/gun/temp_gun = new current_gun + var/icon_state = temp_gun.base_gun_icon // base_gun_icon is set in Initialize generally + qdel(temp_gun) if(icon_state && isnull(sprites[icon_state])) - stack_trace("[current_gun] does not have a valid lineart icon state, icon=[icon_file], icon_state=[json_encode(icon_state)](\ref[icon_state])") + // upgrade this to a stack_trace once all guns have a lineart and we want to lint against that + log_debug("[current_gun] does not have a valid lineart icon state, icon=[icon_file], icon_state=[json_encode(icon_state)]") ..() diff --git a/code/modules/autowiki/pages/guns.dm b/code/modules/autowiki/pages/guns.dm index ad675c51a409..7f63602d56f0 100644 --- a/code/modules/autowiki/pages/guns.dm +++ b/code/modules/autowiki/pages/guns.dm @@ -7,14 +7,18 @@ var/list/gun_to_ammo = list() - for(var/obj/item/ammo_magazine/typepath as anything in subtypesof(/obj/item/ammo_magazine) - subtypesof(/obj/item/ammo_magazine/internal)) + for(var/obj/item/ammo_magazine/typepath as anything in subtypesof(/obj/item/ammo_magazine) - typesof(/obj/item/ammo_magazine/internal)) + if(isnull(initial(typepath.icon_state))) + continue // Skip mags with no icon_state (e.g. base types) LAZYADD(gun_to_ammo[initial(typepath.gun_type)], typepath) for(var/typepath in sort_list(subtypesof(/obj/item/weapon/gun), GLOBAL_PROC_REF(cmp_typepaths_asc))) - var/obj/item/weapon/gun/generating_gun = new typepath() + var/obj/item/weapon/gun/generating_gun = typepath + if(isnull(initial(generating_gun.icon_state))) + continue // Skip guns with no icon_state (e.g. base types) + generating_gun = new typepath() var/filename = SANITIZE_FILENAME(escape_value(format_text(generating_gun.name))) - var/list/gun_data = generating_gun.ui_data() var/list/valid_mag_types = list() @@ -70,6 +74,8 @@ var/list/attachments_by_slot = list() for(var/obj/item/attachable/attachment_typepath as anything in generating_gun.attachable_allowed) + if(isnull(initial(attachment_typepath.icon_state))) + continue // Skip attachments with no icon_state (e.g. base types) LAZYADD(attachments_by_slot[capitalize(initial(attachment_typepath.slot))], attachment_typepath) var/attachments = "" diff --git a/code/modules/projectiles/guns/pistols.dm b/code/modules/projectiles/guns/pistols.dm index c17ca5bca739..5794e861a63c 100644 --- a/code/modules/projectiles/guns/pistols.dm +++ b/code/modules/projectiles/guns/pistols.dm @@ -236,7 +236,6 @@ icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi' icon_state = "c_deagle" item_state = "c_deagle" - base_gun_icon = "c_deagle" current_mag = /obj/item/ammo_magazine/pistol/heavy/super/highimpact black_market_value = 100 @@ -257,7 +256,6 @@ desc = "A Desert Eagle anodized in gold and adorned with rosewood grips. The living definition of ostentatious, it's flashy, unwieldy, tremendously heavy, and kicks like a mule. But as a symbol of power, there's nothing like it." icon_state = "g_deagle" item_state = "g_deagle" - base_gun_icon = "g_deagle" //------------------------------------------------------- //NP92 pistol @@ -588,7 +586,7 @@ name = "\improper 88 Mod 4 combat pistol" desc = "Standard issue USCM firearm. Also found in the hands of Weyland-Yutani PMC teams. Fires 9mm armor shredding rounds and is capable of 3-round burst." icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' - icon_state = "88m4" + icon_state = "_88m4" // to comply with css standards item_state = "88m4" fire_sound = "88m4" firesound_volume = 20 diff --git a/code/modules/unit_tests/spritesheets.dm b/code/modules/unit_tests/spritesheets.dm index c7c16c6535e8..142d3f958821 100644 --- a/code/modules/unit_tests/spritesheets.dm +++ b/code/modules/unit_tests/spritesheets.dm @@ -2,6 +2,7 @@ /datum/unit_test/spritesheets /datum/unit_test/spritesheets/Run() + var/regex/valid_css_class = new(@"^([\l_][\w\-]|[\l_\-][\l_])") for(var/datum/asset/spritesheet/sheet as anything in subtypesof(/datum/asset/spritesheet)) if(!initial(sheet.name)) //Ignore abstract types continue @@ -9,3 +10,6 @@ for(var/sprite_name in sheet.sprites) if(!sprite_name) TEST_FAIL("Spritesheet [sheet.type] has a nameless icon state.") + if(!valid_css_class.Find(sprite_name)) + // https://www.w3.org/TR/CSS2/syndata.html#value-def-identifier + TEST_FAIL("Spritesheet [sheet.type] has a icon state that doesn't comply with css standards: '[sprite_name]'.") diff --git a/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi b/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi index 4ecb121a7febdfa6911b1a8407636d49730685b4..1f0b98967a25bf5b8286d57e9510d9b90f6fe24f 100644 GIT binary patch literal 27678 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 M83pNIl7{~O2bc~!Y5)KL literal 31689 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

D9Z2L&gI)7uipl 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 Uxdedt3iwfwQF>k?W#IdN0J87GX#fBK diff --git a/icons/obj/items/weapons/guns/lineart.dmi b/icons/obj/items/weapons/guns/lineart.dmi index 212b3988fc027085d0465995cd667954e094e09c..6c1dae5bd5c1c37600b270f22be512343c682756 100644 GIT binary patch literal 17104 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 a{duf|24&KNs8n!3z&Y(pS~+K|@BbI2TpV2h literal 15450 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�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 O0)~2*bqmkh-TQ9>bcfmi From 00a7bf2e2524a49fb4e10127b04c6e6f5e53f9f4 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 19 Feb 2024 07:25:29 +0000 Subject: [PATCH 015/148] Automatic changelog for PR #5729 [ci skip] --- html/changelogs/AutoChangeLog-pr-5729.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5729.yml diff --git a/html/changelogs/AutoChangeLog-pr-5729.yml b/html/changelogs/AutoChangeLog-pr-5729.yml new file mode 100644 index 000000000000..15065bbe4e90 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5729.yml @@ -0,0 +1,6 @@ +author: "Drathek" +delete-after: True +changes: + - code_imp: "Autowiki now skips guns and mags without icon_states" + - code_imp: "Unit testing for spritesheets now enforces css requirements for class names" + - imageadd: "Gun stats lineart now uses the no_name sprite again for guns without lineart" \ No newline at end of file From a24d644425bb874cf62c744e1c7c63912c26803c Mon Sep 17 00:00:00 2001 From: Drathek <76988376+Drulikar@users.noreply.github.com> Date: Sun, 18 Feb 2024 22:49:21 -0800 Subject: [PATCH 016/148] Temporary mute now also prevents hive death messages (#5748) # About the pull request This PR is a followup to #5688 to additionally prevent death messages getting sent to the hive during the temporary mute time. # Explain why it's good for the game Ultimately this is to quell more concerns with ghosts using meta knowledge of say a flank approaching and throwing themselves at that flank and informing the hive of the flank via their death message location. # Testing Photographs and Procedure

Screenshots & Videos https://github.com/cmss13-devs/cmss13/assets/76988376/8b8426bd-8f82-43f6-bb70-a91346c47534
# Changelog :cl: Drathek del: Removed death messages for lesser drones and facehuggers that are still temporarily muted /:cl: --- code/__DEFINES/traits.dm | 4 ++++ code/datums/components/temporary_mute.dm | 2 ++ code/modules/mob/living/carbon/xenomorph/death.dm | 3 ++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm index dc714472510a..2551872d95b5 100644 --- a/code/__DEFINES/traits.dm +++ b/code/__DEFINES/traits.dm @@ -159,6 +159,8 @@ #define TRAIT_DAZED "dazed" /// Apply this to identify a mob as merged with weeds #define TRAIT_MERGED_WITH_WEEDS "merged_with_weeds" +/// Apply this to identify a mob as temporarily muted +#define TRAIT_TEMPORARILY_MUTED "temporarily_muted" // SPECIES TRAITS /// Knowledge of Yautja technology @@ -422,6 +424,8 @@ GLOBAL_LIST(trait_name_map) ///Status trait coming from ability #define TRAIT_SOURCE_ABILITY(ability) "t_s_ability_[ability]" #define TRAIT_SOURCE_LIMB(limb) "t_s_limb_[limb]" +///Status trait coming from temporary_mute +#define TRAIT_SOURCE_TEMPORARY_MUTE "t_s_temporary_mute" ///Status trait forced by the xeno action charge #define TRAIT_SOURCE_XENO_ACTION_CHARGE "t_s_xeno_action_charge" ///Status trait coming from a xeno nest diff --git a/code/datums/components/temporary_mute.dm b/code/datums/components/temporary_mute.dm index 0fed49c4778e..64b3e87809b6 100644 --- a/code/datums/components/temporary_mute.dm +++ b/code/datums/components/temporary_mute.dm @@ -27,6 +27,7 @@ RegisterSignal(parent, COMSIG_XENO_TRY_HIVEMIND_TALK, PROC_REF(on_hivemind)) RegisterSignal(parent, COMSIG_MOB_TRY_EMOTE, PROC_REF(on_emote)) RegisterSignal(parent, COMSIG_MOB_TRY_POINT, PROC_REF(on_point)) + ADD_TRAIT(parent, TRAIT_TEMPORARILY_MUTED, TRAIT_SOURCE_TEMPORARY_MUTE) /datum/component/temporary_mute/UnregisterFromParent() ..() @@ -37,6 +38,7 @@ UnregisterSignal(parent, COMSIG_MOB_TRY_POINT) if(on_unmute_message) to_chat(parent, SPAN_NOTICE(on_unmute_message)) + REMOVE_TRAIT(parent, TRAIT_TEMPORARILY_MUTED, TRAIT_SOURCE_TEMPORARY_MUTE) /datum/component/temporary_mute/proc/on_speak( mob/user, diff --git a/code/modules/mob/living/carbon/xenomorph/death.dm b/code/modules/mob/living/carbon/xenomorph/death.dm index 503ca11a7631..d6a9dd01f3cc 100644 --- a/code/modules/mob/living/carbon/xenomorph/death.dm +++ b/code/modules/mob/living/carbon/xenomorph/death.dm @@ -84,7 +84,8 @@ playsound(loc, prob(50) == 1 ? 'sound/voice/alien_death.ogg' : 'sound/voice/alien_death2.ogg', 25, 1) var/area/A = get_area(src) if(hive && hive.living_xeno_queen) - xeno_message("Hive: [src] has died[A? " at [sanitize_area(A.name)]":""]! [banished ? "They were banished from the hive." : ""]", death_fontsize, hivenumber) + if(!HAS_TRAIT(src, TRAIT_TEMPORARILY_MUTED)) + xeno_message("Hive: [src] has died[A? " at [sanitize_area(A.name)]":""]! [banished ? "They were banished from the hive." : ""]", death_fontsize, hivenumber) if(hive && IS_XENO_LEADER(src)) //Strip them from the Xeno leader list, if they are indexed in here hive.remove_hive_leader(src) From f3cca04a7a731bd2d5d3dafe4be87c1b888186c0 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 19 Feb 2024 07:39:23 +0000 Subject: [PATCH 017/148] Automatic changelog for PR #5748 [ci skip] --- html/changelogs/AutoChangeLog-pr-5748.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5748.yml diff --git a/html/changelogs/AutoChangeLog-pr-5748.yml b/html/changelogs/AutoChangeLog-pr-5748.yml new file mode 100644 index 000000000000..f8110276f9d7 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5748.yml @@ -0,0 +1,4 @@ +author: "Drathek" +delete-after: True +changes: + - rscdel: "Removed death messages for lesser drones and facehuggers that are still temporarily muted" \ No newline at end of file From 4fa57b6936812a592e9004b6cce48c2299e53bc1 Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Mon, 19 Feb 2024 06:50:14 +0000 Subject: [PATCH 018/148] Adds tooltips to changelog icons (#5713) # About the pull request Adds tooltips to the changelog icons. # Explain why it's good for the game While some of the icons are easy to understand at a glance, others like those for 'qol', 'refactor', 'mapadd' and 'config' are pretty much just meaningless glyphs. They work fine if you've also read the discord changelog or checked recent github merges, but if you're just going off of the ingame one it can sometimes be a little confusing. # Testing Photographs and Procedure
Screenshots & Videos https://github.com/cmss13-devs/cmss13/assets/57483089/cc7935e6-da77-4c1f-b2e9-ab38c37aaaf9
# Changelog :cl: ui: Added tooltips to entry icons in the changelog. /:cl: --- tgui/packages/tgui/interfaces/Changelog.jsx | 84 ++++++++++----------- 1 file changed, 41 insertions(+), 43 deletions(-) diff --git a/tgui/packages/tgui/interfaces/Changelog.jsx b/tgui/packages/tgui/interfaces/Changelog.jsx index 5d2fa9447b47..91d107673675 100644 --- a/tgui/packages/tgui/interfaces/Changelog.jsx +++ b/tgui/packages/tgui/interfaces/Changelog.jsx @@ -1,39 +1,39 @@ import { classes } from 'common/react'; import { useBackend } from '../backend'; import { Component, Fragment } from 'react'; -import { Box, Button, Dropdown, Icon, Section, Stack, Table } from '../components'; +import { Box, Button, Dropdown, Icon, Section, Stack, Table, Tooltip } from '../components'; import { Window } from '../layouts'; import { resolveAsset } from '../assets'; import dateformat from 'dateformat'; import yaml from 'js-yaml'; -const icons = { - bugfix: { icon: 'bug', color: 'green' }, - fix: { icon: 'bug', color: 'green' }, - wip: { icon: 'hammer', color: 'orange' }, - qol: { icon: 'hand-holding-heart', color: 'green' }, - soundadd: { icon: 'tg-sound-plus', color: 'green' }, - sounddel: { icon: 'tg-sound-minus', color: 'red' }, - add: { icon: 'check-circle', color: 'green' }, - expansion: { icon: 'check-circle', color: 'green' }, - rscadd: { icon: 'check-circle', color: 'green' }, - rscdel: { icon: 'times-circle', color: 'red' }, - imageadd: { icon: 'tg-image-plus', color: 'green' }, - imagedel: { icon: 'tg-image-minus', color: 'red' }, - spellcheck: { icon: 'spell-check', color: 'green' }, - experiment: { icon: 'radiation', color: 'yellow' }, - balance: { icon: 'balance-scale-right', color: 'yellow' }, - code_imp: { icon: 'code', color: 'green' }, - refactor: { icon: 'tools', color: 'green' }, - config: { icon: 'cogs', color: 'purple' }, - admin: { icon: 'user-shield', color: 'purple' }, - server: { icon: 'server', color: 'purple' }, - tgs: { icon: 'toolbox', color: 'purple' }, - tweak: { icon: 'wrench', color: 'green' }, - ui: { icon: 'desktop', color: 'blue' }, - mapadd: { icon: 'earth-africa', color: 'yellow' }, - maptweak: { icon: 'map-location-dot', color: 'green' }, - unknown: { icon: 'info-circle', color: 'label' }, +const changeTypes = { + bugfix: { icon: 'bug', color: 'green', desc: 'Fix' }, + fix: { icon: 'bug', color: 'green', desc: 'Fix' }, + wip: { icon: 'hammer', color: 'orange', desc: 'WIP' }, + qol: { icon: 'hand-holding-heart', color: 'green', desc: 'QOL' }, + soundadd: { icon: 'tg-sound-plus', color: 'green', desc: 'Sound add' }, + sounddel: { icon: 'tg-sound-minus', color: 'red', desc: 'Sound del' }, + add: { icon: 'check-circle', color: 'green', desc: 'Addition' }, + expansion: { icon: 'check-circle', color: 'green', desc: 'Addition' }, + rscadd: { icon: 'check-circle', color: 'green', desc: 'Addition' }, + rscdel: { icon: 'times-circle', color: 'red', desc: 'Removal' }, + imageadd: { icon: 'tg-image-plus', color: 'green', desc: 'Sprite add' }, + imagedel: { icon: 'tg-image-minus', color: 'red', desc: 'Sprite del' }, + spellcheck: { icon: 'spell-check', color: 'green', desc: 'Spellcheck' }, + experiment: { icon: 'radiation', color: 'yellow', desc: 'Experiment' }, + balance: { icon: 'balance-scale-right', color: 'yellow', desc: 'Balance' }, + code_imp: { icon: 'code', color: 'green', desc: 'Code improvement' }, + refactor: { icon: 'tools', color: 'green', desc: 'Code refactor' }, + config: { icon: 'cogs', color: 'purple', desc: 'Config' }, + admin: { icon: 'user-shield', color: 'purple', desc: 'Admin' }, + server: { icon: 'server', color: 'purple', desc: 'Server' }, + tgs: { icon: 'toolbox', color: 'purple', desc: 'Server (TGS)' }, + tweak: { icon: 'wrench', color: 'green', desc: 'Tweak' }, + ui: { icon: 'desktop', color: 'blue', desc: 'UI' }, + mapadd: { icon: 'earth-africa', color: 'yellow', desc: 'Map add' }, + maptweak: { icon: 'map-location-dot', color: 'green', desc: 'Map tweak' }, + unknown: { icon: 'info-circle', color: 'label', desc: 'Unknown' }, }; export class Changelog extends Component { @@ -273,29 +273,27 @@ export class Changelog extends Component { {changes.map((change) => { - const changeType = Object.keys(change)[0]; + const changeKey = Object.keys(change)[0]; + const changeType = + changeTypes[changeKey] || changeTypes['unknown']; return ( - + - + + + - {change[changeType]} + {change[changeKey]} ); From ec43fa299d8967057ceb276e34b26ddbf7d1a4c4 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 19 Feb 2024 08:15:11 +0000 Subject: [PATCH 019/148] Automatic changelog for PR #5713 [ci skip] --- html/changelogs/AutoChangeLog-pr-5713.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5713.yml diff --git a/html/changelogs/AutoChangeLog-pr-5713.yml b/html/changelogs/AutoChangeLog-pr-5713.yml new file mode 100644 index 000000000000..4e6e4166ed5b --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5713.yml @@ -0,0 +1,4 @@ +author: "SabreML" +delete-after: True +changes: + - ui: "Added tooltips to entry icons in the changelog." \ No newline at end of file From aa11675ffd1b50c09fcb08ef064976444ae3e2f6 Mon Sep 17 00:00:00 2001 From: Vicacrov <49321394+Vicacrov@users.noreply.github.com> Date: Mon, 19 Feb 2024 07:55:16 +0100 Subject: [PATCH 020/148] Fixes ammo magazine checking with helmet if the mag is exactly half full (#5722) # About the pull request Hitting an ammo magazine against your helmet had a faulty examine text if the mag had exactly half of its capacity. Fixes #5714 # Explain why it's good for the game Not having cut off text in the game is # Testing Photographs and Procedure Here:
Screenshots & Videos ![image](https://github.com/cmss13-devs/cmss13/assets/49321394/ca96275f-e3ea-4530-8965-5cb39b62cf10) ![image](https://github.com/cmss13-devs/cmss13/assets/49321394/f0f54765-f1e4-44c7-9b9e-7161b2a8103c) ![image](https://github.com/cmss13-devs/cmss13/assets/49321394/0014c882-65b7-4311-ad6a-263d7a7f1c31) ![image](https://github.com/cmss13-devs/cmss13/assets/49321394/a46c3d73-ce04-4e95-8787-e3a172daa444) ![image](https://github.com/cmss13-devs/cmss13/assets/49321394/9bda789a-3f33-41ee-a0e7-777c8200b814)
# Changelog :cl: fix: Fixes a missing examine text when you hit an exactly half-full ammo magazine against your helmet. /:cl: --- code/modules/clothing/head/helmet.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 2e551f65d674..adfbfb023309 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -476,10 +476,10 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( /obj/item/clothing/head/helmet/marine/attackby(obj/item/attacking_item, mob/user) if(istype(attacking_item, /obj/item/ammo_magazine) && world.time > helmet_bash_cooldown && user) var/obj/item/ammo_magazine/M = attacking_item - var/ammo_level = "somewhat" + var/ammo_level = "more than half full." playsound(user, 'sound/items/trayhit1.ogg', 15, FALSE) - if(M.current_rounds > (M.max_rounds/2)) - ammo_level = "more than half full." + if(M.current_rounds == (M.max_rounds/2)) + ammo_level = "half full." if(M.current_rounds < (M.max_rounds/2)) ammo_level = "less than half full." if(M.current_rounds < (M.max_rounds/6)) From 6c9c669b3d59d395b4bcf23ff8b21f1223c151ed Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 19 Feb 2024 08:28:39 +0000 Subject: [PATCH 021/148] Automatic changelog for PR #5722 [ci skip] --- html/changelogs/AutoChangeLog-pr-5722.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5722.yml diff --git a/html/changelogs/AutoChangeLog-pr-5722.yml b/html/changelogs/AutoChangeLog-pr-5722.yml new file mode 100644 index 000000000000..f102bc41bed9 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5722.yml @@ -0,0 +1,4 @@ +author: "Vicacrov" +delete-after: True +changes: + - bugfix: "Fixes a missing examine text when you hit an exactly half-full ammo magazine against your helmet." \ No newline at end of file From 982f512f876801e05512ad8aea73d5d1802b130b Mon Sep 17 00:00:00 2001 From: Changelogs Date: Tue, 20 Feb 2024 01:06:07 +0000 Subject: [PATCH 022/148] Automatic changelog compile [ci skip] --- html/changelogs/AutoChangeLog-pr-5657.yml | 10 -------- html/changelogs/AutoChangeLog-pr-5701.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5713.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5722.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5725.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5729.yml | 6 ----- html/changelogs/AutoChangeLog-pr-5734.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5748.yml | 4 ---- html/changelogs/archive/2024-02.yml | 29 +++++++++++++++++++++++ 9 files changed, 29 insertions(+), 40 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-5657.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5701.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5713.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5722.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5725.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5729.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5734.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5748.yml diff --git a/html/changelogs/AutoChangeLog-pr-5657.yml b/html/changelogs/AutoChangeLog-pr-5657.yml deleted file mode 100644 index 53961d4fcdce..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5657.yml +++ /dev/null @@ -1,10 +0,0 @@ -author: "BeagleGaming1" -delete-after: True -changes: - - balance: "Xenos can slash reactors" - - balance: "Reactors that are damaged will still run until reaching weld damage or being manually de-activated" - - balance: "Reactors that are damaged will lose fuel (when applicable) and fail more often when fuel runs out, new cells need to be used to reset the fail rate" - - balance: "Reactors can be damaged by bullets or explosions" - - code_imp: "Updated Power all ship reactors admin button code" - - imageadd: "Updated reactor sprites" - - maptweak: "Minor changes to reactors and surrounding areas" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5701.yml b/html/changelogs/AutoChangeLog-pr-5701.yml deleted file mode 100644 index 60b4a63f7a8d..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5701.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Huffie56" -delete-after: True -changes: - - balance: "add the ability for SG to buy an VP78 or an SU-6 each for 15 points." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5713.yml b/html/changelogs/AutoChangeLog-pr-5713.yml deleted file mode 100644 index 4e6e4166ed5b..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5713.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "SabreML" -delete-after: True -changes: - - ui: "Added tooltips to entry icons in the changelog." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5722.yml b/html/changelogs/AutoChangeLog-pr-5722.yml deleted file mode 100644 index f102bc41bed9..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5722.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Vicacrov" -delete-after: True -changes: - - bugfix: "Fixes a missing examine text when you hit an exactly half-full ammo magazine against your helmet." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5725.yml b/html/changelogs/AutoChangeLog-pr-5725.yml deleted file mode 100644 index b960418d6fa9..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5725.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "SabreML" -delete-after: True -changes: - - code_imp: "Added a unit test for xeno strains." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5729.yml b/html/changelogs/AutoChangeLog-pr-5729.yml deleted file mode 100644 index 15065bbe4e90..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5729.yml +++ /dev/null @@ -1,6 +0,0 @@ -author: "Drathek" -delete-after: True -changes: - - code_imp: "Autowiki now skips guns and mags without icon_states" - - code_imp: "Unit testing for spritesheets now enforces css requirements for class names" - - imageadd: "Gun stats lineart now uses the no_name sprite again for guns without lineart" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5734.yml b/html/changelogs/AutoChangeLog-pr-5734.yml deleted file mode 100644 index 8672d40318d1..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5734.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Zonespace27" -delete-after: True -changes: - - bugfix: "You can no longer remove vehicle parts from a vehicle at a distance" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5748.yml b/html/changelogs/AutoChangeLog-pr-5748.yml deleted file mode 100644 index f8110276f9d7..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5748.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Drathek" -delete-after: True -changes: - - rscdel: "Removed death messages for lesser drones and facehuggers that are still temporarily muted" \ No newline at end of file diff --git a/html/changelogs/archive/2024-02.yml b/html/changelogs/archive/2024-02.yml index fe6eeecfbae8..1feb5e858afc 100644 --- a/html/changelogs/archive/2024-02.yml +++ b/html/changelogs/archive/2024-02.yml @@ -218,3 +218,32 @@ Diegoflores31: - balance: Tail Jab will now target enemies on the same tile it was targeted. - balance: Aiming Tail Jab directly on a target will do an additional 15 damage +2024-02-20: + BeagleGaming1: + - balance: Xenos can slash reactors + - balance: Reactors that are damaged will still run until reaching weld damage or + being manually de-activated + - balance: Reactors that are damaged will lose fuel (when applicable) and fail more + often when fuel runs out, new cells need to be used to reset the fail rate + - balance: Reactors can be damaged by bullets or explosions + - code_imp: Updated Power all ship reactors admin button code + - imageadd: Updated reactor sprites + - maptweak: Minor changes to reactors and surrounding areas + Drathek: + - code_imp: Autowiki now skips guns and mags without icon_states + - code_imp: Unit testing for spritesheets now enforces css requirements for class + names + - imageadd: Gun stats lineart now uses the no_name sprite again for guns without + lineart + - rscdel: Removed death messages for lesser drones and facehuggers that are still + temporarily muted + Huffie56: + - balance: add the ability for SG to buy an VP78 or an SU-6 each for 15 points. + SabreML: + - ui: Added tooltips to entry icons in the changelog. + - code_imp: Added a unit test for xeno strains. + Vicacrov: + - bugfix: Fixes a missing examine text when you hit an exactly half-full ammo magazine + against your helmet. + Zonespace27: + - bugfix: You can no longer remove vehicle parts from a vehicle at a distance From b05372b9e9f5a42e85a314c6cdcb7a98c6d2b4f8 Mon Sep 17 00:00:00 2001 From: hislittlecuzingames <142365554+hislittlecuzingames@users.noreply.github.com> Date: Mon, 19 Feb 2024 20:26:17 -0500 Subject: [PATCH 023/148] Adds Flank Route & Choke Point West of Eastern Lab Trijent Dam (#5645) # About the pull request Adds another path for Xenos to attack marines when at eastern labs. # Explain why it's good for the game Allows for more combat on Trijent. I think Trijent is boring, and once marines get into Eastern Lab, the xenos usually just die and just a few marines are fighting because there's not enough space for xenos to fight. # Testing Photographs and Procedure Small map edit.
The changes I made and a picture circling what was changed. ![image](https://github.com/cmss13-devs/cmss13/assets/142365554/90b03182-8f82-44ef-8974-bd3324693af6) ![image](https://github.com/cmss13-devs/cmss13/assets/142365554/09867473-4782-4b73-8865-36b1869599c4) Areas are also setup. ![image](https://github.com/cmss13-devs/cmss13/assets/142365554/e25dc3bc-819c-4170-aa01-7abb22a33aa6)
# Changelog :cl: maptweak: tweaked Trijent Dam to add a new choke point. /:cl: --- maps/map_files/DesertDam/Desert_Dam.dmm | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index 4230c9611dae..4e06de75bc43 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -11227,11 +11227,6 @@ /obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"aHO" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, -/area/desert_dam/exterior/valley/valley_wilderness) "aHP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt{ @@ -96361,7 +96356,7 @@ awC awC dTs dTs -aHO +aXv aPP aaC aXC @@ -96607,7 +96602,7 @@ aVZ aHd dTs aOh -dTs +aWz dTs dTs dTs @@ -98713,8 +98708,8 @@ dTs dTs dTs dTs -aam -ayp +dTs +dTs aeE aeE ayD @@ -99885,7 +99880,7 @@ dTs dTs aam ayp -aeE +dTs aeE bgH dTs From dd80f45e01ed701fe11d0f760d85bf5c2d2689b5 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Tue, 20 Feb 2024 01:34:13 +0000 Subject: [PATCH 024/148] Automatic changelog for PR #5645 [ci skip] --- html/changelogs/AutoChangeLog-pr-5645.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5645.yml diff --git a/html/changelogs/AutoChangeLog-pr-5645.yml b/html/changelogs/AutoChangeLog-pr-5645.yml new file mode 100644 index 000000000000..b37554dbe5f0 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5645.yml @@ -0,0 +1,4 @@ +author: "hislittlecuzingames" +delete-after: True +changes: + - maptweak: "tweaked Trijent Dam to add a new choke point." \ No newline at end of file From 95c9a608a3e49afbba98751412e52a569ebc752a Mon Sep 17 00:00:00 2001 From: Drathek <76988376+Drulikar@users.noreply.github.com> Date: Mon, 19 Feb 2024 17:47:59 -0800 Subject: [PATCH 025/148] Fix broken Almayer access edits (#5752) # About the pull request This PR is a follow-up to fix some incorrect map edits in #4510 # Explain why it's good for the game Fixes #5744 # Testing Photographs and Procedure
Screenshots & Videos ![image](https://github.com/cmss13-devs/cmss13/assets/76988376/a909a965-f863-40ed-9306-8f93fcd6b4ea)
# Changelog :cl: Drathek maptweak: Fixed access for two doors on the Almayer /:cl: --- maps/map_files/USS_Almayer/USS_Almayer.dmm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index d94beaf747b3..dc84289502cc 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -16485,7 +16485,7 @@ access_modified = 1; dir = 1; name = "\improper Auxiliary Combat Support Secondary Preparations"; - req_one_access = "19;27;22" + req_one_access_txt = "19;27;22" }, /turf/open/floor/almayer{ icon_state = "plate" @@ -31968,7 +31968,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ access_modified = 1; name = "\improper Requisitions Auxiliary Storage Room"; - req_one_access = "19;21" + req_one_access_txt = "19;21" }, /turf/open/floor/almayer{ icon_state = "plate" From 2b9e7acd24909313d963f2cb31dd18306a1c5ef1 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Tue, 20 Feb 2024 01:56:51 +0000 Subject: [PATCH 026/148] Automatic changelog for PR #5752 [ci skip] --- html/changelogs/AutoChangeLog-pr-5752.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5752.yml diff --git a/html/changelogs/AutoChangeLog-pr-5752.yml b/html/changelogs/AutoChangeLog-pr-5752.yml new file mode 100644 index 000000000000..74f574d66b7c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5752.yml @@ -0,0 +1,4 @@ +author: "Drathek" +delete-after: True +changes: + - maptweak: "Fixed access for two doors on the Almayer" \ No newline at end of file From 8f0424ea82504d12ab3aa12436d8ecc4859d7019 Mon Sep 17 00:00:00 2001 From: Drathek <76988376+Drulikar@users.noreply.github.com> Date: Tue, 20 Feb 2024 00:28:23 -0800 Subject: [PATCH 027/148] Correct Vampire Lurker Strain Damage Modifications (#5753) # About the pull request This PR corrects an erroneous change in `apply_strain` because only modifiers can be set here. The change to lower the damage tier would be undone when `recalculate_damage` would apply the lurker caste's values for the upper and lower damage values. Ultimately I'm not certain it does need the damage reduction - but as of #5625 it does more with direct tail stabs so between the two this should be a minor nerf. # Explain why it's good for the game Corrects an intended reduction in damage for taking the strain. # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: Drathek balance: Corrected vampire lurker damage values (Effectively reduction by 5 damage for most attacks) /:cl: --- .../living/carbon/xenomorph/strains/castes/lurker/vampire.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/lurker/vampire.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/lurker/vampire.dm index 1df49092e783..5a0bc5073ee3 100644 --- a/code/modules/mob/living/carbon/xenomorph/strains/castes/lurker/vampire.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/lurker/vampire.dm @@ -21,8 +21,7 @@ lurker.health_modifier -= XENO_HEALTH_MOD_MED lurker.speed_modifier += XENO_SPEED_FASTMOD_TIER_1 lurker.armor_modifier += XENO_ARMOR_MOD_LARGE - lurker.melee_damage_lower = XENO_DAMAGE_TIER_3 - lurker.melee_damage_upper = XENO_DAMAGE_TIER_3 + lurker.damage_modifier -= XENO_DAMAGE_MOD_VERY_SMALL lurker.attack_speed_modifier -= 2 lurker.recalculate_everything() From f0f1f0470339332e39ac60986162ac1719989ebf Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Tue, 20 Feb 2024 08:36:38 +0000 Subject: [PATCH 028/148] Automatic changelog for PR #5753 [ci skip] --- html/changelogs/AutoChangeLog-pr-5753.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5753.yml diff --git a/html/changelogs/AutoChangeLog-pr-5753.yml b/html/changelogs/AutoChangeLog-pr-5753.yml new file mode 100644 index 000000000000..09fe604e5a9a --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5753.yml @@ -0,0 +1,4 @@ +author: "Drathek" +delete-after: True +changes: + - balance: "Corrected vampire lurker damage values (Effectively reduction by 5 damage for most attacks)" \ No newline at end of file From f9ed344491aa86b31bb867ba0e2b73682fe86eb3 Mon Sep 17 00:00:00 2001 From: Contrabang <91113370+Contrabang@users.noreply.github.com> Date: Tue, 20 Feb 2024 03:42:49 -0500 Subject: [PATCH 029/148] Jumping out of a dropship heading towards an LZ now throws your body at the ground, instead of deleting it. (#5584) # About the pull request Jumping out of a dropship heading towards an LZ now throws your body at the ground, instead of deleting it. This does around 500 damage, and permanently kills you. ![image](https://github.com/cmss13-devs/cmss13/assets/91113370/6bbd7926-1f8b-4078-a1ea-2dc583725ece) These people falling out of the sky, can land anywhere where there is no ceiling (or a glass one). Basically anywhere you can mortar, medevac, or laze something. This only works if the dropship is heading towards one of the LZs, if not, then they're deleted like normal. I also fixed the throwing, so it doesn't appear like you're just standing in space for 0.5 seconds before being disappeared. I also removed some unused arguments in `take_overall_damage` and `take_overall_armored_damage`. # Explain why it's good for the game It adds a bit of depth to the game, instead of your character being just outright deleted, their body actually ends up somewhere. # Testing Photographs and Procedure
Screenshots & Videos https://github.com/cmss13-devs/cmss13/assets/91113370/a6df19dc-7f9f-4c8d-8169-2db1497b6c54 (It does play sounds when you land, you just cant really hear them in this clip because they died.) ![image](https://github.com/cmss13-devs/cmss13/assets/91113370/b7f1bf66-fdce-4082-97c2-3fa841e168eb) ![image](https://github.com/cmss13-devs/cmss13/assets/91113370/f0819fea-4ac8-47b5-a012-f8ea12f08799) https://github.com/cmss13-devs/cmss13/assets/91113370/f727b8f7-1df3-4725-bb82-f16dc8294eea (Items do a little bounce when they land too)
# Changelog :cl: add: Falling out of a Dropship en route to an LZ, now lets your corpse plummet to the ground instead of being deleted. /:cl: --------- Co-authored-by: private-tristan <54422837+private-tristan@users.noreply.github.com> --- code/__DEFINES/traits.dm | 2 + code/controllers/subsystem/shuttles.dm | 16 +-- code/game/turfs/transit.dm | 114 ++++++++++++++++-- .../mob/living/carbon/human/human_damage.dm | 12 +- .../modules/mob/living/living_health_procs.dm | 2 +- code/modules/shuttle/shuttle.dm | 12 ++ code/modules/shuttle/shuttles/dropship.dm | 10 +- 7 files changed, 138 insertions(+), 30 deletions(-) diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm index 2551872d95b5..039536491f9d 100644 --- a/code/__DEFINES/traits.dm +++ b/code/__DEFINES/traits.dm @@ -466,6 +466,8 @@ GLOBAL_LIST(trait_name_map) #define XENO_WEED_TRAIT "xeno_weed" /// traits associated with actively interacted machinery #define INTERACTION_TRAIT "interaction" +/// traits associated with interacting with a dropship +#define TRAIT_SOURCE_DROPSHIP_INTERACTION "dropship_interaction" /// traits bound by stunned status effects #define STUNNED_TRAIT "stunned" /// traits bound by knocked_down status effect diff --git a/code/controllers/subsystem/shuttles.dm b/code/controllers/subsystem/shuttles.dm index 3e59744cff31..db0d449b4dd7 100644 --- a/code/controllers/subsystem/shuttles.dm +++ b/code/controllers/subsystem/shuttles.dm @@ -164,9 +164,6 @@ SUBSYSTEM_DEF(shuttle) // First, determine the size of the needed zone // Because of shuttle rotation, the "width" of the shuttle is not // always x. - var/travel_dir = M.preferred_direction - // Remember, the direction is the direction we appear to be - // coming from var/dock_angle = dir2angle(M.preferred_direction) + dir2angle(M.port_direction) + 180 var/dock_dir = angle2dir(dock_angle) @@ -185,19 +182,10 @@ SUBSYSTEM_DEF(shuttle) /* to_chat(world, "The attempted transit dock will be [transit_width] width, and \) - [transit_height] in height. The travel dir is [travel_dir]." + [transit_height] in height. The travel dir is [M.preferred_direction]." */ - var/transit_path = /turf/open/space/transit - switch(travel_dir) - if(NORTH) - transit_path = /turf/open/space/transit/north - if(SOUTH) - transit_path = /turf/open/space/transit/south - if(EAST) - transit_path = /turf/open/space/transit/east - if(WEST) - transit_path = /turf/open/space/transit/west + var/transit_path = M.get_transit_path_type() var/datum/turf_reservation/proposal = SSmapping.RequestBlockReservation(transit_width, transit_height, null, /datum/turf_reservation/transit, transit_path) diff --git a/code/game/turfs/transit.dm b/code/game/turfs/transit.dm index bae6718cfd59..dd6a8d920f6f 100644 --- a/code/game/turfs/transit.dm +++ b/code/game/turfs/transit.dm @@ -11,19 +11,117 @@ if(isobserver(crosser) || crosser.anchored) return - if(!(isitem(crosser) || isliving(crosser))) + if(!isitem(crosser) && !isliving(crosser)) return - var/turf/open/floor/floor = old_loc - if(istype(floor)) - var/fling_dir = get_dir(floor, crosser.loc) - - var/turf/near_turf = get_step(crosser.loc, get_step(crosser.loc, fling_dir)) - var/turf/projected = get_ranged_target_turf(near_turf, fling_dir, 50) + if(!istype(old_loc, /turf/open/space)) + var/turf/projected = get_ranged_target_turf(crosser.loc, dir, 10) INVOKE_ASYNC(crosser, TYPE_PROC_REF(/atom/movable, throw_atom), projected, 50, SPEED_FAST, null, TRUE) - QDEL_IN(crosser, 0.5 SECONDS) + addtimer(CALLBACK(src, PROC_REF(handle_crosser), crosser), 0.5 SECONDS) + +/turf/open/space/transit/proc/handle_crosser(atom/movable/crosser) + if(QDELETED(crosser)) + return + qdel(crosser) + +/turf/open/space/transit/dropship + var/shuttle_tag + +/turf/open/space/transit/dropship/handle_crosser(atom/movable/crosser) + if(QDELETED(crosser)) + return + if(!shuttle_tag) + return ..() + + var/obj/docking_port/mobile/marine_dropship/dropship = SSshuttle.getShuttle(shuttle_tag) + if(!istype(dropship) || dropship.mode != SHUTTLE_CALL) + return ..() + + if(dropship.destination.id != DROPSHIP_LZ1 && dropship.destination.id != DROPSHIP_LZ2) + return ..() // we're not heading towards the LZs + + // you just jumped out of a dropship heading towards the LZ, have fun living on the way down! + var/list/ground_z_levels = SSmapping.levels_by_trait(ZTRAIT_GROUND) + if(!length(ground_z_levels)) + return ..() + + var/list/area/potential_areas = shuffle(SSmapping.areas_in_z["[ground_z_levels[1]]"]) + + for(var/area/maybe_this_area in potential_areas) + if(CEILING_IS_PROTECTED(maybe_this_area.ceiling, CEILING_PROTECTION_TIER_1)) // prevents out of bounds too + continue + if(istype(maybe_this_area, /area/space)) // make sure its not space, just in case + continue + + var/turf/open/possible_turf = null + var/list/area_turfs = get_area_turfs(maybe_this_area) + for(var/i in 1 to 10) + possible_turf = pick_n_take(area_turfs) + // we're looking for an open, non-dense, and non-space turf. + if(!istype(possible_turf) || is_blocked_turf(possible_turf) || istype(possible_turf, /turf/open/space)) + continue + + if(!istype(possible_turf) || is_blocked_turf(possible_turf) || istype(possible_turf, /turf/open/space)) + continue // couldnt find one in 10 loops, check another area + + // we found a good turf, lets drop em + INVOKE_ASYNC(src, PROC_REF(handle_drop), crosser, possible_turf, dropship.name) + return + + return ..() // they couldn't be dropped, just delete them + +/turf/open/space/transit/dropship/proc/handle_drop(atom/movable/crosser, turf/target, dropship_name) + if(QDELETED(crosser)) + return + ADD_TRAIT(crosser, TRAIT_IMMOBILIZED, TRAIT_SOURCE_DROPSHIP_INTERACTION) + + crosser.pixel_z = 360 + crosser.forceMove(target) + crosser.visible_message(SPAN_WARNING("[crosser] falls out of the sky."), SPAN_HIGHDANGER("As you fall out of the [dropship_name], you plummet towards the ground.")) + animate(crosser, time = 6, pixel_z = 0, flags = ANIMATION_PARALLEL) + + REMOVE_TRAIT(crosser, TRAIT_IMMOBILIZED, TRAIT_SOURCE_DROPSHIP_INTERACTION) + if(isitem(crosser)) + var/obj/item/item = crosser + item.explosion_throw(200) // give it a bit of a kick + return + + if(!isliving(crosser)) + return // don't know how you got here, but you shouldnt be here. + var/mob/living/fallen_mob = crosser + + playsound(target, "punch", rand(20, 70), TRUE) + playsound(target, "punch", rand(20, 70), TRUE) + playsound(target, "bone_break", rand(20, 70), TRUE) + playsound(target, "bone_break", rand(20, 70), TRUE) + + fallen_mob.KnockDown(10) // 10 seconds + fallen_mob.Stun(3) // 3 seconds + + + if(ishuman(fallen_mob)) + var/mob/living/carbon/human/human = fallen_mob + human.last_damage_data = create_cause_data("falling from [dropship_name]", human) + // I'd say falling from space is pretty much like getting hit by an explosion + human.take_overall_armored_damage(300, ARMOR_BOMB, limb_damage_chance = 100) + // but just in case, you will still take a ton of damage. + human.take_overall_damage(200, used_weapon = "falling", limb_damage_chance = 100) + if(human.stat != DEAD) + human.death(human.last_damage_data) + fallen_mob.status_flags |= PERMANENTLY_DEAD + return + // take a little bit more damage otherwise + fallen_mob.take_overall_damage(400, used_weapon = "falling", limb_damage_chance = 100) + +/turf/open/space/transit/dropship/alamo + shuttle_tag = DROPSHIP_ALAMO + dir = SOUTH + +/turf/open/space/transit/dropship/normandy + shuttle_tag = DROPSHIP_NORMANDY + dir = SOUTH /turf/open/space/transit/south dir = SOUTH diff --git a/code/modules/mob/living/carbon/human/human_damage.dm b/code/modules/mob/living/carbon/human/human_damage.dm index 942c20482230..2a03b4f0abff 100644 --- a/code/modules/mob/living/carbon/human/human_damage.dm +++ b/code/modules/mob/living/carbon/human/human_damage.dm @@ -311,18 +311,18 @@ In most cases it makes more sense to use apply_damage() instead! And make sure t if(update) UpdateDamageIcon() // damage MANY limbs, in random order -/mob/living/carbon/human/take_overall_damage(brute, burn, sharp = 0, edge = 0, used_weapon = null) +/mob/living/carbon/human/take_overall_damage(brute, burn, used_weapon = null, limb_damage_chance = 80) if(status_flags & GODMODE) return //godmode - var/list/obj/limb/parts = get_damageable_limbs(80) + var/list/obj/limb/parts = get_damageable_limbs(limb_damage_chance) var/amount_of_parts = length(parts) for(var/obj/limb/L as anything in parts) - L.take_damage(brute / amount_of_parts, burn / amount_of_parts, sharp, edge, used_weapon) + L.take_damage(brute / amount_of_parts, burn / amount_of_parts, sharp = FALSE, edge = FALSE, used_weapon = used_weapon) updatehealth() UpdateDamageIcon() -// damage MANY LIMBS, in random order -/mob/living/carbon/human/proc/take_overall_armored_damage(damage, armour_type = ARMOR_MELEE, damage_type = BRUTE, limb_damage_chance = 80, penetration = 0, armour_break_pr_pen = 0, armour_break_flat = 0) +// damage MANY LIMBS, in random order, but consider armor +/mob/living/carbon/human/proc/take_overall_armored_damage(damage, armour_type = ARMOR_MELEE, damage_type = BRUTE, limb_damage_chance = 80, penetration = 0) if(status_flags & GODMODE) return //godmode var/list/obj/limb/parts = get_damageable_limbs(limb_damage_chance) @@ -330,6 +330,8 @@ In most cases it makes more sense to use apply_damage() instead! And make sure t var/armour_config = GLOB.marine_ranged if(armour_type == ARMOR_MELEE) armour_config = GLOB.marine_melee + if(armour_type == ARMOR_BOMB) + armour_config = GLOB.marine_explosive for(var/obj/limb/L as anything in parts) var/armor = getarmor(L, armour_type) var/modified_damage = armor_damage_reduction(armour_config, damage, armor, penetration, 0, 0) diff --git a/code/modules/mob/living/living_health_procs.dm b/code/modules/mob/living/living_health_procs.dm index f81baca85975..dd11eb8c7faf 100644 --- a/code/modules/mob/living/living_health_procs.dm +++ b/code/modules/mob/living/living_health_procs.dm @@ -496,7 +496,7 @@ src.updatehealth() // damage MANY limbs, in random order -/mob/living/proc/take_overall_damage(brute, burn, used_weapon = null) +/mob/living/proc/take_overall_damage(brute, burn, used_weapon = null, limb_damage_chance = 80) if(status_flags & GODMODE) return 0 //godmode apply_damage(brute, BRUTE) apply_damage(burn, BURN) diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index 85fc38bf5f1b..6f02bf00e89d 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -1004,3 +1004,15 @@ to_chat(user, SPAN_WARNING("Shuttle already in transit.")) return FALSE return TRUE + +/obj/docking_port/mobile/proc/get_transit_path_type() + . = /turf/open/space/transit + switch(preferred_direction) + if(NORTH) + return /turf/open/space/transit/north + if(SOUTH) + return /turf/open/space/transit/south + if(EAST) + return /turf/open/space/transit/east + if(WEST) + return /turf/open/space/transit/west diff --git a/code/modules/shuttle/shuttles/dropship.dm b/code/modules/shuttle/shuttles/dropship.dm index f741df301bbb..ce9ba7c623bb 100644 --- a/code/modules/shuttle/shuttles/dropship.dm +++ b/code/modules/shuttle/shuttles/dropship.dm @@ -121,12 +121,18 @@ /obj/docking_port/mobile/marine_dropship/alamo name = "Alamo" id = DROPSHIP_ALAMO - preferred_direction = SOUTH + preferred_direction = SOUTH // If you are changing this, please update the dir of the path below as well + +/obj/docking_port/mobile/marine_dropship/alamo/get_transit_path_type() + return /turf/open/space/transit/dropship/alamo /obj/docking_port/mobile/marine_dropship/normandy name = "Normandy" id = DROPSHIP_NORMANDY - preferred_direction = SOUTH + preferred_direction = SOUTH // If you are changing this, please update the dir of the path below as well + +/obj/docking_port/mobile/marine_dropship/normandy/get_transit_path_type() + return /turf/open/space/transit/dropship/normandy /obj/docking_port/mobile/marine_dropship/check() . = ..() From 7b583990b8d0be5676616726e8099e1e7b59dbf9 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Tue, 20 Feb 2024 08:54:41 +0000 Subject: [PATCH 030/148] Automatic changelog for PR #5584 [ci skip] --- html/changelogs/AutoChangeLog-pr-5584.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5584.yml diff --git a/html/changelogs/AutoChangeLog-pr-5584.yml b/html/changelogs/AutoChangeLog-pr-5584.yml new file mode 100644 index 000000000000..7d2f7b8e156c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5584.yml @@ -0,0 +1,4 @@ +author: "Contrabang" +delete-after: True +changes: + - rscadd: "Falling out of a Dropship en route to an LZ, now lets your corpse plummet to the ground instead of being deleted." \ No newline at end of file From fe0134eee0c220b5b4a896689630fa9e14d92f55 Mon Sep 17 00:00:00 2001 From: Vile Beggar Date: Tue, 20 Feb 2024 20:09:43 +0100 Subject: [PATCH 031/148] Adds holo-targetting Vulture rounds (#5719) # About the pull request Adds holo-targetting rounds for the Vulture. Their characteristics are: - They deal SIGNIFICANTLY LESS damage, down from 400 to 60. - They cannot penetrate walls nor mobs. - They do not slow down mobs that are hit. - When they hit a target, they will "mark them for death", inflicting a holo stack value of 333. This means that they will take 33% more damage from all sources. A balloon alert will be shown to all nearby mobs indicating the mark, along with the holo-target aura itself. - **They have IFF.** ![image](https://github.com/cmss13-devs/cmss13/assets/17518895/69fc22e2-316d-43b5-87fd-08e2a5e9ba2b) The bullet increases the target's max capacity for holo stacks increases by 233 (to 333 in total). Any holo-targetting rounds that hit the mob will be able utilize this cap increase. The holo stacks will completely deplete after 35-ish seconds from the initial impact. It takes 5 seconds for the stack drain to begin, with every second passing after that removing 10 stacks. Other holo-targetting rounds will not modify the rate of stack depletion, keeping it at a firm 10 stacks per second. They will, however, stop the drain for 5 seconds. ![image](https://github.com/cmss13-devs/cmss13/assets/17518895/ad85d159-344b-407a-8158-23eafbf0824a) # Explain why it's good for the game This gun is really fun for the users, encouraging a buddy system that I feel the game desperately needs more of. I will admit that being hit with 400 damage, 50 AP from 2 screens away is not engaging for the opposing side, giving them no counterplay at all. With these bullets, the Vulture can take a supporting role for the marines instead of being an off-screen death cannon. 33% is a decent damage increase, but it requires multiple marines around the target to truly take advantage of it. Compared to the payoff that a regular Vulture round gives, the lack of IFF for those bullets is understandable. However, given that you NEED friendly troops to get any use out of these rounds, I've given the rounds IFF (with Zonespace's blessing) to broaden the areas and situations where it could get used. The ammo is still limited as ever, so the sniper team will have to pick their shots. Given how weak the rounds are in comparison to the standard ones, they should rarely be able to snipe off targets on their own (in a rare circumstance that they spot a half-crit xeno, an M4RA with a 4x scope can finish them off just the same). Is it weak? Too situational? Maybe, but the weapon is very interesting mechanically and I would just like to see it in play a bit more. The weapon is still ADMIN-ONLY. This will only give the admins a less blunt variant of the Vulture if they choose to spawn in it. # Testing Photographs and Procedure
Screenshots & Videos How being hit feels: https://github.com/cmss13-devs/cmss13/assets/17518895/a576629e-7961-4421-9932-d707e12477f1 General test: https://github.com/cmss13-devs/cmss13/assets/17518895/e2fbb117-1cf9-4945-b87a-d63e68f62a10 Bonus damage testing. The M41A does a base damage of 44. A holo-stack of 333 will result in roughly 44 * 1.33 = 59 damage. ![image](https://github.com/cmss13-devs/cmss13/assets/17518895/d230fc11-34e6-468e-89c3-394696c9b3e1)
# Changelog :cl: add: The Vulture can now be loaded with holo-targetting rounds which have severely hampered ballistic performance, but mark any target that is hit, increasing their damage taken by 33% for a brief period of time. /:cl: --- code/datums/ammo/bullet/rifle.dm | 9 +++-- code/datums/ammo/bullet/sniper.dm | 22 ++++++++++++ code/datums/ammo/bullet/special_ammo.dm | 10 ++++-- code/datums/ammo/shrapnel.dm | 13 +++++-- code/datums/components/bonus_damage_stack.dm | 34 +++++++++++++----- code/modules/cm_marines/equipment/guncases.dm | 24 +++++++++++++ code/modules/projectiles/guns/boltaction.dm | 6 ++++ code/modules/projectiles/magazines/rifles.dm | 8 +++++ .../weapons/guns/ammo_by_faction/uscm.dmi | Bin 24224 -> 23780 bytes sound/weapons/gun_vulture_mark.ogg | Bin 0 -> 15100 bytes 10 files changed, 109 insertions(+), 17 deletions(-) create mode 100644 sound/weapons/gun_vulture_mark.ogg diff --git a/code/datums/ammo/bullet/rifle.dm b/code/datums/ammo/bullet/rifle.dm index ab30599eeb12..279a828ed786 100644 --- a/code/datums/ammo/bullet/rifle.dm +++ b/code/datums/ammo/bullet/rifle.dm @@ -21,11 +21,16 @@ /datum/ammo/bullet/rifle/holo_target name = "holo-targeting rifle bullet" damage = 30 + /// inflicts this many holo stacks per bullet hit var/holo_stacks = 10 + /// modifies the default cap limit of 100 by this amount + var/bonus_damage_cap_increase = 0 + /// multiplies the default drain of 5 holo stacks per second by this amount + var/stack_loss_multiplier = 1 -/datum/ammo/bullet/rifle/holo_target/on_hit_mob(mob/M, obj/projectile/P) +/datum/ammo/bullet/rifle/holo_target/on_hit_mob(mob/hit_mob, obj/projectile/bullet) . = ..() - M.AddComponent(/datum/component/bonus_damage_stack, holo_stacks, world.time) + hit_mob.AddComponent(/datum/component/bonus_damage_stack, holo_stacks, world.time, bonus_damage_cap_increase, stack_loss_multiplier) /datum/ammo/bullet/rifle/holo_target/hunting name = "holo-targeting hunting bullet" diff --git a/code/datums/ammo/bullet/sniper.dm b/code/datums/ammo/bullet/sniper.dm index a82f00631608..22371972e623 100644 --- a/code/datums/ammo/bullet/sniper.dm +++ b/code/datums/ammo/bullet/sniper.dm @@ -139,6 +139,28 @@ BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_penetrating/heavy) )) +/datum/ammo/bullet/sniper/anti_materiel/vulture/holo_target + name = "holo-targeting anti-materiel sniper bullet" + damage = 60 // it's a big bullet but its purpose is to support marines, not to kill enemies by itself + /// inflicts this many holo stacks per bullet hit + var/holo_stacks = 333 + /// modifies the default cap limit of 100 by this amount + var/bonus_damage_cap_increase = 233 + /// multiplies the default drain of 5 holo stacks per second by this amount + var/stack_loss_multiplier = 2 + +/datum/ammo/bullet/sniper/anti_materiel/vulture/holo_target/on_hit_mob(mob/hit_mob, obj/projectile/bullet) + hit_mob.AddComponent(/datum/component/bonus_damage_stack, holo_stacks, world.time, bonus_damage_cap_increase, stack_loss_multiplier) + playsound(hit_mob, 'sound/weapons/gun_vulture_mark.ogg', 40) + to_chat(hit_mob, isxeno(hit_mob) ? SPAN_XENOHIGHDANGER("It feels as if we were MARKED FOR DEATH!") : SPAN_HIGHDANGER("It feels as if you were MARKED FOR DEATH!")) + hit_mob.balloon_alert_to_viewers("marked for death!") + +// the effect should be limited to one target, with IFF to compensate how hard it will be to hit these shots +/datum/ammo/bullet/sniper/anti_materiel/vulture/holo_target/set_bullet_traits() + LAZYADD(traits_to_give, list( + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff) + )) + /datum/ammo/bullet/sniper/elite name = "supersonic sniper bullet" diff --git a/code/datums/ammo/bullet/special_ammo.dm b/code/datums/ammo/bullet/special_ammo.dm index 3d53c6b0c0d0..97c1bf5735f9 100644 --- a/code/datums/ammo/bullet/special_ammo.dm +++ b/code/datums/ammo/bullet/special_ammo.dm @@ -46,12 +46,16 @@ /datum/ammo/bullet/smartgun/holo_target //Royal marines smartgun bullet has only diff between regular ammo is this one does holostacks name = "holo-targeting smartgun bullet" damage = 30 - ///Stuff for the HRP holotargetting stacks + /// inflicts this many holo stacks per bullet hit var/holo_stacks = 15 + /// modifies the default cap limit of 100 by this amount + var/bonus_damage_cap_increase = 0 + /// multiplies the default drain of 5 holo stacks per second by this amount + var/stack_loss_multiplier = 1 -/datum/ammo/bullet/smartgun/holo_target/on_hit_mob(mob/M, obj/projectile/P) +/datum/ammo/bullet/smartgun/holo_target/on_hit_mob(mob/hit_mob, obj/projectile/bullet) . = ..() - M.AddComponent(/datum/component/bonus_damage_stack, holo_stacks, world.time) + hit_mob.AddComponent(/datum/component/bonus_damage_stack, holo_stacks, world.time, bonus_damage_cap_increase, stack_loss_multiplier) /datum/ammo/bullet/smartgun/holo_target/ap name = "armor-piercing smartgun bullet" diff --git a/code/datums/ammo/shrapnel.dm b/code/datums/ammo/shrapnel.dm index e27caa4b277d..39b0813fad25 100644 --- a/code/datums/ammo/shrapnel.dm +++ b/code/datums/ammo/shrapnel.dm @@ -43,10 +43,17 @@ shrapnel_chance = 0 shell_speed = AMMO_SPEED_TIER_3//she fast af boi penetration = ARMOR_PENETRATION_TIER_5 - -/datum/ammo/bullet/shrapnel/hornet_rounds/on_hit_mob(mob/M, obj/projectile/P) + /// inflicts this many holo stacks per bullet hit + var/holo_stacks = 10 + /// modifies the default cap limit of 100 by this amount + var/bonus_damage_cap_increase = 0 + /// multiplies the default drain of 5 holo stacks per second by this amount + var/stack_loss_multiplier = 1 + +/datum/ammo/bullet/shrapnel/hornet_rounds/on_hit_mob(mob/hit_mob, obj/projectile/bullet) . = ..() - M.AddComponent(/datum/component/bonus_damage_stack, 10, world.time) + hit_mob.AddComponent(/datum/component/bonus_damage_stack, holo_stacks, world.time, bonus_damage_cap_increase, stack_loss_multiplier) + /datum/ammo/bullet/shrapnel/incendiary name = "flaming shrapnel" diff --git a/code/datums/components/bonus_damage_stack.dm b/code/datums/components/bonus_damage_stack.dm index faf4813541b8..78da5e036ce4 100644 --- a/code/datums/components/bonus_damage_stack.dm +++ b/code/datums/components/bonus_damage_stack.dm @@ -15,15 +15,21 @@ var/bonus_damage_cap = 100 /// Last world.time that the afflicted was hit by a holo-targeting round. var/last_stack + /// extra cap limit added by more powerful bullets + var/bonus_damage_cap_increase = 0 + /// multiplies the BONUS_DAMAGE_STACK_LOSS_PER_SECOND calculation, modifying how fast we lose holo stacks + var/stack_loss_multiplier = 1 -/datum/component/bonus_damage_stack/Initialize(bonus_damage_stacks, time) +/datum/component/bonus_damage_stack/Initialize(bonus_damage_stacks, time, bonus_damage_cap_increase, stack_loss_multiplier) . = ..() src.bonus_damage_stacks = bonus_damage_stacks + src.stack_loss_multiplier = stack_loss_multiplier + src.bonus_damage_cap = initial(bonus_damage_cap) + bonus_damage_cap_increase // this way it will never increase over the intended limit if(!time) time = world.time src.last_stack = time -/datum/component/bonus_damage_stack/InheritComponent(datum/component/bonus_damage_stack/BDS, i_am_original, bonus_damage_stacks, time) +/datum/component/bonus_damage_stack/InheritComponent(datum/component/bonus_damage_stack/BDS, i_am_original, bonus_damage_stacks, time, bonus_damage_cap_increase, stack_loss_multiplier) . = ..() if(!BDS) src.bonus_damage_stacks += bonus_damage_stacks @@ -32,22 +38,32 @@ src.bonus_damage_stacks += BDS.bonus_damage_stacks src.last_stack = BDS.last_stack - src.bonus_damage_stacks = min(src.bonus_damage_stacks, bonus_damage_cap) + // if a different type of holo targetting bullet hits a mob and has a bigger bonus cap, it will get applied. + if(src.bonus_damage_cap_increase < bonus_damage_cap_increase) + src.bonus_damage_cap_increase = bonus_damage_cap_increase + src.bonus_damage_cap = initial(bonus_damage_cap) + src.bonus_damage_cap_increase + + // however, if it has a worse stack_loss_multiplier, it will get applied instead. + // this way, if a weapon is meant to have a big bonus cap but holo stacks that rapidly deplete, it will not be messed up by a weapon that a low stack_loss_multiplier. + if(src.stack_loss_multiplier < stack_loss_multiplier) + src.stack_loss_multiplier = stack_loss_multiplier + + src.bonus_damage_stacks = min(src.bonus_damage_stacks, src.bonus_damage_cap) /datum/component/bonus_damage_stack/process(delta_time) if(last_stack + 5 SECONDS < world.time) - bonus_damage_stacks = bonus_damage_stacks - BONUS_DAMAGE_STACK_LOSS_PER_SECOND * delta_time + bonus_damage_stacks = bonus_damage_stacks - BONUS_DAMAGE_STACK_LOSS_PER_SECOND * stack_loss_multiplier * delta_time if(bonus_damage_stacks <= 0) qdel(src) var/color = COLOR_BONUS_DAMAGE - var/intensity = bonus_damage_stacks / (bonus_damage_cap * 2) - color += num2text(BONUS_DAMAGE_MAX_ALPHA * intensity, 2, 16) - + var/intensity = bonus_damage_stacks / (initial(bonus_damage_cap) * 2) + // if intensity is too high of a value, the hex code will become invalid + color += num2text(BONUS_DAMAGE_MAX_ALPHA * clamp(intensity, 0, 0.5), 1, 16) if(parent) var/atom/A = parent - A.add_filter("bonus_damage_stacks", 2, list("type" = "outline", "color" = color, "size" = 1)) + A.add_filter("bonus_damage_stacks", 2, list("type" = "outline", "color" = color, "size" = 1 + clamp(intensity, 0, 1))) /datum/component/bonus_damage_stack/RegisterWithParent() START_PROCESSING(SSdcs, src) @@ -67,7 +83,7 @@ SIGNAL_HANDLER L += "Bonus Damage Taken: [bonus_damage_stacks * 0.1]%" -/datum/component/bonus_damage_stack/proc/get_bonus_damage(mob/M, list/damage_data) // 10% damage bonus at most +/datum/component/bonus_damage_stack/proc/get_bonus_damage(mob/M, list/damage_data) // 10% damage bonus in most instances SIGNAL_HANDLER damage_data["bonus_damage"] = damage_data["damage"] * (min(bonus_damage_stacks, bonus_damage_cap) / 1000) diff --git a/code/modules/cm_marines/equipment/guncases.dm b/code/modules/cm_marines/equipment/guncases.dm index 0cf097cb9b4c..22999e97fda2 100644 --- a/code/modules/cm_marines/equipment/guncases.dm +++ b/code/modules/cm_marines/equipment/guncases.dm @@ -348,6 +348,30 @@ new /obj/item/device/vulture_spotter_scope/skillless(src, WEAKREF(rifle)) new /obj/item/tool/screwdriver(src) // Spotter scope needs a screwdriver to disassemble +/obj/item/storage/box/guncase/vulture/holo_target + name = "\improper M707 holo-targetting anti-materiel rifle case" + desc = "A gun case containing the M707 \"Vulture\" anti-materiel rifle and its requisite spotting tools. This variant is pre-loaded with IFF-CAPABLE holo-targeting rounds." + +/obj/item/storage/box/guncase/vulture/holo_target/fill_preset_inventory() + var/obj/item/weapon/gun/boltaction/vulture/holo_target/rifle = new(src) + new /obj/item/ammo_magazine/rifle/boltaction/vulture/holo_target(src) + new /obj/item/device/vulture_spotter_tripod(src) + new /obj/item/device/vulture_spotter_scope(src, WEAKREF(rifle)) + new /obj/item/tool/screwdriver(src) + new /obj/item/pamphlet/trait/vulture(src) + new /obj/item/pamphlet/trait/vulture(src) + +/obj/item/storage/box/guncase/vulture/holo_target/skillless + storage_slots = 5 + +/obj/item/storage/box/guncase/vulture/holo_target/skillless/fill_preset_inventory() + var/obj/item/weapon/gun/boltaction/vulture/holo_target/skillless/rifle = new(src) + new /obj/item/ammo_magazine/rifle/boltaction/vulture/holo_target(src) + new /obj/item/device/vulture_spotter_tripod(src) + new /obj/item/device/vulture_spotter_scope/skillless(src, WEAKREF(rifle)) + new /obj/item/tool/screwdriver(src) + + /obj/item/storage/box/guncase/xm51 name = "\improper XM51 breaching scattergun case" desc = "A gun case containing the XM51 Breaching Scattergun. Comes with two spare magazines, two spare shell boxes, an optional stock and a belt to holster the weapon." diff --git a/code/modules/projectiles/guns/boltaction.dm b/code/modules/projectiles/guns/boltaction.dm index a06131f98ce0..16ccb3438e23 100644 --- a/code/modules/projectiles/guns/boltaction.dm +++ b/code/modules/projectiles/guns/boltaction.dm @@ -279,3 +279,9 @@ /obj/item/weapon/gun/boltaction/vulture/skillless bypass_trait = TRUE + +/obj/item/weapon/gun/boltaction/vulture/holo_target + current_mag = /obj/item/ammo_magazine/rifle/boltaction/vulture/holo_target + +/obj/item/weapon/gun/boltaction/vulture/holo_target/skillless + bypass_trait = TRUE diff --git a/code/modules/projectiles/magazines/rifles.dm b/code/modules/projectiles/magazines/rifles.dm index bfc411a2ea63..d12f390ccd95 100644 --- a/code/modules/projectiles/magazines/rifles.dm +++ b/code/modules/projectiles/magazines/rifles.dm @@ -457,6 +457,14 @@ max_rounds = 4 gun_type = /obj/item/weapon/gun/boltaction/vulture w_class = SIZE_MEDIUM // maybe small? This shit's >4 inches long mind you + ammo_band_icon = "+vulture_band" + ammo_band_icon_empty = "+vulture_band_e" + +/obj/item/ammo_magazine/rifle/boltaction/vulture/holo_target + name = "\improper M707 \"Vulture\" holo-target magazine (20x102mm)" + desc = "A magazine for the M707 \"Vulture\" anti-matieriel rifle. Contains up to 4 massively oversized IFF-CAPABLE holo-targeting rounds, which excel at marking heavy targets to be attacked by allied ground forces. The logistical requirements for such capabilities heavily hinder the performance and stopping power of this round." + default_ammo = /datum/ammo/bullet/sniper/anti_materiel/vulture/holo_target + ammo_band_color = AMMO_BAND_COLOR_HOLOTARGETING //=ROYAL MARINES=\\ diff --git a/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi b/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi index e177d85dc726d268ecd3793a023b10a4e23da896..8b3b5e0f1c80acbc315725bcac45cdbf7694e246 100644 GIT binary patch literal 23780 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 literal 0 HcmV?d00001 From 907cb00f353ea9c3e4bb70f5cf7f0f322668cff8 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Tue, 20 Feb 2024 19:18:34 +0000 Subject: [PATCH 032/148] Automatic changelog for PR #5719 [ci skip] --- html/changelogs/AutoChangeLog-pr-5719.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5719.yml diff --git a/html/changelogs/AutoChangeLog-pr-5719.yml b/html/changelogs/AutoChangeLog-pr-5719.yml new file mode 100644 index 000000000000..53e98cc6f85e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5719.yml @@ -0,0 +1,4 @@ +author: "VileBeggar" +delete-after: True +changes: + - rscadd: "The Vulture can now be loaded with holo-targetting rounds which have severely hampered ballistic performance, but mark any target that is hit, increasing their damage taken by 33% for a brief period of time." \ No newline at end of file From f18edfd552114b6ba2c44cbd7069ffc47e67f320 Mon Sep 17 00:00:00 2001 From: private-tristan <54422837+private-tristan@users.noreply.github.com> Date: Tue, 20 Feb 2024 14:27:25 -0500 Subject: [PATCH 033/148] Removes VAIMS backpack burn line, adds extra mag. (#5670) # About the pull request VAIMS (mil contractor medical specialist) had a redundant burn line (because surgical webbing spawns with burn line). this PR removes it and replaces it with an MAR mag to fill the empty space. # Explain why it's good for the game the burn graft is a waste of space in the backpack. As for the MAR mag I put it in so that the inventory doesn't have a random open space, i'm fine removing it if a maintainer tells me to. # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: del: VAIMS (vaipo med spec) no longer gets a redundant burn line balance: VAIMS now gets an extra MAR mag. /:cl: --- code/modules/gear_presets/contractor.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/gear_presets/contractor.dm b/code/modules/gear_presets/contractor.dm index bbea2a74339f..3d812b0f6176 100644 --- a/code/modules/gear_presets/contractor.dm +++ b/code/modules/gear_presets/contractor.dm @@ -289,10 +289,10 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/roller, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/roller/surgical, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_BACK) //Line in vest. new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/smoke, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/extended, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40, WEAR_IN_BACK) //*****************************************************************************************************/ From 7f9c6c52d4601d41bd6906db0a44bdcfb721889b Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Tue, 20 Feb 2024 19:35:28 +0000 Subject: [PATCH 034/148] Automatic changelog for PR #5670 [ci skip] --- html/changelogs/AutoChangeLog-pr-5670.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5670.yml diff --git a/html/changelogs/AutoChangeLog-pr-5670.yml b/html/changelogs/AutoChangeLog-pr-5670.yml new file mode 100644 index 000000000000..1aa82ff3f6ab --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5670.yml @@ -0,0 +1,5 @@ +author: "private-tristan" +delete-after: True +changes: + - rscdel: "VAIMS (vaipo med spec) no longer gets a redundant burn line" + - balance: "VAIMS now gets an extra MAR mag." \ No newline at end of file From b81570c4e42e372f90982270906c9d7ec14516ff Mon Sep 17 00:00:00 2001 From: private-tristan <54422837+private-tristan@users.noreply.github.com> Date: Tue, 20 Feb 2024 16:20:09 -0500 Subject: [PATCH 035/148] Forsaken/Feral Xenos can use hive status. (#5693) # About the pull request due to #5316, the hive status UI checks for a living queen, meaning that hives without living queens (including those that specifically have allow_no_queen_actions (forsaken xenos) were unable to use hive status. while making this PR I noticed that there were two ways to get hive_status and fixed it(and also carried over the we/you). don't look at the branch name. # Explain why it's good for the game I like ~~buffing~~ fixing forsaken xenos. also being able to use hive status is intended # Testing Photographs and Procedure
Screenshots Are here! Click me! forsaken: ![image](https://github.com/cmss13-devs/cmss13/assets/54422837/63d8053e-8e88-41fd-91a3-07382c3c9f64) normal hive (I changed the we/you after this was made) ![image](https://github.com/cmss13-devs/cmss13/assets/54422837/178a7c33-dfea-4418-b341-75341fbacf29) ![image](https://github.com/cmss13-devs/cmss13/assets/54422837/54c64de5-0f73-4d80-988b-f0df8dc15b1b)
# Changelog :cl: fix: Forsaken and Feral xenos can now (correctly) use hive-status spellcheck: fixed a case where we/our wouldn't be used when attempting to access hive status with no queen /:cl: --- code/datums/keybinding/xenomorph.dm | 18 +++--------------- .../living/carbon/xenomorph/hive_status_ui.dm | 2 +- .../mob/living/carbon/xenomorph/xeno_verbs.dm | 6 +++--- 3 files changed, 7 insertions(+), 19 deletions(-) diff --git a/code/datums/keybinding/xenomorph.dm b/code/datums/keybinding/xenomorph.dm index 9fa525d50002..64acd876b49f 100644 --- a/code/datums/keybinding/xenomorph.dm +++ b/code/datums/keybinding/xenomorph.dm @@ -189,21 +189,9 @@ . = ..() if(.) return - - var/mob/living/carbon/xenomorph/current_xeno = user?.mob - - if(!current_xeno?.hive) - return - - if((!current_xeno.hive.living_xeno_queen || SSmapping.configs[GROUND_MAP].map_name == MAP_WHISKEY_OUTPOST) && !current_xeno.hive.allow_no_queen_actions) //No Hive status on WO - to_chat(current_xeno, SPAN_WARNING("There is no Queen. We are alone.")) - return - - if(current_xeno.interference) - to_chat(current_xeno, SPAN_WARNING("A headhunter temporarily cut off our psychic connection!")) - return - - current_xeno.hive.hive_ui.open_hive_status(current_xeno) + var/mob/living/carbon/xenomorph/xeno = user.mob + xeno.hive_status() + return TRUE /datum/keybinding/xenomorph/hide hotkey_keys = list("Unbound") diff --git a/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm b/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm index 17514a31e502..360b4e8bbdde 100644 --- a/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm +++ b/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm @@ -137,7 +137,7 @@ return UI_INTERACTIVE // If the Queen died or is otherwise missing. - if(!assoc_hive.living_xeno_queen) + if(!assoc_hive.living_xeno_queen && !assoc_hive.allow_no_queen_actions) return UI_CLOSE /datum/hive_status_ui/ui_data(mob/user) diff --git a/code/modules/mob/living/carbon/xenomorph/xeno_verbs.dm b/code/modules/mob/living/carbon/xenomorph/xeno_verbs.dm index dd722f62df63..271b06973a6b 100644 --- a/code/modules/mob/living/carbon/xenomorph/xeno_verbs.dm +++ b/code/modules/mob/living/carbon/xenomorph/xeno_verbs.dm @@ -1,18 +1,18 @@ //// Holds Xeno verbs that don't belong anywhere else. /mob/living/carbon/xenomorph/verb/hive_status() set name = "Hive Status" - set desc = "Check the status of your current hive." + set desc = "Check the status of our current hive." set category = "Alien" if(!hive) return if((!hive.living_xeno_queen || SSmapping.configs[GROUND_MAP].map_name == MAP_WHISKEY_OUTPOST) && !hive.allow_no_queen_actions) //No Hive status on WO - to_chat(src, SPAN_WARNING("There is no Queen. You are alone.")) + to_chat(src, SPAN_WARNING("There is no Queen. We are alone.")) return if(interference) - to_chat(src, SPAN_WARNING("A headhunter temporarily cut off your psychic connection!")) + to_chat(src, SPAN_WARNING("A headhunter temporarily cut off our psychic connection!")) return hive.hive_ui.open_hive_status(src) From b6f56b5fd413f98cf6bb56384656ae9eff2bcc41 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Tue, 20 Feb 2024 21:29:04 +0000 Subject: [PATCH 036/148] Automatic changelog for PR #5693 [ci skip] --- html/changelogs/AutoChangeLog-pr-5693.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5693.yml diff --git a/html/changelogs/AutoChangeLog-pr-5693.yml b/html/changelogs/AutoChangeLog-pr-5693.yml new file mode 100644 index 000000000000..1c3ace35fec2 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5693.yml @@ -0,0 +1,5 @@ +author: "private-tristan" +delete-after: True +changes: + - bugfix: "Forsaken and Feral xenos can now (correctly) use hive-status" + - spellcheck: "fixed a case where we/our wouldn't be used when attempting to access hive status with no queen" \ No newline at end of file From f3d3d1513428784fcd6be82d5416fc3202d536e5 Mon Sep 17 00:00:00 2001 From: Staykeu <79605233+Staykeu@users.noreply.github.com> Date: Tue, 20 Feb 2024 16:23:21 -0500 Subject: [PATCH 037/148] Allows the MOU53 to be stored in the shotgun scabbard. (#5705) # About the pull request Lets you store the MOU in the shotgun scabbard. # Explain why it's good for the game Shotgun scabbard is soul. Basically no advantage given, other than the fact that you can keep a slot reserved for your MOU. # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: Stakeyng add: mou is now compatible with the shotgun scabbard /:cl: --- code/game/objects/items/storage/large_holster.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/storage/large_holster.dm b/code/game/objects/items/storage/large_holster.dm index 3f653926f8b3..09885db34fc9 100644 --- a/code/game/objects/items/storage/large_holster.dm +++ b/code/game/objects/items/storage/large_holster.dm @@ -64,6 +64,7 @@ can_hold = list( /obj/item/weapon/gun/shotgun/pump, /obj/item/weapon/gun/shotgun/combat, + /obj/item/weapon/gun/shotgun/double/mou53, ) has_gamemode_skin = TRUE From a2d7bb83123e8a8b78a6b039ddfe808923e0a62b Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Tue, 20 Feb 2024 21:42:53 +0000 Subject: [PATCH 038/148] Automatic changelog for PR #5705 [ci skip] --- html/changelogs/AutoChangeLog-pr-5705.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5705.yml diff --git a/html/changelogs/AutoChangeLog-pr-5705.yml b/html/changelogs/AutoChangeLog-pr-5705.yml new file mode 100644 index 000000000000..1e0f665dc3b3 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5705.yml @@ -0,0 +1,4 @@ +author: "Stakeyng" +delete-after: True +changes: + - rscadd: "mou is now compatible with the shotgun scabbard" \ No newline at end of file From c2ed945b28dcd8571932f3713e2014b0543df486 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Wed, 21 Feb 2024 01:07:54 +0000 Subject: [PATCH 039/148] Automatic changelog compile [ci skip] --- html/changelogs/AutoChangeLog-pr-5584.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5645.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5670.yml | 5 ----- html/changelogs/AutoChangeLog-pr-5693.yml | 5 ----- html/changelogs/AutoChangeLog-pr-5705.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5719.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5752.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5753.yml | 4 ---- html/changelogs/archive/2024-02.yml | 22 ++++++++++++++++++++++ 9 files changed, 22 insertions(+), 34 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-5584.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5645.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5670.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5693.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5705.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5719.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5752.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5753.yml diff --git a/html/changelogs/AutoChangeLog-pr-5584.yml b/html/changelogs/AutoChangeLog-pr-5584.yml deleted file mode 100644 index 7d2f7b8e156c..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5584.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Contrabang" -delete-after: True -changes: - - rscadd: "Falling out of a Dropship en route to an LZ, now lets your corpse plummet to the ground instead of being deleted." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5645.yml b/html/changelogs/AutoChangeLog-pr-5645.yml deleted file mode 100644 index b37554dbe5f0..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5645.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "hislittlecuzingames" -delete-after: True -changes: - - maptweak: "tweaked Trijent Dam to add a new choke point." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5670.yml b/html/changelogs/AutoChangeLog-pr-5670.yml deleted file mode 100644 index 1aa82ff3f6ab..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5670.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "private-tristan" -delete-after: True -changes: - - rscdel: "VAIMS (vaipo med spec) no longer gets a redundant burn line" - - balance: "VAIMS now gets an extra MAR mag." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5693.yml b/html/changelogs/AutoChangeLog-pr-5693.yml deleted file mode 100644 index 1c3ace35fec2..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5693.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "private-tristan" -delete-after: True -changes: - - bugfix: "Forsaken and Feral xenos can now (correctly) use hive-status" - - spellcheck: "fixed a case where we/our wouldn't be used when attempting to access hive status with no queen" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5705.yml b/html/changelogs/AutoChangeLog-pr-5705.yml deleted file mode 100644 index 1e0f665dc3b3..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5705.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Stakeyng" -delete-after: True -changes: - - rscadd: "mou is now compatible with the shotgun scabbard" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5719.yml b/html/changelogs/AutoChangeLog-pr-5719.yml deleted file mode 100644 index 53e98cc6f85e..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5719.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "VileBeggar" -delete-after: True -changes: - - rscadd: "The Vulture can now be loaded with holo-targetting rounds which have severely hampered ballistic performance, but mark any target that is hit, increasing their damage taken by 33% for a brief period of time." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5752.yml b/html/changelogs/AutoChangeLog-pr-5752.yml deleted file mode 100644 index 74f574d66b7c..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5752.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Drathek" -delete-after: True -changes: - - maptweak: "Fixed access for two doors on the Almayer" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5753.yml b/html/changelogs/AutoChangeLog-pr-5753.yml deleted file mode 100644 index 09fe604e5a9a..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5753.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Drathek" -delete-after: True -changes: - - balance: "Corrected vampire lurker damage values (Effectively reduction by 5 damage for most attacks)" \ No newline at end of file diff --git a/html/changelogs/archive/2024-02.yml b/html/changelogs/archive/2024-02.yml index 1feb5e858afc..35e063bd1bdc 100644 --- a/html/changelogs/archive/2024-02.yml +++ b/html/changelogs/archive/2024-02.yml @@ -247,3 +247,25 @@ against your helmet. Zonespace27: - bugfix: You can no longer remove vehicle parts from a vehicle at a distance +2024-02-21: + Contrabang: + - rscadd: Falling out of a Dropship en route to an LZ, now lets your corpse plummet + to the ground instead of being deleted. + Drathek: + - maptweak: Fixed access for two doors on the Almayer + - balance: Corrected vampire lurker damage values (Effectively reduction by 5 damage + for most attacks) + Stakeyng: + - rscadd: mou is now compatible with the shotgun scabbard + VileBeggar: + - rscadd: The Vulture can now be loaded with holo-targetting rounds which have severely + hampered ballistic performance, but mark any target that is hit, increasing + their damage taken by 33% for a brief period of time. + hislittlecuzingames: + - maptweak: tweaked Trijent Dam to add a new choke point. + private-tristan: + - rscdel: VAIMS (vaipo med spec) no longer gets a redundant burn line + - balance: VAIMS now gets an extra MAR mag. + - bugfix: Forsaken and Feral xenos can now (correctly) use hive-status + - spellcheck: fixed a case where we/our wouldn't be used when attempting to access + hive status with no queen From 2abcb7b375c87c5724a2336f832d183ebd2708c6 Mon Sep 17 00:00:00 2001 From: Kaga-404 <103199482+Kaga-404@users.noreply.github.com> Date: Tue, 20 Feb 2024 19:37:32 -0800 Subject: [PATCH 040/148] Fix Select Equipment Presets (#5758) # About the pull request This is literally a one-line fix to an apparently unnoticed bug affecting multiple loadouts, particularly certain ERTs. Explanation below. Select Equipment now spawns in an ID before equipment. # Explain why it's good for the game ID Locks check via the COMSIG_ITEM_ATTEMPTING_EQUIP signal when someone tries to equip them, and searches for an equipped ID to lock with. If there's none, it cancels the equip. /obj/item/proc/mob_can_equip() sends out that signal as part of its testing, and the usual mob equip_to_slot_or_del() proc used in most presets ends up checking the item's mob_can_equip() before equipping. IDs were generated AFTER equipment within /datum/equipment_preset/proc/load_preset() in _select_equipment.dm. This means every single item with an ID lock would be spawned in, the mob would see if it could equip them, the item would return no, cancelling the equip, and the item would be deleted. Pre-equipped Spec loadouts were the most affected, losing all of their armor and ID-locked sights. Most special ERT NVGs were affected as well, being subtypes of the Sniper Spec's NVGs, and sharing the same MOB_LOCK_ON_EQUIP flag. **If there's a reason IDs were spawned in after, this might break something, but I doubt it. Just went tracking once I noticed this bug, and found this as the most effective solution.** An alternative solution was to use the unsafe equip_to_slot() proc instead. # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: Kaga fix: Fixed a bug that broke ID-Lockable items in presets. Rejoice, PMC Snipers, pre-equipped USCM Specs, UPP Commandos, and WY Deathsquads. /:cl: --- code/modules/gear_presets/_select_equipment.dm | 2 +- code/modules/gear_presets/clf.dm | 1 - code/modules/gear_presets/cmb.dm | 1 - code/modules/gear_presets/contractor.dm | 2 -- code/modules/gear_presets/upp.dm | 3 +-- 5 files changed, 2 insertions(+), 7 deletions(-) diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 5a5ecea2d03d..92c5e5549611 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -149,9 +149,9 @@ load_skills(new_human, mob_client) //skills are set before equipment because of skill restrictions on certain clothes. load_languages(new_human, mob_client) load_age(new_human, mob_client) + load_id(new_human, mob_client) if(show_job_gear) load_gear(new_human, mob_client) - load_id(new_human, mob_client) load_status(new_human, mob_client) load_vanity(new_human, mob_client) load_traits(new_human, mob_client) diff --git a/code/modules/gear_presets/clf.dm b/code/modules/gear_presets/clf.dm index 7748f4e0c558..d9833f0cc038 100644 --- a/code/modules/gear_presets/clf.dm +++ b/code/modules/gear_presets/clf.dm @@ -746,7 +746,6 @@ new_human.set_species(SYNTH_COLONY_GEN_ONE) /datum/equipment_preset/clf/synth/load_gear(mob/living/carbon/human/new_human) - load_name(new_human) var/obj/item/clothing/under/colonist/clf/CLF = new() var/obj/item/clothing/accessory/storage/webbing/W = new() CLF.attach_accessory(new_human, W) diff --git a/code/modules/gear_presets/cmb.dm b/code/modules/gear_presets/cmb.dm index 9de9d11607c2..ae6544fa3d63 100644 --- a/code/modules/gear_presets/cmb.dm +++ b/code/modules/gear_presets/cmb.dm @@ -242,7 +242,6 @@ new_human.set_species(SYNTH_COLONY) /datum/equipment_preset/cmb/synth/load_gear(mob/living/carbon/human/new_human) - load_name(new_human) //backpack new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/security, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_BACK) diff --git a/code/modules/gear_presets/contractor.dm b/code/modules/gear_presets/contractor.dm index 3d812b0f6176..3f0cdecb9ac2 100644 --- a/code/modules/gear_presets/contractor.dm +++ b/code/modules/gear_presets/contractor.dm @@ -395,7 +395,6 @@ new_human.set_species(SYNTH_GEN_THREE) /datum/equipment_preset/contractor/duty/synth/load_gear(mob/living/carbon/human/new_human) - load_name(new_human) //back new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/smartpack/black, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator, WEAR_IN_BACK) //1 @@ -782,7 +781,6 @@ new_human.set_species(SYNTH_GEN_THREE) /datum/equipment_preset/contractor/covert/synth/load_gear(mob/living/carbon/human/new_human) - load_name(new_human) //back new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/smartpack/black, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator, WEAR_IN_BACK) //1 diff --git a/code/modules/gear_presets/upp.dm b/code/modules/gear_presets/upp.dm index 0b3b4d4ecfb5..c94d7d47843d 100644 --- a/code/modules/gear_presets/upp.dm +++ b/code/modules/gear_presets/upp.dm @@ -2599,7 +2599,7 @@ assignment = JOB_UPP_COMBAT_SYNTH rank = JOB_UPP_COMBAT_SYNTH paygrade = PAY_SHORT_SYN - idtype = /obj/item/card/id/gold + idtype = /obj/item/card/id/dogtag /datum/equipment_preset/upp/synth/load_name(mob/living/carbon/human/new_human, randomise) new_human.gender = pick(50;MALE,50;FEMALE) @@ -2638,7 +2638,6 @@ new_human.set_species(SYNTH_GEN_THREE) /datum/equipment_preset/upp/synth/load_gear(mob/living/carbon/human/new_human) - load_name(new_human) //back new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/upp, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/compact, WEAR_IN_BACK) //1 From bf2ad72e82ca6a552726c4e03be9b2cda2989fea Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Wed, 21 Feb 2024 03:46:21 +0000 Subject: [PATCH 041/148] Automatic changelog for PR #5758 [ci skip] --- html/changelogs/AutoChangeLog-pr-5758.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5758.yml diff --git a/html/changelogs/AutoChangeLog-pr-5758.yml b/html/changelogs/AutoChangeLog-pr-5758.yml new file mode 100644 index 000000000000..faa5452042bd --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5758.yml @@ -0,0 +1,4 @@ +author: "Kaga" +delete-after: True +changes: + - bugfix: "Fixed a bug that broke ID-Lockable items in presets. Rejoice, PMC Snipers, pre-equipped USCM Specs, UPP Commandos, and WY Deathsquads." \ No newline at end of file From 07345746f4aa4bde11ad95ddd9c8cb08c31646a5 Mon Sep 17 00:00:00 2001 From: BadAtThisGame <79063506+BadAtThisGame302@users.noreply.github.com> Date: Wed, 21 Feb 2024 05:38:30 +0200 Subject: [PATCH 042/148] Distress beacon response messages now have a chance of being static (#5757) # About the pull request Revives this PR. https://github.com/cmss13-devs/cmss13/pull/5393 Adds a probability of (20) for the distress beacon response message to be full of static and therefore not decipherable. # Explain why it's good for the game Part of the fun of distress beacons was not knowing who's going to show up to your door. This brings that back, to an extent. Less of 'Oh no it's hostile UPP!!' over radio as soon as distress is received. # Changelog :cl: add: Implemented a probability of playing a static-filled transmission as the distress received response. /:cl: Co-authored-by: Jeff Watchson --- code/datums/emergency_calls/emergency_call.dm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/code/datums/emergency_calls/emergency_call.dm b/code/datums/emergency_calls/emergency_call.dm index 7884d93b18bc..69e2c02a9165 100644 --- a/code/datums/emergency_calls/emergency_call.dm +++ b/code/datums/emergency_calls/emergency_call.dm @@ -28,6 +28,10 @@ var/mob_min = 3 var/dispatch_message = "An encrypted signal has been received from a nearby vessel. Stand by." //Msg to display when starting var/arrival_message = "" //Msg to display about when the shuttle arrives + /// Probability that the message will be replaced with static. - prob(chance_hidden) + var/chance_hidden = 20 + /// Message to display when distress beacon is hidden + var/static_message = "**STATIC** %$#&!- *!%^#$$ ^%%$# +_!@* &*%$## **STATIC** &%$#^*! @!*%$# ^%&$#@ *%&$#^ **STATIC** --SIGNAL LOST" var/objectives //Txt of objectives to display to joined. Todo: make this into objective notes var/objective_info //For additional info in the objectives txt var/probability = 0 @@ -305,7 +309,10 @@ candidates = list() if(arrival_message && announce_incoming) - marine_announcement(arrival_message, "Intercepted Transmission:") + if(prob(chance_hidden)) + marine_announcement(static_message, "Intercepted Transmission:") + else + marine_announcement(arrival_message, "Intercepted Transmission:") /datum/emergency_call/proc/add_candidate(mob/M) if(!M.client || (M.mind && (M.mind in candidates)) || istype(M, /mob/living/carbon/xenomorph)) From 606b41d0ca72979c30c0e3b506b32468fb57caef Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Wed, 21 Feb 2024 04:00:35 +0000 Subject: [PATCH 043/148] Automatic changelog for PR #5757 [ci skip] --- html/changelogs/AutoChangeLog-pr-5757.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5757.yml diff --git a/html/changelogs/AutoChangeLog-pr-5757.yml b/html/changelogs/AutoChangeLog-pr-5757.yml new file mode 100644 index 000000000000..d227d38fd6c8 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5757.yml @@ -0,0 +1,4 @@ +author: "BadAtThisGame302" +delete-after: True +changes: + - rscadd: "Implemented a probability of playing a static-filled transmission as the distress received response." \ No newline at end of file From 783611a711b598b63bfa45c09a7508dfc9221725 Mon Sep 17 00:00:00 2001 From: Drathek <76988376+Drulikar@users.noreply.github.com> Date: Tue, 20 Feb 2024 19:48:16 -0800 Subject: [PATCH 044/148] Reword facehugger temporary mute end message (#5762) # About the pull request This PR is a follow up to #5688 correcting the end message for facehuggers. # Explain why it's good for the game Fixes #5756 # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: Drathek spellcheck: Reworded message when a facehugger's temporary mute ends to not mention hivemind /:cl: --- code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm b/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm index d7702b9d8ee1..d98e60fe2177 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm @@ -76,7 +76,7 @@ /datum/component/temporary_mute,\ "We aren't old enough to vocalize anything yet.",\ "We aren't old enough to communicate like this yet.",\ - "We feel old enough to be able to vocalize and speak to the hivemind.",\ + "We feel old enough to be able to vocalize now.",\ 3 MINUTES,\ ) From f19daa01247ae6c8e7869fe626b9305177e1c2fe Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Wed, 21 Feb 2024 04:13:27 +0000 Subject: [PATCH 045/148] Automatic changelog for PR #5762 [ci skip] --- html/changelogs/AutoChangeLog-pr-5762.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5762.yml diff --git a/html/changelogs/AutoChangeLog-pr-5762.yml b/html/changelogs/AutoChangeLog-pr-5762.yml new file mode 100644 index 000000000000..e91fb28814b9 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5762.yml @@ -0,0 +1,4 @@ +author: "Drathek" +delete-after: True +changes: + - spellcheck: "Reworded message when a facehugger's temporary mute ends to not mention hivemind" \ No newline at end of file From e99b22a4a4a35cfebeefd3b4ab6aa5e38b5c5b49 Mon Sep 17 00:00:00 2001 From: iloveloopers <140007537+iloveloopers@users.noreply.github.com> Date: Tue, 20 Feb 2024 23:50:29 -0400 Subject: [PATCH 046/148] autolathes printing times are now significantly faster (#5735) # About the pull request autolathes printing speed is now based on the item's w_class. minimum printing time of 2 seconds and max of 5 seconds. # Explain why it's good for the game its QOL. printing a ton of small items and they all taking 5 seconds to print is a huge pain. # Testing Photographs and Procedure it works, couldn't find any issues. the sounds are fine too, no overlaping. # Changelog :cl: qol: Autolathes are now significantly faster. /:cl: --- code/game/machinery/autolathe.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index 6ccb0b5b18f7..cf7a0a6bc1a8 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -419,11 +419,16 @@ ) SStgui.update_uis(src) + //Print speed based on w_class. + var/obj/item/item = making.path + var/size = initial(item.w_class) + var/print_speed = clamp(size, 2, 5) SECONDS + //Fancy autolathe animation. icon_state = "[base_state]_n" playsound(src, 'sound/machines/print.ogg', 25) - sleep(5 SECONDS) + sleep(print_speed) playsound(src, 'sound/machines/print_off.ogg', 25) icon_state = "[base_state]" From 20b2e31b0ec9b358084f519273e7907c73336fe9 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Wed, 21 Feb 2024 04:27:33 +0000 Subject: [PATCH 047/148] Automatic changelog for PR #5735 [ci skip] --- html/changelogs/AutoChangeLog-pr-5735.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5735.yml diff --git a/html/changelogs/AutoChangeLog-pr-5735.yml b/html/changelogs/AutoChangeLog-pr-5735.yml new file mode 100644 index 000000000000..5f383f47d5fb --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5735.yml @@ -0,0 +1,4 @@ +author: "iloveloopers" +delete-after: True +changes: + - qol: "Autolathes are now significantly faster." \ No newline at end of file From bb79497940e2a3c5a503b1b1ff90a135233fc356 Mon Sep 17 00:00:00 2001 From: TheGamerdk <5618080+TheGamerdk@users.noreply.github.com> Date: Wed, 21 Feb 2024 05:17:00 +0100 Subject: [PATCH 048/148] Makes it possible to view helmet cams of SOs/XOs/COs (#5433) # About the pull request Going to rework the whole console at some point. Not proud of this code, give me some ideas # Explain why it's good for the game Helmet cams good! This can already be done by assigning the CO/XO/SO to a squad # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: add: CIC can now view helmet cameras of Command Staff. Literally 1984 /:cl: --- .../game/jobs/job/command/cic/staffofficer.dm | 13 +- .../computer/groundside_operations.dm | 202 ++++++++++-------- 2 files changed, 118 insertions(+), 97 deletions(-) diff --git a/code/game/jobs/job/command/cic/staffofficer.dm b/code/game/jobs/job/command/cic/staffofficer.dm index 94769de2158f..c73270944c3a 100644 --- a/code/game/jobs/job/command/cic/staffofficer.dm +++ b/code/game/jobs/job/command/cic/staffofficer.dm @@ -23,8 +23,17 @@ total_positions_so_far = positions return positions -/datum/job/command/bridge/generate_entry_message(mob/living/carbon/human/H) - return ..() + +/datum/job/command/bridge/generate_entry_conditions(mob/living/M, whitelist_status) + . = ..() + if(!islist(GLOB.marine_leaders[JOB_SO])) + GLOB.marine_leaders[JOB_SO] = list() + GLOB.marine_leaders[JOB_SO] += M + RegisterSignal(M, COMSIG_PARENT_QDELETING, PROC_REF(cleanup_leader_candidate)) + +/datum/job/command/bridge/proc/cleanup_leader_candidate(mob/M) + SIGNAL_HANDLER + GLOB.marine_leaders[JOB_SO] -= M AddTimelock(/datum/job/command/bridge, list( JOB_SQUAD_LEADER = 1 HOURS, diff --git a/code/game/machinery/computer/groundside_operations.dm b/code/game/machinery/computer/groundside_operations.dm index 95ea46177ca2..52ff558cde89 100644 --- a/code/game/machinery/computer/groundside_operations.dm +++ b/code/game/machinery/computer/groundside_operations.dm @@ -1,3 +1,5 @@ +#define COMMAND_SQUAD "Command" + /obj/structure/machinery/computer/groundside_operations name = "groundside operations console" desc = "This can be used for various important functions." @@ -19,6 +21,7 @@ var/lz_selection = TRUE var/has_squad_overwatch = TRUE var/faction = FACTION_MARINE + var/show_command_squad = FALSE /obj/structure/machinery/computer/groundside_operations/Initialize() if(SSticker.mode && MODE_HAS_FLAG(MODE_FACTION_CLASH)) @@ -69,8 +72,11 @@ dat += "

" if(has_squad_overwatch) - dat += "Current Squad:
[!isnull(current_squad) ? "[current_squad.name]" : "----------"]
" - if(current_squad) + if(show_command_squad) + dat += "Current Squad: Command
" + else + dat += "Current Squad: [!isnull(current_squad) ? "[current_squad.name]" : "----------"]
" + if(current_squad || show_command_squad) dat += get_overwatch_info() dat += "
Close" @@ -104,98 +110,94 @@ "} - if(!current_squad) - dat += "No Squad selected!
" + if(show_command_squad) + dat += format_list_of_marines(list(GLOB.marine_leaders[JOB_CO], GLOB.marine_leaders[JOB_XO]) + GLOB.marine_leaders[JOB_SO], list(JOB_CO, JOB_XO, JOB_SO)) + else if(current_squad) + dat += format_list_of_marines(current_squad.marines_list, list(JOB_SQUAD_LEADER, JOB_SQUAD_SPECIALIST, JOB_SQUAD_MEDIC, JOB_SQUAD_ENGI, JOB_SQUAD_SMARTGUN, JOB_SQUAD_MARINE)) else - var/leader_text = "" - var/tl_text = "" - var/spec_text = "" - var/medic_text = "" - var/engi_text = "" - var/smart_text = "" - var/marine_text = "" - var/misc_text = "" - var/living_count = 0 - var/almayer_count = 0 - var/SSD_count = 0 - var/helmetless_count = 0 - - for(var/X in current_squad.marines_list) - if(!X) - continue //just to be safe - var/mob_name = "unknown" - var/mob_state = "" - var/role = "unknown" - var/act_sl = "" - var/area_name = "???" - var/mob/living/carbon/human/H - if(ishuman(X)) - H = X - mob_name = H.real_name - var/area/A = get_area(H) - var/turf/M_turf = get_turf(H) - if(A) - area_name = sanitize_area(A.name) - - if(H.job) - role = H.job - else if(istype(H.wear_id, /obj/item/card/id)) //decapitated marine is mindless, - var/obj/item/card/id/ID = H.wear_id //we use their ID to get their role. - if(ID.rank) - role = ID.rank - - switch(H.stat) - if(CONSCIOUS) - mob_state = "Conscious" - living_count++ - if(UNCONSCIOUS) - mob_state = "Unconscious" - living_count++ - else - continue - - if(!is_ground_level(M_turf.z)) - almayer_count++ - continue + dat += "No Squad selected!
" + dat += "

" + dat += "Refresh
" + return dat - if(!istype(H.head, /obj/item/clothing/head/helmet/marine)) - helmetless_count++ +/obj/structure/machinery/computer/groundside_operations/proc/format_list_of_marines(list/mob/living/carbon/human/marine_list, list/jobs_in_order) + var/dat = "" + var/list/job_order = list() + + for(var/job in jobs_in_order) + job_order[job] = "" + + var/misc_text = "" + + var/living_count = 0 + var/almayer_count = 0 + var/SSD_count = 0 + var/helmetless_count = 0 + var/total_count = 0 + + for(var/X in marine_list) + if(!X) + continue //just to be safe + total_count++ + var/mob_name = "unknown" + var/mob_state = "" + var/role = "unknown" + var/area_name = "???" + var/mob/living/carbon/human/H + var/act_sl = "" + if(ishuman(X)) + H = X + mob_name = H.real_name + var/area/A = get_area(H) + var/turf/M_turf = get_turf(H) + if(A) + area_name = sanitize_area(A.name) + + if(H.job) + role = H.job + else if(istype(H.wear_id, /obj/item/card/id)) //decapitated marine is mindless, + var/obj/item/card/id/ID = H.wear_id //we use their ID to get their role. + if(ID.rank) + role = ID.rank + + switch(H.stat) + if(CONSCIOUS) + mob_state = "Conscious" + living_count++ + if(UNCONSCIOUS) + mob_state = "Unconscious" + living_count++ + else continue - if(!H.key || !H.client) - SSD_count++ - continue - if(H == current_squad.squad_leader && role != JOB_SQUAD_LEADER) - act_sl = "(ASL)" - - var/marine_infos = "
" - switch(role) - if(JOB_SQUAD_LEADER) - leader_text += marine_infos - if(JOB_SQUAD_TEAM_LEADER) - tl_text += marine_infos - if(JOB_SQUAD_SPECIALIST) - spec_text += marine_infos - if(JOB_SQUAD_MEDIC) - medic_text += marine_infos - if(JOB_SQUAD_ENGI) - engi_text += marine_infos - if(JOB_SQUAD_SMARTGUN) - smart_text += marine_infos - if(JOB_SQUAD_MARINE) - marine_text += marine_infos - else - misc_text += marine_infos - - dat += "Total: [current_squad.marines_list.len] Deployed
" - dat += "Marines detected: [living_count] ([helmetless_count] no helmet, [SSD_count] SSD, [almayer_count] on Almayer)
" - dat += "
Search:
" - dat += "
[mob_name][role][act_sl][mob_state][area_name]
" - dat += "" - dat += leader_text + tl_text + spec_text + medic_text + engi_text + smart_text + marine_text + misc_text - dat += "
NameRoleStateLocation
" - dat += "

" - dat += "Refresh
" + if(!is_ground_level(M_turf.z)) + almayer_count++ + continue + + if(!istype(H.head, /obj/item/clothing/head/helmet/marine)) + helmetless_count++ + continue + + if(!H.key || !H.client) + SSD_count++ + continue + if(current_squad) + if(H == current_squad.squad_leader && role != JOB_SQUAD_LEADER) + act_sl = " (ASL)" + var/marine_infos = "[mob_name][role][act_sl][mob_state][area_name]" + if(role in job_order) + job_order[role] += marine_infos + else + misc_text += marine_infos + dat += "Total: [total_count] Deployed
" + dat += "Marines detected: [living_count] ([helmetless_count] no helmet, [SSD_count] SSD, [almayer_count] on Almayer)
" + dat += "
Search:
" + dat += "" + dat += "" + for(var/job in job_order) + dat += job_order[job] + dat += misc_text + dat += "
NameRoleStateLocation
" return dat /obj/structure/machinery/computer/groundside_operations/Topic(href, href_list) @@ -272,23 +274,31 @@ for(var/datum/squad/S in GLOB.RoleAuthority.squads) if(S.active && S.faction == faction) squad_list += S.name + squad_list += COMMAND_SQUAD var/name_sel = tgui_input_list(usr, "Which squad would you like to look at?", "Pick Squad", squad_list) if(!name_sel) return - var/datum/squad/selected = get_squad_by_name(name_sel) - if(selected) - current_squad = selected + if(name_sel == COMMAND_SQUAD) + show_command_squad = TRUE + current_squad = null + else - to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("Invalid input. Aborting.")]") + show_command_squad = FALSE + + var/datum/squad/selected = get_squad_by_name(name_sel) + if(selected) + current_squad = selected + else + to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("Invalid input. Aborting.")]") if("use_cam") if(isRemoteControlling(usr)) to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("Unable to override console camera viewer. Track with camera instead. ")]") return - if(current_squad) + if(current_squad || show_command_squad) var/mob/cam_target = locate(href_list["cam_target"]) var/obj/structure/machinery/camera/new_cam = get_camera_from_target(cam_target) if(!new_cam || !new_cam.can_use()) @@ -379,3 +389,5 @@ lz_selection = FALSE has_squad_overwatch = FALSE minimap_type = MINIMAP_FLAG_PMC + +#undef COMMAND_SQUAD From f9deecb7070bc9f8c813c03ae40bcb2aefdac96f Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Wed, 21 Feb 2024 04:41:17 +0000 Subject: [PATCH 049/148] Automatic changelog for PR #5433 [ci skip] --- html/changelogs/AutoChangeLog-pr-5433.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5433.yml diff --git a/html/changelogs/AutoChangeLog-pr-5433.yml b/html/changelogs/AutoChangeLog-pr-5433.yml new file mode 100644 index 000000000000..89e4d482185e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5433.yml @@ -0,0 +1,4 @@ +author: "TheGamerdk" +delete-after: True +changes: + - rscadd: "CIC can now view helmet cameras of Command Staff. Literally 1984" \ No newline at end of file From 27ddbc5c6be86f273f7be8c77dc5cc5ba0997d40 Mon Sep 17 00:00:00 2001 From: Vicacrov <49321394+Vicacrov@users.noreply.github.com> Date: Wed, 21 Feb 2024 09:22:40 +0100 Subject: [PATCH 050/148] Makes drone castes be able to destroy special resin buildings faster; enables destruction from roundstart (#5721) # About the pull request 1. All xenomorph hives except for ferals now start with special resin structure destruction enabled for leaders AND builders (all drone castes), instead of leaders only. 2. Builders can now destroy every special resin structure with a maximum of 5 hits. # Explain why it's good for the game 1. All xenomorph hives except for ferals now start with special resin structure destruction enabled for leaders AND builders (all drone castes), instead of leaders only. **Why**: This is an old, leftover restriction from back when people actively griefed destroying stuff and the hive had no hive-wide announcements for it. Now it just devolved into "queen plz allow special deconstruction" every single round drone castes try to move things around. It is tiresome for both builders and the queen to always enable this. 2. Builders can now destroy every special resin structure with a maximum of 5 hits. **Why**: Most often drones and hivelords are sicced on destroying backline clusters/recovery nodes, since xenos have a limited amount of special structures they can build. Here are the number of hits you needed before to destroy them: | name | health | # of drone hits | # of carrier hits | # of burrower hits | # hivelord hits | | --- | --- | --- | --- | --- | --- | | hive cluster | 1200 | 16 | 15 | 15 | 16 | | recovery node | 400 | 6 | 5 | 5 | 6 | | egg morpher | 300 | 4 | 4 | 4 | 4 | It is soul-killing to hit things 15-16 times for it to get destroyed. Factor in the extra hits when one has to destroy a cluster _and_ recovery nodes and you can quickly see why this is not fun. This part of the code: ``` var/damage_to_structure = M.melee_damage_upper + XENO_DAMAGE_TIER_7 // Builders can destroy beefy things in maximum 5 hits if(isxeno_builder(M)) health -= max(initial(health) * 0.2, damage_to_structure) else health -= damage_to_structure ``` ensures that if your melee damage is higher than the 1/5th of the special structure's max health, you will deal your melee damage instead. This way, you can still destroy egg morphers in only 4 hits, as opposed to 5. # Testing Photographs and Procedure 1. Spawn in a cluster, recovery node, and an egg morpher 2. Slash them and observe the health change # Changelog :cl: tweak: Xenomorph special structure deconstruction is now enabled for leaders and builders from roundstart instead of leaders only, except for feral hives. qol: Drone castes can now destroy clusters and recovery nodes with a maximum of 5 hits (instead of 15-16 and 6, respectively). /:cl: --- code/modules/cm_aliens/XenoStructures.dm | 7 ++++++- code/modules/mob/living/carbon/xenomorph/hive_status.dm | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/code/modules/cm_aliens/XenoStructures.dm b/code/modules/cm_aliens/XenoStructures.dm index 1f27df25fc52..ab38e59002d8 100644 --- a/code/modules/cm_aliens/XenoStructures.dm +++ b/code/modules/cm_aliens/XenoStructures.dm @@ -94,7 +94,12 @@ else playsound(loc, "alien_resin_break", 25) - health -= (M.melee_damage_upper + 50) //Beef up the damage a bit + var/damage_to_structure = M.melee_damage_upper + XENO_DAMAGE_TIER_7 + // Builders can destroy beefy things in maximum 5 hits + if(isxeno_builder(M)) + health -= max(initial(health) * 0.2, damage_to_structure) + else + health -= damage_to_structure healthcheck() return XENO_ATTACK_ACTION diff --git a/code/modules/mob/living/carbon/xenomorph/hive_status.dm b/code/modules/mob/living/carbon/xenomorph/hive_status.dm index 4b6c0f4b279e..541b41127095 100644 --- a/code/modules/mob/living/carbon/xenomorph/hive_status.dm +++ b/code/modules/mob/living/carbon/xenomorph/hive_status.dm @@ -12,7 +12,7 @@ var/egg_planting_range = 15 var/slashing_allowed = XENO_SLASH_ALLOWED //This initial var allows the queen to turn on or off slashing. Slashing off means harm intent does much less damage. var/construction_allowed = NORMAL_XENO //Who can place construction nodes for special structures - var/destruction_allowed = XENO_LEADER //Who can destroy special structures + var/destruction_allowed = NORMAL_XENO //Who can destroy special structures var/unnesting_allowed = TRUE var/hive_orders = "" //What orders should the hive have var/color = null From 81e95e1b7dd6585e1b9b44382dfb07c1d2253408 Mon Sep 17 00:00:00 2001 From: LaylaMcC <32908370+LaylaMcC@users.noreply.github.com> Date: Wed, 21 Feb 2024 09:42:06 +0000 Subject: [PATCH 051/148] Food processor can be used to remove carpotoxin and acidic blood with master domestic skill (#5577) # About the pull request This PR makes it so that characters with master level domestic skill are able to remove carpotoxin and acidic blood from carp fillets and xenomeat. Xenomeat, carp fillets and recipes including those have had their levels adjusted to avoid adding additional carpotoxin/xenoblood when creating a recipe so a processed ingredient won't result in a dangerous recipe. I've tested this using characters with and without the skill with flour, potatoes, xenomeat and carp fillets to ensure that only the affected processor uses are changed, that processing works correctly and that the skill is required. # Explain why it's good for the game This would open more opportunities for the mess technician to serve the crew with recipes that rarely see the light of day due to being dangerous (while leaving some risk if an MST forgets to process the ingredients). Some marine players might also enjoy the roleplay opportunities around getting the chef to turn their fallen enemies into burgers. # Testing Photographs and Procedure
Screenshots & Videos Here is shown a character with insufficient skill unable to modify the food, before putting it in the soda fountain to show its reagents: https://github.com/cmss13-devs/cmss13/assets/32908370/8138d1c5-77a2-4f7d-92e9-9d7059fa3f05 Here is shown a character with sufficient the skill able to modify the food, before putting it in the soda fountain to show its reagents: https://github.com/cmss13-devs/cmss13/assets/32908370/93bb0c99-fccf-46ca-a786-579be203629b
# Changelog :cl: add: Increased levels of acidic blood and carpotoxin in xenomeat and carp fillets. del: Xenomeat and carp fillet-based recipes no longer add additional acidic blood or carpotoxin. qol: Master level domestic skill allows the use of the food processor to remove acidic blood and carpotoxin from xenomeat and carp fillets. fix: Turning named pieces of human meat into meatballs will retain the human's name. /:cl: --------- Co-authored-by: SabreML <57483089+SabreML@users.noreply.github.com> --- code/game/machinery/kitchen/processor.dm | 33 ++++++++++++++++++- .../items/reagent_containers/food/snacks.dm | 18 +++++----- .../reagent_containers/food/snacks/meat.dm | 9 ++++- 3 files changed, 49 insertions(+), 11 deletions(-) diff --git a/code/game/machinery/kitchen/processor.dm b/code/game/machinery/kitchen/processor.dm index a18f5db8af43..4918df4d9a5b 100644 --- a/code/game/machinery/kitchen/processor.dm +++ b/code/game/machinery/kitchen/processor.dm @@ -19,15 +19,44 @@ /datum/food_processor_process/process(loc, what) if (src.output && loc) - new src.output(loc) + var/obj/item/reagent_container/food/snacks/created_food = new src.output(loc) + var/obj/item/reagent_container/food/snacks/original_food = what + if(original_food.made_from_player) + created_food.made_from_player = original_food.made_from_player + created_food.name = (created_food.made_from_player + created_food.name) if (what) qdel(what) +/datum/food_processor_process/proc/can_use(mob/user) + // By default, anyone can do it. + return TRUE + /* objs */ + +/datum/food_processor_process/xenomeat + input = /obj/item/reagent_container/food/snacks/meat/xenomeat + output = /obj/item/reagent_container/food/snacks/meat/xenomeat/processed + +/datum/food_processor_process/xenomeat/can_use(mob/user) + if(!skillcheck(user, SKILL_DOMESTIC, SKILL_DOMESTIC_MASTER)) + to_chat(user, SPAN_DANGER("You aren't trained to remove dangerous substances from food!")) + return FALSE + return TRUE + /datum/food_processor_process/meat input = /obj/item/reagent_container/food/snacks/meat output = /obj/item/reagent_container/food/snacks/rawmeatball +/datum/food_processor_process/carpmeat + input = /obj/item/reagent_container/food/snacks/carpmeat + output = /obj/item/reagent_container/food/snacks/carpmeat/processed + +/datum/food_processor_process/carpmeat/can_use(mob/user) + if(!skillcheck(user, SKILL_DOMESTIC, SKILL_DOMESTIC_MASTER)) + to_chat(user, SPAN_DANGER("You aren't trained to remove dangerous substances from food!")) + return FALSE + return TRUE + /datum/food_processor_process/potato input = /obj/item/reagent_container/food/snacks/grown/potato output = /obj/item/reagent_container/food/snacks/rawsticks @@ -88,6 +117,8 @@ if (!P) to_chat(user, SPAN_DANGER("That probably won't blend.")) return 1 + if(!P.can_use(user)) + return 1 user.visible_message("[user] put [what] into [src].", \ "You put [what] into [src].") user.drop_held_item() diff --git a/code/game/objects/items/reagent_containers/food/snacks.dm b/code/game/objects/items/reagent_containers/food/snacks.dm index 3ae57723668f..112a8e40e85b 100644 --- a/code/game/objects/items/reagent_containers/food/snacks.dm +++ b/code/game/objects/items/reagent_containers/food/snacks.dm @@ -641,9 +641,17 @@ /obj/item/reagent_container/food/snacks/carpmeat/Initialize() . = ..() reagents.add_reagent("fish", 3) - reagents.add_reagent("carpotoxin", 3) + reagents.add_reagent("carpotoxin", 6) src.bitesize = 6 +/obj/item/reagent_container/food/snacks/carpmeat/processed + name = "processed carp fillet" + desc = "A fillet of spess carp meat. This one has been processed to remove carpotoxin." + +/obj/item/reagent_container/food/snacks/carpmeat/processed/Initialize() + . = ..() + reagents.remove_reagent("carpotoxin", 6) + /obj/item/reagent_container/food/snacks/fishfingers name = "Fish Fingers" desc = "A finger of fish." @@ -653,7 +661,6 @@ /obj/item/reagent_container/food/snacks/fishfingers/Initialize() . = ..() reagents.add_reagent("fish", 4) - reagents.add_reagent("carpotoxin", 3) bitesize = 3 /obj/item/reagent_container/food/snacks/hugemushroomslice @@ -802,7 +809,6 @@ . = ..() reagents.add_reagent("bread", 3) reagents.add_reagent("fish", 3) - reagents.add_reagent("carpotoxin", 3) bitesize = 3 /obj/item/reagent_container/food/snacks/tofuburger @@ -850,7 +856,6 @@ . = ..() reagents.add_reagent("bread", 3) reagents.add_reagent("meatprotein", 3) - reagents.add_reagent("xenoblood", 3) bitesize = 3 /obj/item/reagent_container/food/snacks/clownburger @@ -1070,7 +1075,6 @@ . = ..() reagents.add_reagent("bread", 4) reagents.add_reagent("meatprotein", 2) - reagents.add_reagent("xenoblood", 4) bitesize = 2 /obj/item/reagent_container/food/snacks/wingfangchu @@ -1084,7 +1088,6 @@ . = ..() reagents.add_reagent("soysauce", 4) reagents.add_reagent("meatprotein", 4) - reagents.add_reagent("xenoblood", 4) bitesize = 2 /obj/item/reagent_container/food/snacks/human/kabob @@ -1133,7 +1136,6 @@ /obj/item/reagent_container/food/snacks/cubancarp/Initialize() . = ..() reagents.add_reagent("fish", 6) - reagents.add_reagent("carpotoxin", 3) reagents.add_reagent("hotsauce", 3) bitesize = 3 @@ -1690,7 +1692,6 @@ /obj/item/reagent_container/food/snacks/fishandchips/Initialize() . = ..() reagents.add_reagent("fish", 6) - reagents.add_reagent("carpotoxin", 3) bitesize = 3 /obj/item/reagent_container/food/snacks/sandwich @@ -2172,7 +2173,6 @@ reagents.add_reagent("bread", 10) reagents.add_reagent("meatprotein", 10) reagents.add_reagent("cheese", 10) - reagents.add_reagent("xenoblood", 10) bitesize = 2 /obj/item/reagent_container/food/snacks/xenomeatbreadslice diff --git a/code/game/objects/items/reagent_containers/food/snacks/meat.dm b/code/game/objects/items/reagent_containers/food/snacks/meat.dm index f459d1b169ae..f68f488f268d 100644 --- a/code/game/objects/items/reagent_containers/food/snacks/meat.dm +++ b/code/game/objects/items/reagent_containers/food/snacks/meat.dm @@ -57,9 +57,16 @@ /obj/item/reagent_container/food/snacks/meat/xenomeat/Initialize() . = ..() - reagents.add_reagent("xenoblood", 3) + reagents.add_reagent("xenoblood", 6) src.bitesize = 6 +/obj/item/reagent_container/food/snacks/meat/xenomeat/processed + desc = "A slab of acrid smelling meat. This one has been processed to remove acid." + +/obj/item/reagent_container/food/snacks/meat/xenomeat/processed/Initialize() + . = ..() + reagents.remove_reagent("xenoblood", 6) + //fishable atoms meat // todo: rewrite this into a procgen'ed item when gutting fish? May be incompatible with recipe code if done that way and not hardcoded. /obj/item/reagent_container/food/snacks/meat/fish From 87f7b4bbe9ffa882df5292b77353614b2b06e01f Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Wed, 21 Feb 2024 09:51:02 +0000 Subject: [PATCH 052/148] Automatic changelog for PR #5577 [ci skip] --- html/changelogs/AutoChangeLog-pr-5577.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5577.yml diff --git a/html/changelogs/AutoChangeLog-pr-5577.yml b/html/changelogs/AutoChangeLog-pr-5577.yml new file mode 100644 index 000000000000..ea5029462ec5 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5577.yml @@ -0,0 +1,7 @@ +author: "LaylaMcC" +delete-after: True +changes: + - rscadd: "Increased levels of acidic blood and carpotoxin in xenomeat and carp fillets." + - rscdel: "Xenomeat and carp fillet-based recipes no longer add additional acidic blood or carpotoxin." + - qol: "Master level domestic skill allows the use of the food processor to remove acidic blood and carpotoxin from xenomeat and carp fillets." + - bugfix: "Turning named pieces of human meat into meatballs will retain the human's name." \ No newline at end of file From 8caa8b9831be0c89848f8d19146496178826301c Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Wed, 21 Feb 2024 10:11:10 +0000 Subject: [PATCH 053/148] Makes observers able to see the UI of Xeno players (and also action buttons) (#5751) # About the pull request Makes auto-observing work for xenomorphs *and* humans by moving it to `/carbon`, and also makes it show the target's action buttons. I'm pretty confident that this all works correctly, but I would still recommend testmerging it anyway. It's ~~probable~~possible that I missed something somewhere and an observer could get stuck being unable to click anything, or something like that. # Explain why it's good for the game This makes auto-observing a bit more consistent, more interesting for observers, and could actually help newer players to learn how to play some castes. (Which abilities to use and when, where to target, etc.) # Testing Photographs and Procedure
Screenshots & Videos https://github.com/cmss13-devs/cmss13/assets/57483089/54fbb8c6-f9fa-444b-b80c-228b4e6e3480
# Changelog :cl: add: Added 'observe' functionality to Xenomorphs, allowing observers to view the target's UI. add: Made observing a player also show their action buttons. /:cl: --- code/_onclick/hud/screen_objects.dm | 10 ++- code/modules/mob/dead/observer/observer.dm | 78 +++++++------------ code/modules/mob/living/carbon/carbon.dm | 19 +++++ code/modules/mob/living/carbon/human/human.dm | 23 ++++++ strings/metatips.txt | 1 + 5 files changed, 77 insertions(+), 54 deletions(-) diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm index 1eb555fceaf7..ed30ddaaec96 100644 --- a/code/_onclick/hud/screen_objects.dm +++ b/code/_onclick/hud/screen_objects.dm @@ -59,9 +59,11 @@ /atom/movable/screen/action_button/attack_ghost(mob/dead/observer/user) return -/atom/movable/screen/action_button/clicked(mob/user) +/atom/movable/screen/action_button/clicked(mob/user, list/mods) if(!user || !source_action) return TRUE + if(source_action.owner != user) + return TRUE if(source_action.can_use_action()) source_action.action_activate() @@ -97,7 +99,7 @@ icon_state = "hide" var/hidden = 0 -/atom/movable/screen/action_button/hide_toggle/clicked(mob/user, mods) +/atom/movable/screen/action_button/hide_toggle/clicked(mob/user, list/mods) user.hud_used.action_buttons_hidden = !user.hud_used.action_buttons_hidden hidden = user.hud_used.action_buttons_hidden if(hidden) @@ -107,7 +109,7 @@ name = "Hide Buttons" icon_state = "hide" user.update_action_buttons() - return 1 + return TRUE /atom/movable/screen/action_button/ghost/minimap/get_button_screen_loc(button_number) return "SOUTH:6,CENTER+1:24" @@ -211,7 +213,7 @@ update_icon(user) return 1 -/atom/movable/screen/clicked(mob/user) +/atom/movable/screen/clicked(mob/user, list/mods) if(!user) return TRUE diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index ae86518a640f..ba84f1cca76d 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -188,37 +188,38 @@ clean_observe_target() /// When the observer target gets a screen, our observer gets a screen minus some game screens we don't want the observer to touch -/mob/dead/observer/proc/observe_target_screen_add(observe_target_mob_client, add_to_screen) +/mob/dead/observer/proc/observe_target_screen_add(observe_target_mob_client, screen_add) SIGNAL_HANDLER - if(!client) - return - - if(istype(add_to_screen, /atom/movable/screen/action_button)) - return - - if(istype(add_to_screen, /atom/movable/screen/fullscreen)) - return + var/static/list/excluded_types = typecacheof(list( + /atom/movable/screen/fullscreen, + /atom/movable/screen/click_catcher, + /atom/movable/screen/escape_menu, + /atom/movable/screen/buildmode, + /obj/effect/detector_blip, + )) - if(istype(add_to_screen, /atom/movable/screen/click_catcher)) + if(!client) return - if(istype(add_to_screen, /atom/movable/screen/escape_menu)) - return + // `screen_add` can sometimes be a list, so it's safest to just handle everything as one. + var/list/stuff_to_add = (islist(screen_add) ? screen_add : list(screen_add)) - if(istype(add_to_screen, /obj/effect/detector_blip)) - return + for(var/item in stuff_to_add) + // Ignore anything that's in `excluded_types`. + if(is_type_in_typecache(item, excluded_types)) + continue - client.add_to_screen(add_to_screen) + client.add_to_screen(screen_add) /// When the observer target loses a screen, our observer loses it as well -/mob/dead/observer/proc/observe_target_screen_remove(observe_target_mob_client, remove_from_screen) +/mob/dead/observer/proc/observe_target_screen_remove(observe_target_mob_client, screen_remove) SIGNAL_HANDLER if(!client) return - client.remove_from_screen(remove_from_screen) + client.remove_from_screen(screen_remove) /// When the observe target ghosts our observer disconnect from their screen updates /mob/dead/observer/proc/observe_target_ghosting(mob/observer_target_mob) @@ -256,48 +257,25 @@ ManualFollow(target) reset_perspective() - if(!ishuman(target) || !client.prefs?.auto_observe) + if(!iscarbon(target) || !client.prefs?.auto_observe) return - var/mob/living/carbon/human/human_target = target - - client.eye = human_target - observe_target_mob = human_target - RegisterSignal(observe_target_mob, COMSIG_PARENT_QDELETING, PROC_REF(clean_observe_target)) - RegisterSignal(src, COMSIG_MOVABLE_MOVED, PROC_REF(observer_move_react)) - - if(!human_target.hud_used) + var/mob/living/carbon/carbon_target = target + if(!carbon_target.hud_used) return client.clear_screen() - LAZYINITLIST(human_target.observers) - human_target.observers |= src - human_target.hud_used.show_hud(human_target.hud_used.hud_version, src) - - var/list/target_contents = human_target.get_contents() - - //Handles any currently open storage containers the target is looking in when we observe - for(var/obj/item/storage/checked_storage in target_contents) - if(!(human_target in checked_storage.content_watchers)) - continue - - client.add_to_screen(checked_storage.closer) - client.add_to_screen(checked_storage.contents) - - if(checked_storage.storage_slots) - client.add_to_screen(checked_storage.boxes) - else - client.add_to_screen(checked_storage.storage_start) - client.add_to_screen(checked_storage.storage_continue) - client.add_to_screen(checked_storage.storage_end) - - break + client.eye = carbon_target + observe_target_mob = carbon_target + carbon_target.auto_observed(src) + RegisterSignal(src, COMSIG_MOVABLE_MOVED, PROC_REF(observer_move_react)) + RegisterSignal(observe_target_mob, COMSIG_PARENT_QDELETING, PROC_REF(clean_observe_target)) RegisterSignal(observe_target_mob, COMSIG_MOB_GHOSTIZE, PROC_REF(observe_target_ghosting)) RegisterSignal(observe_target_mob, COMSIG_MOB_NEW_MIND, PROC_REF(observe_target_new_mind)) RegisterSignal(observe_target_mob, COMSIG_MOB_LOGIN, PROC_REF(observe_target_login)) - if(human_target.client) - observe_target_client = human_target.client + if(observe_target_mob.client) + observe_target_client = observe_target_mob.client RegisterSignal(observe_target_client, COMSIG_CLIENT_SCREEN_ADD, PROC_REF(observe_target_screen_add)) RegisterSignal(observe_target_client, COMSIG_CLIENT_SCREEN_REMOVE, PROC_REF(observe_target_screen_remove)) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index a5ef1231a140..c56ccafc85ab 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -416,6 +416,25 @@
"} show_browser(user, dat, name, "mob[name]") +/** + * Called by [/mob/dead/observer/proc/do_observe] when a carbon mob is observed by a ghost with [/datum/preferences/var/auto_observe] enabled. + * + * Any HUD changes past this point are handled by [/mob/dead/observer/proc/observe_target_screen_add] + * and [/mob/dead/observer/proc/observe_target_screen_remove]. + * + * Override on subtype mobs if they have any extra HUD elements/behaviour. + */ +/mob/living/carbon/proc/auto_observed(mob/dead/observer/observer) + SHOULD_CALL_PARENT(TRUE) + + LAZYINITLIST(observers) + observers |= observer + hud_used.show_hud(hud_used.hud_version, observer) + + for(var/datum/action/action as anything in actions) + // Add the action's button (not the action itself) to the observer's screen. + observer.client.add_to_screen(action.button) + //generates realistic-ish pulse output based on preset levels /mob/living/carbon/proc/get_pulse(method) //method 0 is for hands, 1 is for machines, more accurate var/temp = 0 //see setup.dm:694 diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 4c62361ec52e..3ebd199b08d9 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -311,6 +311,29 @@
"} show_browser(user, dat, name, "mob[name]") +/** + * Handles any storage containers that the human is looking inside when auto-observed. + */ +/mob/living/carbon/human/auto_observed(mob/dead/observer/observer) + . = ..() + + // If `src` doesn't have an inventory open. + if(!s_active) + return + + // Add the storage interface to `observer`'s screen. + observer.client.add_to_screen(s_active.closer) + observer.client.add_to_screen(s_active.contents) + + // If the storage has a set number of item slots. + if(s_active.storage_slots) + observer.client.add_to_screen(s_active.boxes) + // If the storage instead has a maximum combined item 'weight'. + else + observer.client.add_to_screen(s_active.storage_start) + observer.client.add_to_screen(s_active.storage_continue) + observer.client.add_to_screen(s_active.storage_end) + // called when something steps onto a human // this handles mulebots and vehicles /mob/living/carbon/human/Crossed(atom/movable/AM) diff --git a/strings/metatips.txt b/strings/metatips.txt index a28c90239593..00bb827de69f 100644 --- a/strings/metatips.txt +++ b/strings/metatips.txt @@ -12,6 +12,7 @@ As a mentor, you can become the imaginary friend of a new player to teach them! You shouldn't ignore what your allies are up to. Sometimes they can be organizing a flank in hivemind/radio, sometimes they can be walking up behind you with a slug-loaded shotgun. Either way, it pays to be alert to what they're doing, as much to as what the enemies are. The Wiki (https://cm-ss13.com/wiki) is a very useful repository of information about the game, such as weapons, equipment, xenomorph castes and their strains. It may not be fully up to date much of the time, but the basics are usually accurate. As an observer, you may see how much remaining hijack time is left in the status panel. +As an observer, you can quickly follow someone by ctrl-clicking on their sprite. You can always AdminHelp with the F1 key to question a member of staff regarding rules or game bugs. As ghost you are given extra tools for spectating the round: you can jump and follow specific players, get notifications about CAS and OB strikes, can see all health bars, and such. You can press ESC key to bring up the game pause menu. It allows you change settings, AdminHelp and MentorHelp, and even access the Web Maps of game by clicking at top right. From 1112b02952e866dcc5504547493b31e7dc3fccea Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Wed, 21 Feb 2024 10:25:16 +0000 Subject: [PATCH 054/148] Automatic changelog for PR #5751 [ci skip] --- html/changelogs/AutoChangeLog-pr-5751.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5751.yml diff --git a/html/changelogs/AutoChangeLog-pr-5751.yml b/html/changelogs/AutoChangeLog-pr-5751.yml new file mode 100644 index 000000000000..a2f845c0527e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5751.yml @@ -0,0 +1,5 @@ +author: "SabreML" +delete-after: True +changes: + - rscadd: "Added 'observe' functionality to Xenomorphs, allowing observers to view the target's UI." + - rscadd: "Made observing a player also show their action buttons." \ No newline at end of file From fb5541702d38d1afd57d29b67c41842711198b33 Mon Sep 17 00:00:00 2001 From: Drathek <76988376+Drulikar@users.noreply.github.com> Date: Wed, 21 Feb 2024 02:37:13 -0800 Subject: [PATCH 055/148] Fix broken admin medals panel (#5764) # About the pull request This PR is a follow up to #5493 fixing the Medals Panel. Some reason Fragment is busted if you don't use a key? # Explain why it's good for the game Fixes ![image](https://github.com/cmss13-devs/cmss13/assets/76988376/c811b7ef-c9b5-45e3-b95b-bad416e8ab7a) # Testing Photographs and Procedure
Screenshots & Videos ![image](https://github.com/cmss13-devs/cmss13/assets/76988376/41a05979-eda5-4a1f-ae7d-1f8ddaf50129)
# Changelog :cl: Drathek ui: Fix broken admin Medals Panel /:cl: fixes #5768 --- tgui/packages/tgui/interfaces/MedalsPanel.jsx | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/tgui/packages/tgui/interfaces/MedalsPanel.jsx b/tgui/packages/tgui/interfaces/MedalsPanel.jsx index 515dba979c1a..24d6467c9b6f 100644 --- a/tgui/packages/tgui/interfaces/MedalsPanel.jsx +++ b/tgui/packages/tgui/interfaces/MedalsPanel.jsx @@ -1,17 +1,15 @@ import { useBackend, useLocalState } from '../backend'; -import { Tabs, Section, Button, Fragment, Stack, Flex } from '../components'; +import { Tabs, Section, Button, Stack, Flex } from '../components'; import { Window } from '../layouts'; const PAGES = [ { title: 'USCM', - component: () => MedalsPage, color: 'blue', icon: 'medal', }, { title: 'Hive', - component: () => MedalsPage, color: 'purple', icon: 'star', }, @@ -23,8 +21,6 @@ export const MedalsPanel = (props) => { const [pageIndex, setPageIndex] = useLocalState('pageIndex', 1); - const PageComponent = PAGES[pageIndex].component(); - return ( { - {
+ <>
); }; From 5045c706d57c9052691d69333b23f7ea3188409b Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Wed, 21 Feb 2024 10:57:45 +0000 Subject: [PATCH 056/148] Automatic changelog for PR #5764 [ci skip] --- html/changelogs/AutoChangeLog-pr-5764.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5764.yml diff --git a/html/changelogs/AutoChangeLog-pr-5764.yml b/html/changelogs/AutoChangeLog-pr-5764.yml new file mode 100644 index 000000000000..1239985de3b2 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5764.yml @@ -0,0 +1,4 @@ +author: "Drathek" +delete-after: True +changes: + - ui: "Fix broken admin Medals Panel" \ No newline at end of file From 8b99bc27b2657b4b193a5196efb0caf1fb37bd9d Mon Sep 17 00:00:00 2001 From: Julian56 <117036822+Huffie56@users.noreply.github.com> Date: Wed, 21 Feb 2024 14:05:34 +0100 Subject: [PATCH 057/148] refactor barricades files to hopfully have a more constant interaction when trying to fix them with welder. (#5609) # About the pull request fixes: https://github.com/cmss13-devs/cmss13/issues/5229 1-replace a bunch of single letter variable and in the same movement standardize it for all the parent/child object... 2-create a proc that is a group of check to see if you can start fixing a barricade with a welder. 3-implement this proc on metal,plasteel and deployable to have all the check be the same as we want them to all react the same way... # Explain why it's good for the game # Testing Photographs and Procedure i tested welding different different cades at the same time seem to work i had some weirdness but it's working.
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: refactor: refactored files with the aim of making fixing barricade with a welder more constant. fix: being unable to repair more than one metal barricade at the time. /:cl: --------- Co-authored-by: Julien Co-authored-by: Birdtalon --- .../objects/structures/barricade/barricade.dm | 43 +++++++++++++--- .../structures/barricade/deployable.dm | 14 ++---- .../objects/structures/barricade/handrail.dm | 18 +++---- .../objects/structures/barricade/metal.dm | 22 +++------ .../objects/structures/barricade/plasteel.dm | 49 ++++++++----------- 5 files changed, 77 insertions(+), 69 deletions(-) diff --git a/code/game/objects/structures/barricade/barricade.dm b/code/game/objects/structures/barricade/barricade.dm index 0a37e4bcec59..37975d4a8960 100644 --- a/code/game/objects/structures/barricade/barricade.dm +++ b/code/game/objects/structures/barricade/barricade.dm @@ -5,21 +5,28 @@ climbable = TRUE anchored = TRUE density = TRUE - throwpass = TRUE //You can throw objects over this, despite its density. + /// You can throw objects over this, despite its density. + throwpass = TRUE layer = BELOW_OBJ_LAYER flags_atom = ON_BORDER - var/stack_type //The type of stack the barricade dropped when disassembled if any. - var/stack_amount = 5 //The amount of stack dropped when disassembled at full health - var/destroyed_stack_amount //to specify a non-zero amount of stack to drop when destroyed + /// The type of stack the barricade dropped when disassembled if any. + var/stack_type + /// The amount of stack dropped when disassembled at full health + var/stack_amount = 5 + /// to specify a non-zero amount of stack to drop when destroyed + var/destroyed_stack_amount health = 100 //Pretty tough. Changes sprites at 300 and 150 - var/maxhealth = 100 //Basic code functions + var/maxhealth = 100 /// Used for calculating some stuff related to maxhealth as it constantly changes due to e.g. barbed wire. set to 100 to avoid possible divisions by zero var/starting_maxhealth = 100 - var/crusher_resistant = TRUE //Whether a crusher can ram through it. - var/force_level_absorption = 5 //How much force an item needs to even damage it at all. + /// Whether a crusher can ram through it. + var/crusher_resistant = TRUE + /// How much force an item needs to even damage it at all. + var/force_level_absorption = 5 var/barricade_hitsound var/barricade_type = "barricade" //"metal", "plasteel", etc. - var/wire_icon = 'icons/obj/structures/barricades.dmi' //! Icon file used for the wiring + /// ! Icon file used for the wiring + var/wire_icon = 'icons/obj/structures/barricades.dmi' var/can_change_dmg_state = TRUE var/damage_state = BARRICADE_DMG_NONE var/closed = FALSE @@ -35,6 +42,8 @@ var/burn_flame_multiplier = 1 var/repair_materials = list() var/metallic = TRUE + /// Lower limit of damage beyond which the barricade cannot be fixed by welder. Compared to damage_state. If null it can be repaired at any damage_state. + var/welder_lower_damage_limit = null /obj/structure/barricade/Initialize(mapload, mob/user) . = ..() @@ -466,3 +475,21 @@ nailgun.in_chamber = null nailgun.load_into_chamber() return TRUE + +// This proc is to check a bunch of condition to cancel the action that a welder user is trying to do while giving +// a explanation on why... + +/obj/structure/barricade/proc/attackby_welder(obj/item/item, mob/user) + if(!HAS_TRAIT(item, TRAIT_TOOL_BLOWTORCH)) + to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) + return FALSE + + if(health == maxhealth) + to_chat(user, SPAN_WARNING("[src] doesn't need repairs.")) + return FALSE + + if(!(isnull(damage_state)) && !(isnull(welder_lower_damage_limit)) && damage_state >= welder_lower_damage_limit) + to_chat(user, SPAN_WARNING("[src] has sustained too much structural damage to be repaired.")) + return FALSE + + return TRUE diff --git a/code/game/objects/structures/barricade/deployable.dm b/code/game/objects/structures/barricade/deployable.dm index 0d5275f98a3d..3de5ba1928a2 100644 --- a/code/game/objects/structures/barricade/deployable.dm +++ b/code/game/objects/structures/barricade/deployable.dm @@ -26,17 +26,11 @@ /obj/structure/barricade/deployable/attackby(obj/item/item, mob/user) if(iswelder(item)) - if(!HAS_TRAIT(item, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) - return - if(user.action_busy) - return - var/obj/item/tool/weldingtool/welder = item - if(health == maxhealth) - to_chat(user, SPAN_WARNING("[src] doesn't need repairs.")) - return + if(!attackby_welder(item, user)) + return FALSE + - weld_cade(welder, user) + weld_cade(item, user) return else if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) diff --git a/code/game/objects/structures/barricade/handrail.dm b/code/game/objects/structures/barricade/handrail.dm index ae166dbbf985..1d641479c3d9 100644 --- a/code/game/objects/structures/barricade/handrail.dm +++ b/code/game/objects/structures/barricade/handrail.dm @@ -67,7 +67,7 @@ reinforced = !reinforced update_icon() -/obj/structure/barricade/handrail/attackby(obj/item/W, mob/user) +/obj/structure/barricade/handrail/attackby(obj/item/item, mob/user) for(var/obj/effect/xenomorph/acid/A in src.loc) if(A.acid_t == src) to_chat(user, "You can't get near that, it's melting!") @@ -75,7 +75,7 @@ switch(build_state) if(BARRICADE_BSTATE_SECURED) //Non-reinforced. Wrench to unsecure. Screwdriver to disassemble into metal. 1 metal to reinforce. - if(HAS_TRAIT(W, TRAIT_TOOL_WRENCH)) // Make unsecure + if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) // Make unsecure if(user.action_busy) return if(!skillcheck(user, SKILL_CONSTRUCTION, SKILL_CONSTRUCTION_TRAINED)) @@ -89,7 +89,7 @@ build_state = BARRICADE_BSTATE_UNSECURED update_icon() return - if(istype(W, /obj/item/stack/sheet/metal)) // Start reinforcing + if(istype(item, /obj/item/stack/sheet/metal)) // Start reinforcing if(!can_be_reinforced) return if(user.action_busy) @@ -97,7 +97,7 @@ if(!skillcheck(user, SKILL_CONSTRUCTION, SKILL_CONSTRUCTION_TRAINED)) to_chat(user, SPAN_WARNING("You are not trained to reinforce [src]...")) return - var/obj/item/stack/sheet/metal/M = W + var/obj/item/stack/sheet/metal/M = item playsound(src.loc, 'sound/items/Screwdriver2.ogg', 25, 1) if(M.amount >= 1 && do_after(user, 30, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) //Shouldnt be possible, but doesnt hurt to check if(!M.use(1)) @@ -109,7 +109,7 @@ return if(BARRICADE_BSTATE_UNSECURED) - if(HAS_TRAIT(W, TRAIT_TOOL_WRENCH)) // Secure again + if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) // Secure again if(user.action_busy) return if(!skillcheck(user, SKILL_CONSTRUCTION, SKILL_CONSTRUCTION_TRAINED)) @@ -123,7 +123,7 @@ build_state = BARRICADE_BSTATE_SECURED update_icon() return - if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER)) // Disassemble into metal + if(HAS_TRAIT(item, TRAIT_TOOL_SCREWDRIVER)) // Disassemble into metal if(user.action_busy) return if(!skillcheck(user, SKILL_CONSTRUCTION, SKILL_CONSTRUCTION_TRAINED)) @@ -141,7 +141,7 @@ if(BARRICADE_BSTATE_FORTIFIED) if(reinforced) - if(HAS_TRAIT(W, TRAIT_TOOL_CROWBAR)) // Un-reinforce + if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) // Un-reinforce if(user.action_busy) return if(!skillcheck(user, SKILL_CONSTRUCTION, SKILL_CONSTRUCTION_TRAINED)) @@ -155,8 +155,8 @@ reinforce() return else - if(iswelder(W)) // Finish reinforcing - if(!HAS_TRAIT(W, TRAIT_TOOL_BLOWTORCH)) + if(iswelder(item)) // Finish reinforcing + if(!HAS_TRAIT(item, TRAIT_TOOL_BLOWTORCH)) to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) return if(user.action_busy) diff --git a/code/game/objects/structures/barricade/metal.dm b/code/game/objects/structures/barricade/metal.dm index 4f250eed50e9..59f4ad314878 100644 --- a/code/game/objects/structures/barricade/metal.dm +++ b/code/game/objects/structures/barricade/metal.dm @@ -19,6 +19,8 @@ var/build_state = BARRICADE_BSTATE_SECURED //Look at __game.dm for barricade defines var/upgrade = null + welder_lower_damage_limit = BARRICADE_DMG_HEAVY + /obj/structure/barricade/metal/update_icon() . = ..() if(dir > 2) @@ -44,24 +46,16 @@ /obj/structure/barricade/metal/attackby(obj/item/item, mob/user) if(iswelder(item)) - if(!HAS_TRAIT(item, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) - return - if(user.action_busy) - return + if(!attackby_welder(item, user)) + return FALSE + + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You're not trained to repair [src]...")) - return - var/obj/item/tool/weldingtool/welder = item - if(damage_state == BARRICADE_DMG_HEAVY) - to_chat(user, SPAN_WARNING("[src] has sustained too much structural damage to be repaired.")) - return + return FALSE - if(health == maxhealth) - to_chat(user, SPAN_WARNING("[src] doesn't need repairs.")) - return + weld_cade(item, user) - weld_cade(welder, user) return if(try_nailgun_usage(item, user)) diff --git a/code/game/objects/structures/barricade/plasteel.dm b/code/game/objects/structures/barricade/plasteel.dm index dd95aa3f1baf..bba07832f790 100644 --- a/code/game/objects/structures/barricade/plasteel.dm +++ b/code/game/objects/structures/barricade/plasteel.dm @@ -20,12 +20,15 @@ repair_materials = list("plasteel" = 0.3) var/build_state = BARRICADE_BSTATE_SECURED //Look at __game.dm for barricade defines - var/tool_cooldown = 0 //Delay to apply tools to prevent spamming - var/busy = FALSE //Standard busy check + /// Delay to apply tools to prevent spamming + var/tool_cooldown = 0 + /// Standard busy check + var/busy = FALSE var/linked = 0 var/recentlyflipped = FALSE var/hasconnectionoverlay = TRUE var/linkable = TRUE + welder_lower_damage_limit = BARRICADE_DMG_HEAVY /obj/structure/barricade/plasteel/update_icon() ..() @@ -57,35 +60,25 @@ if(BARRICADE_BSTATE_MOVABLE) . += SPAN_INFO("The protection panel has been removed and the anchor bolts loosened. It's ready to be taken apart.") -/obj/structure/barricade/plasteel/weld_cade(obj/item/W, mob/user) +/obj/structure/barricade/plasteel/weld_cade(obj/item/item, mob/user) busy = TRUE ..() busy = FALSE -/obj/structure/barricade/plasteel/attackby(obj/item/W, mob/user) - if(iswelder(W)) - if(!HAS_TRAIT(W, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) - return - if(busy || tool_cooldown > world.time) - return - tool_cooldown = world.time + 10 +/obj/structure/barricade/plasteel/attackby(obj/item/item, mob/user) + if(iswelder(item)) + if(!attackby_welder(item, user)) + return FALSE + + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You're not trained to repair [src]...")) - return - var/obj/item/tool/weldingtool/WT = W - if(damage_state == BARRICADE_DMG_HEAVY) - to_chat(user, SPAN_WARNING("[src] has sustained too much structural damage to be repaired.")) - return - - if(health == maxhealth) - to_chat(user, SPAN_WARNING("[src] doesn't need repairs.")) - return + return FALSE - weld_cade(WT, user) + weld_cade(item, user) return - if(try_nailgun_usage(W, user)) + if(try_nailgun_usage(item, user)) return for(var/obj/effect/xenomorph/acid/A in src.loc) @@ -95,7 +88,7 @@ switch(build_state) if(2) //Fully constructed step. Use screwdriver to remove the protection panels to reveal the bolts - if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER)) + if(HAS_TRAIT(item, TRAIT_TOOL_SCREWDRIVER)) if(busy || tool_cooldown > world.time) return tool_cooldown = world.time + 10 @@ -113,7 +106,7 @@ playsound(src.loc, 'sound/items/Screwdriver.ogg', 25, 1) build_state = BARRICADE_BSTATE_UNSECURED return - if(HAS_TRAIT(W, TRAIT_TOOL_CROWBAR)) + if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) to_chat(user, SPAN_WARNING("You are not trained to modify [src]...")) return @@ -133,7 +126,7 @@ cade.update_icon() update_icon() if(1) //Protection panel removed step. Screwdriver to put the panel back, wrench to unsecure the anchor bolts - if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER)) + if(HAS_TRAIT(item, TRAIT_TOOL_SCREWDRIVER)) if(busy || tool_cooldown > world.time) return tool_cooldown = world.time + 10 @@ -146,7 +139,7 @@ playsound(src.loc, 'sound/items/Screwdriver.ogg', 25, 1) build_state = BARRICADE_BSTATE_SECURED return - if(HAS_TRAIT(W, TRAIT_TOOL_WRENCH)) + if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) if(busy || tool_cooldown > world.time) return tool_cooldown = world.time + 10 @@ -163,7 +156,7 @@ return if(0) //Anchor bolts loosened step. Apply crowbar to unseat the panel and take apart the whole thing. Apply wrench to rescure anchor bolts - if(HAS_TRAIT(W, TRAIT_TOOL_WRENCH)) + if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) if(busy || tool_cooldown > world.time) return tool_cooldown = world.time + 10 @@ -182,7 +175,7 @@ build_state = BARRICADE_BSTATE_UNSECURED update_icon() //unanchored changes layer return - if(HAS_TRAIT(W, TRAIT_TOOL_CROWBAR)) + if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) if(busy || tool_cooldown > world.time) return tool_cooldown = world.time + 10 From 57898876a46902667c2a49c4c84d7eec4ab6e626 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Wed, 21 Feb 2024 13:14:00 +0000 Subject: [PATCH 058/148] Automatic changelog for PR #5609 [ci skip] --- html/changelogs/AutoChangeLog-pr-5609.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5609.yml diff --git a/html/changelogs/AutoChangeLog-pr-5609.yml b/html/changelogs/AutoChangeLog-pr-5609.yml new file mode 100644 index 000000000000..4ad1eb6ed5db --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5609.yml @@ -0,0 +1,5 @@ +author: "Huffie56" +delete-after: True +changes: + - refactor: "refactored files with the aim of making fixing barricade with a welder more constant." + - bugfix: "being unable to repair more than one metal barricade at the time." \ No newline at end of file From c15e764038af693dadfa6d912e2ca1473e6ade3e Mon Sep 17 00:00:00 2001 From: Drathek <76988376+Drulikar@users.noreply.github.com> Date: Wed, 21 Feb 2024 12:24:34 -0800 Subject: [PATCH 059/148] Fix CMB ERT & Path Based ERT Calling (#5755) # About the pull request This PR fixes the black market CMB automatic ERT and makes get_specific_call ~~more flexible and~~ efficient. # Explain why it's good for the game Fixes `## ERROR: get_specific_call could not find emergency call 'Inspection - Colonial Marshal Ledger Investigation Team'` caused by a grammar fix from Marshal to Marshals. This should generally be harder to cause since the call can now only be called via a path. # Testing Photographs and Procedure
Screenshots & Videos ![1](https://github.com/cmss13-devs/cmss13/assets/76988376/2beff6de-ea6a-40bd-b4e8-7c13ed618308) ![2](https://github.com/cmss13-devs/cmss13/assets/76988376/4dbd1ba2-6782-4849-87ba-fef0ae57121b) ![4](https://github.com/cmss13-devs/cmss13/assets/76988376/58d5017e-9ebf-4d93-86b5-de0428b5e7bb) ![image](https://github.com/cmss13-devs/cmss13/assets/76988376/74d47e01-5d7c-4fd2-b02e-6ee32d57e357) ![image](https://github.com/cmss13-devs/cmss13/assets/76988376/acd80c2f-100a-41cc-8401-b1803a04ad7d)
# Changelog :cl: Drathek fix: Fixed automatic CMB ERT caused by black market heat code: get_specific_call now only accepts a path or a string of a path /:cl: --- code/datums/emergency_calls/emergency_call.dm | 19 ++++++++++----- .../colonialmarines/colonialmarines.dm | 2 +- .../colonialmarines/whiskey_outpost.dm | 2 +- .../objects/items/handheld_distress_beacon.dm | 23 ++++++++++--------- code/game/supplyshuttle.dm | 2 +- .../cm_tech/techs/marine/tier3/cryo_spec.dm | 2 +- .../cm_tech/techs/marine/tier3/cryorine.dm | 2 +- .../chemistry_properties/prop_special.dm | 2 +- 8 files changed, 31 insertions(+), 23 deletions(-) diff --git a/code/datums/emergency_calls/emergency_call.dm b/code/datums/emergency_calls/emergency_call.dm index 69e2c02a9165..998af015d07c 100644 --- a/code/datums/emergency_calls/emergency_call.dm +++ b/code/datums/emergency_calls/emergency_call.dm @@ -96,12 +96,19 @@ return chosen_call /datum/game_mode/proc/get_specific_call(call_name, quiet_launch = FALSE, announce_incoming = TRUE, info = "") - for(var/datum/emergency_call/E in all_calls) //Loop through all potential candidates - if(E.name == call_name) - var/datum/emergency_call/em_call = new E.type() - em_call.objective_info = info - em_call.activate(quiet_launch, announce_incoming) - return + if(ispath(call_name, /datum/emergency_call)) + var/datum/emergency_call/em_call = new call_name + em_call.objective_info = info + em_call.activate(quiet_launch, announce_incoming) + return + + var/call_path = text2path(call_name) + if(ispath(call_path, /datum/emergency_call)) + var/datum/emergency_call/em_call = new call_path + em_call.objective_info = info + em_call.activate(quiet_launch, announce_incoming) + return + error("get_specific_call could not find emergency call '[call_name]'") return diff --git a/code/game/gamemodes/colonialmarines/colonialmarines.dm b/code/game/gamemodes/colonialmarines/colonialmarines.dm index 192277a250cc..ca0f34e64a7b 100644 --- a/code/game/gamemodes/colonialmarines/colonialmarines.dm +++ b/code/game/gamemodes/colonialmarines/colonialmarines.dm @@ -265,7 +265,7 @@ continue if(groundside_humans > (groundside_xenos * GROUNDSIDE_XENO_MULTIPLIER)) - SSticker.mode.get_specific_call("Xenomorphs Groundside (Forsaken)", TRUE, FALSE) + SSticker.mode.get_specific_call(/datum/emergency_call/forsaken_xenos, TRUE, FALSE) // "Xenomorphs Groundside (Forsaken)" TIMER_COOLDOWN_START(src, COOLDOWN_HIJACK_GROUND_CHECK, 1 MINUTES) diff --git a/code/game/gamemodes/colonialmarines/whiskey_outpost.dm b/code/game/gamemodes/colonialmarines/whiskey_outpost.dm index f6fbb5f4f900..d216ba762a3e 100644 --- a/code/game/gamemodes/colonialmarines/whiskey_outpost.dm +++ b/code/game/gamemodes/colonialmarines/whiskey_outpost.dm @@ -194,7 +194,7 @@ announce_xeno_wave(wave) if(xeno_wave == 7) //Wave when Marines get reinforcements! - get_specific_call("Marine Reinforcements (Squad)", FALSE, TRUE) + get_specific_call(/datum/emergency_call/wo, FALSE, TRUE) // "Marine Reinforcements (Squad)" xeno_wave = min(xeno_wave + 1, WO_MAX_WAVE) diff --git a/code/game/objects/items/handheld_distress_beacon.dm b/code/game/objects/items/handheld_distress_beacon.dm index 91d6a6aa945f..5764604c9a2f 100644 --- a/code/game/objects/items/handheld_distress_beacon.dm +++ b/code/game/objects/items/handheld_distress_beacon.dm @@ -12,9 +12,9 @@ ///Tells the user who the beacon will be sent to IC var/recipient = "the USCSS Royce" ///The name of the ERT that will be passed to get_specific_call - var/list/ert_full_name = list("Weyland-Yutani PMC (Chemical Investigation Squad)") + var/list/ert_paths = list(/datum/emergency_call/pmc/chem_retrieval) // "Weyland-Yutani PMC (Chemical Investigation Squad)" ///The clickable version that will be sent in message_admins - var/list/ert_short_name = list("SEND PMCs") + var/list/ert_short_names = list("SEND PMCs") ///Whether beacon can be used, or has already been used var/active = FALSE @@ -41,13 +41,13 @@ active = TRUE update_icon() - if(!ert_full_name || !ert_short_name || (length(ert_full_name) != length(ert_short_name))) //Make sure they are greater than 0, and both are same length + if(!ert_paths || !ert_short_names || (length(ert_paths) != length(ert_short_names))) //Make sure they are greater than 0, and both are same length to_chat(user, SPAN_BOLDWARNING("[src] is broken!")) CRASH("[src] was improperly set, and has been disabled.") //For the runtime logs var/beacon_call_buttons - for(var/current_ert_num in 1 to length(ert_full_name)) - beacon_call_buttons += "([ert_short_name[current_ert_num]]) " + for(var/current_ert_num in 1 to length(ert_paths)) + beacon_call_buttons += "([ert_short_names[current_ert_num]]) " for(var/client/admin_client in GLOB.admins) if((R_ADMIN|R_MOD) & admin_client.admin_holder.rights) @@ -62,8 +62,9 @@ beacon_type = "CMB beacon" recipient = "Anchorpoint Station" - ert_full_name = list("CMB - Patrol Team - Marshals in Distress (Friendly)", "CMB - Anchorpoint Station Colonial Marine QRF (Friendly)") - ert_short_name = list("SEND CMB", "SEND QRF") + // "CMB - Patrol Team - Marshals in Distress (Friendly)", "CMB - Anchorpoint Station Colonial Marine QRF (Friendly)" + ert_paths = list(/datum/emergency_call/cmb/alt, /datum/emergency_call/cmb/anchorpoint) + ert_short_names = list("SEND CMB", "SEND QRF") // Corporate Lawyer beacon available for 50 points at the CLs briefcase /obj/item/handheld_distress_beacon/lawyer @@ -72,8 +73,8 @@ beacon_type = "Lawyer beacon" recipient = "the Corporate Affairs Division" - ert_full_name = list("Lawyers - Corporate") - ert_short_name = list("SEND LAWYERS") + ert_paths = list(/datum/emergency_call/inspection_wy/lawyer) // "Lawyers - Corporate" + ert_short_names = list("SEND LAWYERS") // Corporate Security Bodyguard beacon available for 50 points at the CLs briefcase /obj/item/handheld_distress_beacon/bodyguard @@ -82,5 +83,5 @@ beacon_type = "Bodyguard beacon" recipient = "the Corporate Security Division" - ert_full_name = list("Weyland-Yutani Goon (Executive Bodyguard Detail)") - ert_short_name = list("SEND BODYGUARD") + ert_paths = list(/datum/emergency_call/goon/bodyguard) // "Weyland-Yutani Goon (Executive Bodyguard Detail)" + ert_short_names = list("SEND BODYGUARD") diff --git a/code/game/supplyshuttle.dm b/code/game/supplyshuttle.dm index 893071c758ed..a059d080e8ee 100644 --- a/code/game/supplyshuttle.dm +++ b/code/game/supplyshuttle.dm @@ -1277,7 +1277,7 @@ GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new()) /datum/controller/supply/proc/black_market_investigation() black_market_heat = -1 - SSticker.mode.get_specific_call("Inspection - Colonial Marshal Ledger Investigation Team", TRUE, TRUE) + SSticker.mode.get_specific_call(/datum/emergency_call/inspection_cmb/black_market, TRUE, TRUE) // "Inspection - Colonial Marshals Ledger Investigation Team" log_game("Black Market Inspection auto-triggered.") /obj/structure/machinery/computer/supplycomp/proc/is_buyable(datum/supply_packs/supply_pack) diff --git a/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm b/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm index 16f0f26576a3..acee904af305 100644 --- a/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm +++ b/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm @@ -21,4 +21,4 @@ /datum/tech/cryomarine/on_unlock() . = ..() - SSticker.mode.get_specific_call("Marine Cryo Reinforcement (Spec)", TRUE, FALSE) + SSticker.mode.get_specific_call(/datum/emergency_call/cryo_spec, TRUE, FALSE) // "Marine Cryo Reinforcement (Spec)" diff --git a/code/modules/cm_tech/techs/marine/tier3/cryorine.dm b/code/modules/cm_tech/techs/marine/tier3/cryorine.dm index 49b4eea8f525..404fbd07c2ae 100644 --- a/code/modules/cm_tech/techs/marine/tier3/cryorine.dm +++ b/code/modules/cm_tech/techs/marine/tier3/cryorine.dm @@ -23,4 +23,4 @@ /datum/tech/repeatable/cryomarine/on_unlock() . = ..() - SSticker.mode.get_specific_call("Marine Cryo Reinforcements (Tech)", TRUE, FALSE) + SSticker.mode.get_specific_call(/datum/emergency_call/cryo_squad/tech, TRUE, FALSE) // "Marine Cryo Reinforcements (Tech)" diff --git a/code/modules/reagents/chemistry_properties/prop_special.dm b/code/modules/reagents/chemistry_properties/prop_special.dm index 52354f0d6b01..cee75ca58c06 100644 --- a/code/modules/reagents/chemistry_properties/prop_special.dm +++ b/code/modules/reagents/chemistry_properties/prop_special.dm @@ -96,7 +96,7 @@ H.contract_disease(new /datum/disease/xeno_transformation(0),1) //This is the real reason PMCs are being sent to retrieve it. /datum/chem_property/special/DNA_Disintegrating/trigger() - SSticker.mode.get_specific_call("Weyland-Yutani Goon (Chemical Investigation Squad)", TRUE, FALSE, holder.name) + SSticker.mode.get_specific_call(/datum/emergency_call/goon/chem_retrieval, TRUE, FALSE, holder.name) // "Weyland-Yutani Goon (Chemical Investigation Squad)" GLOB.chemical_data.update_credits(10) message_admins("The research department has discovered DNA_Disintegrating in [holder.name] adding 10 bonus tech points.") var/datum/techtree/tree = GET_TREE(TREE_MARINE) From 62c46344980e7f15133fbd5a752e21544e94dea1 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Wed, 21 Feb 2024 20:34:21 +0000 Subject: [PATCH 060/148] Automatic changelog for PR #5755 [ci skip] --- html/changelogs/AutoChangeLog-pr-5755.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5755.yml diff --git a/html/changelogs/AutoChangeLog-pr-5755.yml b/html/changelogs/AutoChangeLog-pr-5755.yml new file mode 100644 index 000000000000..f84131bf8dc7 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5755.yml @@ -0,0 +1,5 @@ +author: "Drathek" +delete-after: True +changes: + - bugfix: "Fixed automatic CMB ERT caused by black market heat" + - code_imp: "get_specific_call now only accepts a path or a string of a path" \ No newline at end of file From 06eebf0a3669e92e757443f232587cd5cf8b1bf3 Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Wed, 21 Feb 2024 20:27:13 +0000 Subject: [PATCH 061/148] Gun action (and equip) buttons refactor (#5750) # About the pull request Refactors the 'gun action' buttons and the 'equip' button to have each have their own `/atom/movable/screen` subtype, rather than all of their functionality being done through `if()` checks in `/atom/movable/screen/clicked()`. *The 'gun action' buttons being these:* ![image](https://github.com/cmss13-devs/cmss13/assets/57483089/3c73da3e-4b99-4ad5-b66d-f01077f686d4) *And the 'equip' button being this:* ![image](https://github.com/cmss13-devs/cmss13/assets/57483089/1a60d926-605d-45b4-9a9a-5a6a05cfc657) # Explain why it's good for the game Cleaner code, and the gun buttons now show their names in the status bar when hovered over thanks to this: https://github.com/cmss13-devs/cmss13/blob/1bc0fa54e985fef991e06a85871b0a62cf15e5b2/code/modules/statusbar/statusbar.dm#L23 (That line has been there for a couple of years, but `/atom/movable/screen/gun` didn't exist until now.) # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: refactor: Refactored the 'gun action' buttons, making them show their names in the status bar when hovered over. /:cl: --------- Co-authored-by: harryob --- code/_onclick/hud/human.dm | 36 ++++------- code/_onclick/hud/screen_objects.dm | 92 ++++++++++++++++------------- 2 files changed, 63 insertions(+), 65 deletions(-) diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm index 37a858d76699..b8b55b42c028 100644 --- a/code/_onclick/hud/human.dm +++ b/code/_onclick/hud/human.dm @@ -272,18 +272,14 @@ static_inventory += using /datum/hud/human/proc/draw_hand_equip(datum/custom_hud/ui_datum, ui_alpha, ui_color) - var/atom/movable/screen/using = new /atom/movable/screen() - using.name = "equip" - using.icon = ui_datum.ui_style_icon - using.icon_state = "act_equip" - using.screen_loc = ui_datum.ui_equip - using.layer = ABOVE_HUD_LAYER - using.plane = ABOVE_HUD_PLANE + var/atom/movable/screen/equip/equip_button = new() + equip_button.icon = ui_datum.ui_style_icon + equip_button.screen_loc = ui_datum.ui_equip if(ui_color) - using.color = ui_color + equip_button.color = ui_color if(ui_alpha) - using.alpha = ui_alpha - static_inventory += using + equip_button.alpha = ui_alpha + static_inventory += equip_button /datum/hud/human/proc/draw_oxygen(datum/custom_hud/ui_datum) oxygen_icon = new /atom/movable/screen/oxygen() @@ -312,38 +308,28 @@ infodisplay += locate_leader /datum/hud/human/proc/draw_gun_related(datum/custom_hud/ui_datum, ui_alpha) - use_attachment = new /atom/movable/screen() + use_attachment = new /atom/movable/screen/gun/attachment() use_attachment.icon = ui_datum.ui_style_icon - use_attachment.icon_state = "gun_attach" - use_attachment.name = "Activate weapon attachment" use_attachment.screen_loc = ui_datum.ui_gun_attachment static_inventory += use_attachment - toggle_raillight = new /atom/movable/screen() + toggle_raillight = new /atom/movable/screen/gun/rail_light() toggle_raillight.icon = ui_datum.ui_style_icon - toggle_raillight.icon_state = "gun_raillight" - toggle_raillight.name = "Toggle Rail Flashlight" toggle_raillight.screen_loc = ui_datum.ui_gun_railtoggle static_inventory += toggle_raillight - eject_mag = new /atom/movable/screen() + eject_mag = new /atom/movable/screen/gun/eject_magazine() eject_mag.icon = ui_datum.ui_style_icon - eject_mag.icon_state = "gun_loaded" - eject_mag.name = "Eject magazine" eject_mag.screen_loc = ui_datum.ui_gun_eject static_inventory += eject_mag - toggle_burst = new /atom/movable/screen() + toggle_burst = new /atom/movable/screen/gun/toggle_firemode() toggle_burst.icon = ui_datum.ui_style_icon - toggle_burst.icon_state = "gun_burst" - toggle_burst.name = "Toggle burst fire" toggle_burst.screen_loc = ui_datum.ui_gun_burst static_inventory += toggle_burst - unique_action = new /atom/movable/screen() + unique_action = new /atom/movable/screen/gun/unique_action() unique_action.icon = ui_datum.ui_style_icon - unique_action.icon_state = "gun_unique" - unique_action.name = "Use unique action" unique_action.screen_loc = ui_datum.ui_gun_unique static_inventory += unique_action diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm index ed30ddaaec96..edf2d44a0714 100644 --- a/code/_onclick/hud/screen_objects.dm +++ b/code/_onclick/hud/screen_objects.dm @@ -213,54 +213,53 @@ update_icon(user) return 1 -/atom/movable/screen/clicked(mob/user, list/mods) - if(!user) - return TRUE +/atom/movable/screen/gun + /// The proc/verb which should be called on the gun. + var/gun_proc_ref - if(isobserver(user)) - return TRUE +/atom/movable/screen/gun/clicked(mob/user, list/mods) + . = ..() + if(.) + return + // If the user has a gun in their active hand, call `gun_proc_ref` on it. + var/obj/item/weapon/gun/held_item = user.get_held_item() + if(istype(held_item)) + INVOKE_ASYNC(held_item, gun_proc_ref) - switch(name) - if("equip") - if(ishuman(user)) - var/mob/living/carbon/human/human = user - human.quick_equip() - return 1 +/atom/movable/screen/gun/attachment + name = "Activate weapon attachment" + icon_state = "gun_attach" + gun_proc_ref = TYPE_VERB_REF(/obj/item/weapon/gun, activate_attachment_verb) - if("Reset Machine") - user.unset_interaction() - return 1 +/atom/movable/screen/gun/rail_light + name = "Toggle rail flashlight" + icon_state = "gun_raillight" + gun_proc_ref = TYPE_VERB_REF(/obj/item/weapon/gun, activate_rail_attachment_verb) - if("Activate weapon attachment") - var/obj/item/weapon/gun/held_item = user.get_held_item() - if(istype(held_item)) - held_item.activate_attachment_verb() - return 1 +/atom/movable/screen/gun/eject_magazine + name = "Eject magazine" + icon_state = "gun_loaded" + gun_proc_ref = TYPE_VERB_REF(/obj/item/weapon/gun, empty_mag) - if("Toggle Rail Flashlight") - var/obj/item/weapon/gun/held_item = user.get_held_item() - if(istype(held_item)) - held_item.activate_rail_attachment_verb() - return 1 +/atom/movable/screen/gun/toggle_firemode + name = "Toggle firemode" + icon_state = "gun_burst" + gun_proc_ref = TYPE_VERB_REF(/obj/item/weapon/gun, use_toggle_burst) - if("Eject magazine") - var/obj/item/weapon/gun/held_item = user.get_held_item() - if(istype(held_item)) - held_item.empty_mag() - return 1 +/atom/movable/screen/gun/unique_action + name = "Use unique action" + icon_state = "gun_unique" + gun_proc_ref = TYPE_VERB_REF(/obj/item/weapon/gun, use_unique_action) - if("Toggle burst fire") - var/obj/item/weapon/gun/held_item = user.get_held_item() - if(istype(held_item)) - held_item.use_toggle_burst() - return 1 - if("Use unique action") - var/obj/item/weapon/gun/held_item = user.get_held_item() - if(istype(held_item)) - held_item.use_unique_action() - return 1 - return 0 +/atom/movable/screen/clicked(mob/user, list/mods) + if(!user) + return TRUE + + if(isobserver(user)) + return TRUE + + return FALSE /atom/movable/screen/inventory/clicked(mob/user) @@ -587,6 +586,19 @@ vision_define = XENO_VISION_LEVEL_NO_NVG to_chat(owner, SPAN_NOTICE("Night vision mode switched to [vision_define].")) +/atom/movable/screen/equip + name = "equip" + icon_state = "act_equip" + layer = ABOVE_HUD_LAYER + plane = ABOVE_HUD_PLANE + +/atom/movable/screen/equip/clicked(mob/user) + . = ..() + if(. || !ishuman(user)) + return TRUE + var/mob/living/carbon/human/human_user = user + human_user.quick_equip() + /atom/movable/screen/bodytemp name = "body temperature" icon_state = "temp0" From 9c4fec264810ac190b486a4428ad073d87aed4cd Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Wed, 21 Feb 2024 20:48:15 +0000 Subject: [PATCH 062/148] Automatic changelog for PR #5750 [ci skip] --- html/changelogs/AutoChangeLog-pr-5750.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5750.yml diff --git a/html/changelogs/AutoChangeLog-pr-5750.yml b/html/changelogs/AutoChangeLog-pr-5750.yml new file mode 100644 index 000000000000..45c4e629436c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5750.yml @@ -0,0 +1,4 @@ +author: "SabreML" +delete-after: True +changes: + - refactor: "Refactored the 'gun action' buttons, making them show their names in the status bar when hovered over." \ No newline at end of file From 139507d02857045b4513f941649cc62658887be3 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Thu, 22 Feb 2024 01:06:38 +0000 Subject: [PATCH 063/148] Automatic changelog compile [ci skip] --- html/changelogs/AutoChangeLog-pr-5433.yml | 4 --- html/changelogs/AutoChangeLog-pr-5577.yml | 7 ----- html/changelogs/AutoChangeLog-pr-5609.yml | 5 ---- html/changelogs/AutoChangeLog-pr-5735.yml | 4 --- html/changelogs/AutoChangeLog-pr-5750.yml | 4 --- html/changelogs/AutoChangeLog-pr-5751.yml | 5 ---- html/changelogs/AutoChangeLog-pr-5755.yml | 5 ---- html/changelogs/AutoChangeLog-pr-5757.yml | 4 --- html/changelogs/AutoChangeLog-pr-5758.yml | 4 --- html/changelogs/AutoChangeLog-pr-5762.yml | 4 --- html/changelogs/AutoChangeLog-pr-5764.yml | 4 --- html/changelogs/archive/2024-02.yml | 35 +++++++++++++++++++++++ 12 files changed, 35 insertions(+), 50 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-5433.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5577.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5609.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5735.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5750.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5751.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5755.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5757.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5758.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5762.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5764.yml diff --git a/html/changelogs/AutoChangeLog-pr-5433.yml b/html/changelogs/AutoChangeLog-pr-5433.yml deleted file mode 100644 index 89e4d482185e..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5433.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "TheGamerdk" -delete-after: True -changes: - - rscadd: "CIC can now view helmet cameras of Command Staff. Literally 1984" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5577.yml b/html/changelogs/AutoChangeLog-pr-5577.yml deleted file mode 100644 index ea5029462ec5..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5577.yml +++ /dev/null @@ -1,7 +0,0 @@ -author: "LaylaMcC" -delete-after: True -changes: - - rscadd: "Increased levels of acidic blood and carpotoxin in xenomeat and carp fillets." - - rscdel: "Xenomeat and carp fillet-based recipes no longer add additional acidic blood or carpotoxin." - - qol: "Master level domestic skill allows the use of the food processor to remove acidic blood and carpotoxin from xenomeat and carp fillets." - - bugfix: "Turning named pieces of human meat into meatballs will retain the human's name." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5609.yml b/html/changelogs/AutoChangeLog-pr-5609.yml deleted file mode 100644 index 4ad1eb6ed5db..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5609.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "Huffie56" -delete-after: True -changes: - - refactor: "refactored files with the aim of making fixing barricade with a welder more constant." - - bugfix: "being unable to repair more than one metal barricade at the time." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5735.yml b/html/changelogs/AutoChangeLog-pr-5735.yml deleted file mode 100644 index 5f383f47d5fb..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5735.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "iloveloopers" -delete-after: True -changes: - - qol: "Autolathes are now significantly faster." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5750.yml b/html/changelogs/AutoChangeLog-pr-5750.yml deleted file mode 100644 index 45c4e629436c..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5750.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "SabreML" -delete-after: True -changes: - - refactor: "Refactored the 'gun action' buttons, making them show their names in the status bar when hovered over." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5751.yml b/html/changelogs/AutoChangeLog-pr-5751.yml deleted file mode 100644 index a2f845c0527e..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5751.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "SabreML" -delete-after: True -changes: - - rscadd: "Added 'observe' functionality to Xenomorphs, allowing observers to view the target's UI." - - rscadd: "Made observing a player also show their action buttons." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5755.yml b/html/changelogs/AutoChangeLog-pr-5755.yml deleted file mode 100644 index f84131bf8dc7..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5755.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "Drathek" -delete-after: True -changes: - - bugfix: "Fixed automatic CMB ERT caused by black market heat" - - code_imp: "get_specific_call now only accepts a path or a string of a path" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5757.yml b/html/changelogs/AutoChangeLog-pr-5757.yml deleted file mode 100644 index d227d38fd6c8..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5757.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "BadAtThisGame302" -delete-after: True -changes: - - rscadd: "Implemented a probability of playing a static-filled transmission as the distress received response." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5758.yml b/html/changelogs/AutoChangeLog-pr-5758.yml deleted file mode 100644 index faa5452042bd..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5758.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Kaga" -delete-after: True -changes: - - bugfix: "Fixed a bug that broke ID-Lockable items in presets. Rejoice, PMC Snipers, pre-equipped USCM Specs, UPP Commandos, and WY Deathsquads." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5762.yml b/html/changelogs/AutoChangeLog-pr-5762.yml deleted file mode 100644 index e91fb28814b9..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5762.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Drathek" -delete-after: True -changes: - - spellcheck: "Reworded message when a facehugger's temporary mute ends to not mention hivemind" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5764.yml b/html/changelogs/AutoChangeLog-pr-5764.yml deleted file mode 100644 index 1239985de3b2..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5764.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Drathek" -delete-after: True -changes: - - ui: "Fix broken admin Medals Panel" \ No newline at end of file diff --git a/html/changelogs/archive/2024-02.yml b/html/changelogs/archive/2024-02.yml index 35e063bd1bdc..f54127866f02 100644 --- a/html/changelogs/archive/2024-02.yml +++ b/html/changelogs/archive/2024-02.yml @@ -269,3 +269,38 @@ - bugfix: Forsaken and Feral xenos can now (correctly) use hive-status - spellcheck: fixed a case where we/our wouldn't be used when attempting to access hive status with no queen +2024-02-22: + BadAtThisGame302: + - rscadd: Implemented a probability of playing a static-filled transmission as the + distress received response. + Drathek: + - bugfix: Fixed automatic CMB ERT caused by black market heat + - code_imp: get_specific_call now only accepts a path or a string of a path + - ui: Fix broken admin Medals Panel + - spellcheck: Reworded message when a facehugger's temporary mute ends to not mention + hivemind + Huffie56: + - refactor: refactored files with the aim of making fixing barricade with a welder + more constant. + - bugfix: being unable to repair more than one metal barricade at the time. + Kaga: + - bugfix: Fixed a bug that broke ID-Lockable items in presets. Rejoice, PMC Snipers, + pre-equipped USCM Specs, UPP Commandos, and WY Deathsquads. + LaylaMcC: + - rscadd: Increased levels of acidic blood and carpotoxin in xenomeat and carp fillets. + - rscdel: Xenomeat and carp fillet-based recipes no longer add additional acidic + blood or carpotoxin. + - qol: Master level domestic skill allows the use of the food processor to remove + acidic blood and carpotoxin from xenomeat and carp fillets. + - bugfix: Turning named pieces of human meat into meatballs will retain the human's + name. + SabreML: + - rscadd: Added 'observe' functionality to Xenomorphs, allowing observers to view + the target's UI. + - rscadd: Made observing a player also show their action buttons. + - refactor: Refactored the 'gun action' buttons, making them show their names in + the status bar when hovered over. + TheGamerdk: + - rscadd: CIC can now view helmet cameras of Command Staff. Literally 1984 + iloveloopers: + - qol: Autolathes are now significantly faster. From dc412e4679dea8410a58d18cc60913e07edf84ec Mon Sep 17 00:00:00 2001 From: InsaneRed <47158596+InsaneRed@users.noreply.github.com> Date: Thu, 22 Feb 2024 12:17:43 +0300 Subject: [PATCH 064/148] Abomination rework and predator plasma rifle buff. (#5432) # About the pull request This pr intends to catch up predalien towards current gameplay by reworking a few abilities and adding new ones. # Explain why it's good for the game Currently the predalien has been untouched (practically) for over 3-4 years now, while being rare and decent enough to hold its own against current year marines and predators, its highly outdated. It's main power being "the gib" which is not fun for marines to be instantly removed from the game as most of the time you will be accompined by a queen and the entire hive. its not being fun being comboed into a queen screech + gib As their natural counter, the predators are currently lacking in a strong way to counter it, i believe the Plasma Rifle thats only available when an abomination is present is very weak, underpowered and generaly not that good. I can go into deeper details if anyone wants me to. So my natural response was to make it set people on fire because generally the predalien will be guarded by an entire hive. This will make it so that atleast the xenomorph hit, will have to back off allowing the predator to breathe. I havent touched the recharge rate because i think this incin bullet will be powerful enough to compensate for the low recharge rate, and only 16 shots (you need 14 dead on shots to kill an abomination, not counting its movement, phermones, and the entire hive guarding it.) below are all the changes ive decided to make; "Feral Frenzy" is a mashup of the old gut ability, it now has a toggle that lets you choose between AOE/SINGLE TARGET. I think this is a defining factor in predalien reworks, because currently it is too focused on fighting predators and not enough on marines. This will help you fend off against a marine group by letting you become devastating against grouped up marines. Or chosing to catch one by switching to single target since it has a root. (Also retaining its ability to fight off predators). "Feral Rush"; Feral rush incrases your armor and speed by a certain number, i wanted to add this instead of the useless pounce as i felt like the pounce was basically not providing you with anything other then just a distance closer, and it didnt fit in with the new gutting abilities, this way you can speed up, armor up and then go inside the marine force and do your aoe ability and get back out. This will ensure that you arent useless while going in since without the armor and speed, you will melt by the time you go in marine numbers, (also remember the AOE gut has a windup of 2 seconds.), The armor is removed 6 seconds after the slow (the speed lasts 3 seconds, so you're just armored for an extra 3 seconds) as to have that extra armor while retreating from more open places. "Stomp" ; the reason ive decided to remove this ability is it felt way out of place for this kit and just simply wasnt good enough (in my opinion) to being there although a slow or aoe root might be needed if this gets approval enough for gametesting. "Frenzy Smash" ; Grabs somebody by the leg and smashes them to the ground, this honestly just felt like a cool ability to add, it lets you keep somebody in place but also keep them moving, this is mostly a flair ability but still VERY deadly, may be buffed to make preds slower for a duration. deals 20 damage and scales with kills THIS IS ALL UP FOR DEBATE, AND I WOULD LIKE TO WATCH THIS ALL INGAME VIA ABOM EVENTS BY ADMINS IF THATS POSSIBLE. # Testing Photographs and Procedure
Screenshots & Videos https://github.com/cmss13-devs/cmss13/assets/47158596/f28a5048-701f-4b9d-a2bf-dd5dbc6d08be https://github.com/cmss13-devs/cmss13/assets/47158596/53da1e18-1a4a-49de-a73d-1ab7f1abb1d8 https://github.com/cmss13-devs/cmss13/assets/47158596/69eeb0e9-cbe6-4712-a15a-b599dbc56109
# Changelog :cl: add: Added a new ability to the predalien "Feral Rush" that increases it's armor and speed for a short duration. add: Added two new abilities to the predalien "Feral Frenzy" and a toggle. The predalien can now switch between a single target GUT and an AOE one, both of which has damage that scale with your kills. del: Removed the predaliens gib ability del: Removed the predaliens "pounce" ability del: Removed the predaliens "Ground Smash" ability balance: Predalien no longer has plasma costs, or plasma. balance: The Plasma Rifle, which is ONLY used to hunt abominations now has a higher ROF and has incin bullets. spellcheck: Re-wrote the predalien text to be more up to date and remove missinformation qol: Everyone can see how many kills the predalien has by examining it. add: Added a "Feral Smash" ability that lets you grab somebody and smash them to the ground, this scales with kills and is a devastating attack. balance: Removed screenshake from predalien's screech balance: Predalien removes fire stacks faster. fix: Girders are now slashable by very_sharp_claws instead of just having a queen chack /:cl: --------- Co-authored-by: InsaneRed Co-authored-by: Birdtalon Co-authored-by: Drathek <76988376+Drulikar@users.noreply.github.com> --- code/__DEFINES/xeno.dm | 3 + code/datums/ammo/energy.dm | 7 + code/modules/cm_preds/yaut_weapons.dm | 2 +- .../predalien/predalien_abilities.dm | 80 +++-- .../abilities/predalien/predalien_macros.dm | 35 +++ .../abilities/predalien/predalien_powers.dm | 283 +++++++++++++----- .../living/carbon/xenomorph/attack_alien.dm | 2 +- .../carbon/xenomorph/castes/Predalien.dm | 80 ++--- colonialmarines.dme | 1 + 9 files changed, 329 insertions(+), 164 deletions(-) create mode 100644 code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_macros.dm diff --git a/code/__DEFINES/xeno.dm b/code/__DEFINES/xeno.dm index 6f6e4eef7c20..fb9d6bfb4faf 100644 --- a/code/__DEFINES/xeno.dm +++ b/code/__DEFINES/xeno.dm @@ -62,6 +62,9 @@ #define ACID_SPRAY_LINE 0 #define ACID_SPRAY_CONE 1 +/// Defines for Abomination ability /datum/action/xeno_action/activable/feralfrenzy +#define SINGLETARGETGUT 0 +#define AOETARGETGUT 1 #define WARDEN_HEAL_SHIELD 0 #define WARDEN_HEAL_HP 1 diff --git a/code/datums/ammo/energy.dm b/code/datums/ammo/energy.dm index 16cbab378438..1f48806d2d52 100644 --- a/code/datums/ammo/energy.dm +++ b/code/datums/ammo/energy.dm @@ -230,3 +230,10 @@ var/mob/living/carbon/xenomorph/xeno = hit_mob xeno.apply_damage(damage * 0.75, BURN) xeno.interference = 30 + +/datum/ammo/energy/yautja/rifle/bolt/set_bullet_traits() + . = ..() + LAZYADD(traits_to_give, list( + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_incendiary) + )) + diff --git a/code/modules/cm_preds/yaut_weapons.dm b/code/modules/cm_preds/yaut_weapons.dm index 9cb8a8bef3fc..34233f2ee9cd 100644 --- a/code/modules/cm_preds/yaut_weapons.dm +++ b/code/modules/cm_preds/yaut_weapons.dm @@ -938,7 +938,7 @@ /obj/item/weapon/gun/energy/yautja/plasmarifle/set_gun_config_values() ..() - set_fire_delay(FIRE_DELAY_TIER_6*2) + set_fire_delay(FIRE_DELAY_TIER_4*2) accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_10 accuracy_mult_unwielded = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_10 scatter = SCATTER_AMOUNT_TIER_6 diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_abilities.dm index aa98f063b8d5..b1358e30c26b 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_abilities.dm @@ -1,14 +1,22 @@ -/datum/action/xeno_action/activable/pounce/predalien - name = "Leap" + +/datum/action/xeno_action/onclick/feralrush + name = "Feral Rush" + action_icon_state = "charge_spit" + ability_name = "toughen up" + macro_path = /datum/action/xeno_action/verb/verb_feralrush ability_primacy = XENO_PRIMARY_ACTION_1 + action_type = XENO_ACTION_ACTIVATE + xeno_cooldown = 12 SECONDS + + // Config + var/speed_duration = 3 SECONDS + var/armor_duration = 6 SECONDS + var/speed_buff_amount = 0.8 // Go from shit slow to kindafast + var/armor_buff_amount = 10 // hopefully-minor buff so they can close the distance - knockdown = FALSE + var/speed_buff = FALSE + var/armor_buff = FALSE - distance = 5 - knockdown = FALSE // Should we knock down the target? - slash = FALSE // Do we slash upon reception? - freeze_self = FALSE // Should we freeze ourselves after the lunge? - should_destroy_objects = TRUE // Only used for ravager charge /datum/action/xeno_action/onclick/predalien_roar name = "Roar" @@ -16,37 +24,53 @@ ability_name = "roar" action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_2 + macro_path = /datum/action/xeno_action/verb/verb_predalien_roar xeno_cooldown = 25 SECONDS - plasma_cost = 50 - var/predalien_roar = list("sound/voice/predalien_roar.ogg") var/bonus_damage_scale = 2.5 var/bonus_speed_scale = 0.05 -/datum/action/xeno_action/onclick/smash - name = "Smash" - action_icon_state = "stomp" - ability_name = "smash" +/datum/action/xeno_action/activable/feral_smash + name = "Feral Smash" + ability_name = "Feral Smash" + action_icon_state = "lunge" action_type = XENO_ACTION_CLICK + macro_path = /datum/action/xeno_action/verb/feral_smash ability_primacy = XENO_PRIMARY_ACTION_3 xeno_cooldown = 20 SECONDS - plasma_cost = 80 - - var/freeze_duration = 1.5 SECONDS - var/activation_delay = 1 SECONDS - var/smash_sounds = list('sound/effects/alien_footstep_charge1.ogg', 'sound/effects/alien_footstep_charge2.ogg', 'sound/effects/alien_footstep_charge3.ogg') + // Configurables + var/grab_range = 4 + var/click_miss_cooldown = 15 + var/twitch_message_cooldown = 0 //apparently this is necessary for a tiny code that makes the lunge message on cooldown not be spammable, doesn't need to be big so 5 will do. + var/smash_damage = 20 + var/smash_scale = 10 + var/stun_duration = 2 SECONDS -/datum/action/xeno_action/activable/devastate - name = "Devastate" - action_icon_state = "gut" - ability_name = "devastate" +/datum/action/xeno_action/activable/feralfrenzy + name = "Feral Frenzy" + action_icon_state = "rav_eviscerate" + ability_name = "Feral Frenzy" action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_4 - xeno_cooldown = 20 SECONDS - plasma_cost = 110 - - var/activation_delay = 1 SECONDS + macro_path = /datum/action/xeno_action/verb/verb_feralfrenzy + xeno_cooldown = 15 SECONDS + //AOE + var/activation_delay_aoe = 1 SECONDS + var/base_damage_aoe = 15 + var/damage_scale_aoe = 10 + //SINGLE TARGET + var/activation_delay = 0.5 SECONDS var/base_damage = 25 - var/damage_scale = 10 // How much it scales by every kill + var/damage_scale = 10 + var/targeting = SINGLETARGETGUT + /// The orange used for a AOETARGETGUT + var/range = 2 + +/datum/action/xeno_action/onclick/toggle_gut_targeting + name = "Toggle Gutting Type" + action_icon_state = "gut" // starting targetting is SINGLETARGETGUT + macro_path = /datum/action/xeno_action/verb/verb_toggle_gut_targeting + action_type = XENO_ACTION_ACTIVATE + ability_primacy = XENO_PRIMARY_ACTION_5 diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_macros.dm b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_macros.dm new file mode 100644 index 000000000000..450a0ac67745 --- /dev/null +++ b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_macros.dm @@ -0,0 +1,35 @@ +/datum/action/xeno_action/verb/verb_feralfrenzy() + set category = "Alien" + set name = "Feral Frenzy" + set hidden = TRUE + var/action_name = "Feral Frenzy" + handle_xeno_macro(src, action_name) + +/datum/action/xeno_action/verb/verb_toggle_gut_targeting() + set category = "Alien" + set name = "Toggle Gutting Type" + set hidden = TRUE + var/action_name = "Toggle Gutting Type" + handle_xeno_macro(src, action_name) + + +/datum/action/xeno_action/verb/verb_feralrush() + set category = "Alien" + set name = "Feral Rush" + set hidden = TRUE + var/action_name = "Feral Rush" + handle_xeno_macro(src, action_name) + +/datum/action/xeno_action/verb/verb_predalien_roar() + set category = "Alien" + set name = "Predalien Roar" + set hidden = TRUE + var/action_name = "Roar" + handle_xeno_macro(src, action_name) + +/datum/action/xeno_action/verb/feral_smash() + set category = "Alien" + set name = "Feral Smash" + set hidden = TRUE + var/action_name = "Feral Smash" + handle_xeno_macro(src, action_name) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm index cdf0d3840084..6e6fef86a2f4 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm @@ -1,13 +1,10 @@ -/datum/action/xeno_action/activable/pounce/predalien/pre_pounce_effects() - playsound(owner, 'sound/voice/predalien_pounce.ogg', 75, 0, status = 0) - /datum/action/xeno_action/onclick/predalien_roar/use_ability(atom/target) var/mob/living/carbon/xenomorph/xeno = owner - if (!action_cooldown_check()) + if(!action_cooldown_check()) return - if (!xeno.check_state()) + if(!xeno.check_state()) return if(!check_and_use_plasma_owner()) @@ -34,124 +31,258 @@ continue new /datum/effects/xeno_buff(carbon, xeno, ttl = (0.25 SECONDS * behavior.kills + 3 SECONDS), bonus_damage = bonus_damage_scale * behavior.kills, bonus_speed = (bonus_speed_scale * behavior.kills)) - - for(var/mob/M in view(xeno)) - if(M && M.client) - shake_camera(M, 10, 1) - apply_cooldown() return ..() -/datum/action/xeno_action/onclick/smash/use_ability(atom/target) +/datum/action/xeno_action/activable/feralfrenzy/use_ability(atom/target) var/mob/living/carbon/xenomorph/xeno = owner - - if (!action_cooldown_check()) + if(!action_cooldown_check() || xeno.action_busy) + return + if(!xeno.check_state()) return - if (!xeno.check_state()) + var/datum/behavior_delegate/predalien_base/predalienbehavior = xeno.behavior_delegate + if(!istype(predalienbehavior)) return + if(targeting == AOETARGETGUT) + xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] begins digging in for a massive strike!"), SPAN_XENOHIGHDANGER("We begin digging in for a massive strike!")) + ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Eviscerate")) + xeno.anchored = TRUE + if (do_after(xeno, (activation_delay_aoe), INTERRUPT_ALL | BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE)) + xeno.emote("roar") + xeno.spin_circle() + + for (var/mob/living/carbon/carbon in orange(xeno, range)) + if(!isliving(carbon) || xeno.can_not_harm(carbon)) + continue + + if (carbon.stat == DEAD) + continue + + if(!check_clear_path_to_target(xeno, carbon)) + continue + + xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] rips open the guts of [carbon]!"), SPAN_XENOHIGHDANGER("We rip open the guts of [carbon]!")) + carbon.spawn_gibs() + xeno.animation_attack_on(carbon) + xeno.spin_circle() + xeno.flick_attack_overlay(carbon, "tail") + playsound(get_turf(carbon), 'sound/effects/gibbed.ogg', 30, 1) + carbon.apply_effect(get_xeno_stun_duration(carbon, 0.5), WEAKEN) + playsound(get_turf(carbon), "alien_claw_flesh", 30, 1) + carbon.apply_armoured_damage(get_xeno_damage_slash(carbon, base_damage_aoe + damage_scale_aoe * predalienbehavior.kills), ARMOR_MELEE, BRUTE, "chest", 20) + playsound(owner, 'sound/voice/predalien_death.ogg', 75, 0, status = 0) + REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Eviscerate")) + xeno.anchored = FALSE + apply_cooldown() + return ..() - var/datum/behavior_delegate/predalien_base/behavior = xeno.behavior_delegate - if(!istype(behavior)) + //single target checks + if(xeno.can_not_harm(target)) + to_chat(xeno, SPAN_XENOWARNING("We must target a hostile!")) return - if(!check_plasma_owner()) + if(!isliving(target)) return - if(!do_after(xeno, activation_delay, INTERRUPT_ALL, BUSY_ICON_GENERIC)) - to_chat(xeno, "Keep still whilst trying to smash into the ground") + if(get_dist_sqrd(target, xeno) > 2) + to_chat(xeno, SPAN_XENOWARNING("[target] is too far away!")) + return - var/real_cooldown = xeno_cooldown + var/mob/living/carbon/carbon = target - xeno_cooldown = 3 SECONDS + if(carbon.stat == DEAD) + to_chat(xeno, SPAN_XENOWARNING("[carbon] is dead, why would we want to touch them?")) + return + if(targeting == SINGLETARGETGUT) // single target + ADD_TRAIT(carbon, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate")) apply_cooldown() - xeno_cooldown = real_cooldown + + ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate")) + xeno.anchored = TRUE + + if(do_after(xeno, activation_delay, INTERRUPT_ALL | BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE)) + xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] rips open the guts of [carbon]!"), SPAN_XENOHIGHDANGER("We rapidly slice into [carbon]!")) + carbon.spawn_gibs() + playsound(get_turf(carbon), 'sound/effects/gibbed.ogg', 50, 1) + carbon.apply_effect(get_xeno_stun_duration(carbon, 0.5), WEAKEN) + carbon.apply_armoured_damage(get_xeno_damage_slash(carbon, base_damage + damage_scale * predalienbehavior.kills), ARMOR_MELEE, BRUTE, "chest", 20) + + xeno.animation_attack_on(carbon) + xeno.spin_circle() + xeno.flick_attack_overlay(carbon, "tail") + + playsound(owner, 'sound/voice/predalien_growl.ogg', 50, 0, status = 0) + + REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate")) + xeno.anchored = FALSE + unroot_human(carbon, TRAIT_SOURCE_ABILITY("Devastate")) + + return ..() + + +/datum/action/xeno_action/onclick/feralrush/use_ability(atom/A) + var/mob/living/carbon/xenomorph/predatoralien = owner + + if(!action_cooldown_check()) + return + + if(!istype(predatoralien) || !predatoralien.check_state()) + return + + if(armor_buff && speed_buff) + to_chat(predatoralien, SPAN_XENOHIGHDANGER("We cannot stack this!")) return if(!check_and_use_plasma_owner()) return - playsound(xeno.loc, pick(smash_sounds), 50, 0, status = 0) - xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] smashes into the ground!")) - xeno.create_stomp() + addtimer(CALLBACK(src, PROC_REF(remove_rush_effects)), speed_duration) + addtimer(CALLBACK(src, PROC_REF(remove_armor_effects)), armor_duration) // calculate armor and speed differently, so it's a bit more armored while trying to get out + predatoralien.add_filter("predalien_toughen", 1, list("type" = "outline", "color" = "#421313", "size" = 1)) + to_chat(predatoralien, SPAN_XENOWARNING("We feel our muscles tense as our speed and armor increase!")) + speed_buff = TRUE + armor_buff = TRUE + predatoralien.speed_modifier -= speed_buff_amount + predatoralien.armor_modifier += armor_buff_amount + predatoralien.recalculate_speed() + predatoralien.recalculate_armor() + playsound(predatoralien, 'sound/voice/predalien_growl.ogg', 75, 0, status = 0) + apply_cooldown() - for(var/mob/living/carbon/carbon in oview(round(behavior.kills * 0.5 + 2), xeno)) - if(!xeno.can_not_harm(carbon) && carbon.stat != DEAD) - ADD_TRAIT(carbon, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Smash")) - if (ishuman(carbon)) - var/mob/living/carbon/human/human = carbon - human.update_xeno_hostile_hud() +/datum/action/xeno_action/onclick/feralrush/proc/remove_rush_effects() + SIGNAL_HANDLER + var/mob/living/carbon/xenomorph/predatoralien = owner + if(speed_buff == TRUE) + to_chat(predatoralien, SPAN_XENOWARNING("Our muscles relax as we feel our speed wane.")) + predatoralien.remove_filter("predalien_toughen") + predatoralien.speed_modifier += speed_buff_amount + predatoralien.recalculate_speed() + speed_buff = FALSE - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(unroot_human), carbon, TRAIT_SOURCE_ABILITY("Smash")), get_xeno_stun_duration(carbon, freeze_duration)) +/datum/action/xeno_action/onclick/feralrush/proc/remove_armor_effects() + SIGNAL_HANDLER + var/mob/living/carbon/xenomorph/predatoralien = owner + if(armor_buff) + to_chat(predatoralien, SPAN_XENOWARNING("We are no longer armored.")) + predatoralien.armor_modifier -= armor_buff_amount + predatoralien.recalculate_armor() + armor_buff = FALSE - for(var/mob/M in view(xeno)) - if(M && M.client) - shake_camera(M, 0.2 SECONDS, 1) - apply_cooldown() - return ..() +/datum/action/xeno_action/onclick/toggle_gut_targeting/use_ability(atom/A) -/datum/action/xeno_action/activable/devastate/use_ability(atom/target) var/mob/living/carbon/xenomorph/xeno = owner + var/action_icon_result - if (!action_cooldown_check()) + if(!xeno.check_state()) return - if (!xeno.check_state()) + var/datum/action/xeno_action/activable/feralfrenzy/guttype = get_xeno_action_by_type(xeno, /datum/action/xeno_action/activable/feralfrenzy) + if(!guttype) return - if (!isxeno_human(target) || xeno.can_not_harm(target)) - to_chat(xeno, SPAN_XENOWARNING("We must target a hostile!")) - return + if(guttype.targeting == SINGLETARGETGUT) + action_icon_result = "rav_scissor_cut" + guttype.targeting = AOETARGETGUT + to_chat(xeno, SPAN_XENOWARNING("We will now attack everyone around us during a Feral Frenzy.")) + else + action_icon_result = "gut" + guttype.targeting = SINGLETARGETGUT + to_chat(xeno, SPAN_XENOWARNING("We will now focus our Feral Frenzy on one person!")) + + button.overlays.Cut() + button.overlays += image('icons/mob/hud/actions_xeno.dmi', button, action_icon_result) + return ..() - if (get_dist_sqrd(target, xeno) > 2) - to_chat(xeno, SPAN_XENOWARNING("[target] is too far away!")) - return +/datum/action/xeno_action/activable/feral_smash/use_ability(atom/affected_atom) + var/mob/living/carbon/xenomorph/predalien_smash = owner + var/datum/behavior_delegate/predalien_base/predalienbehavior = predalien_smash.behavior_delegate - var/mob/living/carbon/carbon = target + if(!action_cooldown_check()) + if(twitch_message_cooldown < world.time ) + predalien_smash.visible_message(SPAN_XENOWARNING("[predalien_smash]'s muscles twitch."), SPAN_XENOWARNING("Our claws twitch as we try to grab onto the target but lack the strength. Wait a moment to try again.")) + twitch_message_cooldown = world.time + 5 SECONDS + return //this gives a little feedback on why your lunge didn't hit other than the lunge button going grey. Plus, it might spook marines that almost got lunged if they know why the message appeared, and extra spookiness is always good. - if (carbon.stat == DEAD) - to_chat(xeno, SPAN_XENOWARNING("[carbon] is dead, why would we want to touch them?")) + if(!affected_atom) return - var/datum/behavior_delegate/predalien_base/behavior = xeno.behavior_delegate - if(!istype(behavior)) + if(!isturf(predalien_smash.loc)) + to_chat(predalien_smash, SPAN_XENOWARNING("We can't lunge from here!")) return - if (!check_and_use_plasma_owner()) + if(!predalien_smash.check_state() || predalien_smash.agility) return - ADD_TRAIT(carbon, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate")) - - if (ishuman(carbon)) - var/mob/living/carbon/human/human = carbon - human.update_xeno_hostile_hud() - - apply_cooldown() - - ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate")) - xeno.anchored = TRUE + if(predalien_smash.can_not_harm(affected_atom) || !ismob(affected_atom)) + apply_cooldown_override(click_miss_cooldown) + return - if (do_after(xeno, activation_delay, INTERRUPT_ALL | BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE)) - xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] rips open the guts of [carbon]!"), SPAN_XENOHIGHDANGER("We rip open the guts of [carbon]!")) - carbon.spawn_gibs() - playsound(get_turf(carbon), 'sound/effects/gibbed.ogg', 75, 1) - carbon.apply_effect(get_xeno_stun_duration(carbon, 0.5), WEAKEN) - carbon.apply_armoured_damage(get_xeno_damage_slash(carbon, base_damage + damage_scale * behavior.kills), ARMOR_MELEE, BRUTE, "chest", 20) - xeno.animation_attack_on(carbon) - xeno.spin_circle() - xeno.flick_attack_overlay(carbon, "tail") + var/mob/living/carbon/carbon = affected_atom + if(carbon.stat == DEAD) + return - playsound(owner, 'sound/voice/predalien_growl.ogg', 75, 0, status = 0) + if(!isliving(affected_atom)) + return - REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate")) - xeno.anchored = FALSE - unroot_human(carbon, TRAIT_SOURCE_ABILITY("Devastate")) + if(!check_and_use_plasma_owner()) + return - xeno.visible_message(SPAN_XENODANGER("[xeno] rapidly slices into [carbon]!")) + apply_cooldown() + predalien_smash.throw_atom(get_step_towards(affected_atom, predalien_smash), grab_range, SPEED_FAST, predalien_smash) + + if(predalien_smash.Adjacent(carbon) && predalien_smash.start_pulling(carbon, TRUE)) + playsound(carbon.pulledby, 'sound/voice/predalien_growl.ogg', 75, 0, status = 0) // bang and roar for dramatic effect + playsound(carbon, 'sound/effects/bang.ogg', 25, 0) + animate(carbon, pixel_y = carbon.pixel_y + 32, time = 4, easing = SINE_EASING) + sleep(4) + playsound(carbon, 'sound/effects/bang.ogg', 25, 0) + playsound(carbon,"slam", 50, 1) + animate(carbon, pixel_y = 0, time = 4, easing = BOUNCE_EASING) //animates the smash + carbon.apply_armoured_damage(get_xeno_damage_slash(carbon, smash_damage + smash_scale * predalienbehavior.kills), ARMOR_MELEE, BRUTE, "chest", 20) + else + predalien_smash.visible_message(SPAN_XENOWARNING("[predalien_smash]'s claws twitch."), SPAN_XENOWARNING("We couldn't grab our target. Wait a moment to try again.")) + + return TRUE + +/mob/living/carbon/xenomorph/predalien/stop_pulling() + if(isliving(pulling) && smashing) + smashing = FALSE // To avoid extreme cases of stopping a lunge then quickly pulling and stopping to pull someone else + var/mob/living/smashed = pulling + smashed.set_effect(0, STUN) + smashed.set_effect(0, WEAKEN) return ..() + +/mob/living/carbon/xenomorph/predalien/start_pulling(atom/movable/movable_atom, feral_smash) + if(!check_state()) + return FALSE + + if(!isliving(movable_atom)) + return FALSE + var/mob/living/living_mob = movable_atom + var/should_neckgrab = !(src.can_not_harm(living_mob)) && feral_smash + + + . = ..(living_mob, feral_smash, should_neckgrab) + + if(.) //successful pull + if(isxeno(living_mob)) + var/mob/living/carbon/xenomorph/xeno = living_mob + if(xeno.tier >= 2) // Tier 2 castes or higher immune to warrior grab stuns + return + + if(should_neckgrab && living_mob.mob_size < MOB_SIZE_BIG) + visible_message(SPAN_XENOWARNING("[src] grabs [living_mob] by the back of their leg and slams them onto the ground!"), \ + SPAN_XENOWARNING("We grab [living_mob] by the back of their leg and slam them onto the ground!")) // more flair + smashing = TRUE + living_mob.drop_held_items() + var/duration = get_xeno_stun_duration(living_mob, 1) + living_mob.KnockDown(duration) + living_mob.Stun(duration) + addtimer(VARSET_CALLBACK(src, smashing, FALSE), duration) diff --git a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm index 2aefff19c684..9f42f8ae8928 100644 --- a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm +++ b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm @@ -911,7 +911,7 @@ return XENO_ATTACK_ACTION /obj/structure/girder/attack_alien(mob/living/carbon/xenomorph/M) - if((M.caste && M.caste.tier < 2 && !isqueen(M)) || unacidable) + if((M.caste && M.caste.tier < 2 && M.claw_type < CLAW_TYPE_VERY_SHARP) || unacidable) to_chat(M, SPAN_WARNING("Our claws aren't sharp enough to damage [src].")) return XENO_NO_DELAY_ACTION M.animation_attack_on(src) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm b/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm index ebae6f56830f..841675234e63 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm @@ -6,8 +6,7 @@ melee_damage_upper = XENO_DAMAGE_TIER_5 melee_vehicle_damage = XENO_DAMAGE_TIER_5 max_health = XENO_HEALTH_TIER_9 - plasma_gain = XENO_PLASMA_GAIN_TIER_9 - plasma_max = XENO_PLASMA_TIER_3 + plasma_max = XENO_NO_PLASMA xeno_explosion_resistance = XENO_EXPLOSIVE_ARMOR_TIER_10 armor_deflection = XENO_ARMOR_TIER_3 evasion = XENO_EVASION_NONE @@ -41,6 +40,7 @@ speaking_noise = 'sound/voice/predalien_click.ogg' plasma_types = list(PLASMA_CATECHOLAMINE) faction = FACTION_PREDALIEN + claw_type = CLAW_TYPE_VERY_SHARP wall_smash = TRUE hardcore = FALSE pixel_x = -16 @@ -56,18 +56,19 @@ /datum/action/xeno_action/onclick/regurgitate, /datum/action/xeno_action/watch_xeno, /datum/action/xeno_action/activable/tail_stab, - /datum/action/xeno_action/activable/pounce/predalien, + /datum/action/xeno_action/onclick/feralrush, /datum/action/xeno_action/onclick/predalien_roar, - /datum/action/xeno_action/onclick/smash, - /datum/action/xeno_action/activable/devastate, + /datum/action/xeno_action/activable/feral_smash, + /datum/action/xeno_action/activable/feralfrenzy, + /datum/action/xeno_action/onclick/toggle_gut_targeting, /datum/action/xeno_action/onclick/tacmap, ) weed_food_icon = 'icons/mob/xenos/weeds_64x64.dmi' weed_food_states = list("Predalien_1","Predalien_2","Predalien_3") weed_food_states_flipped = list("Predalien_1","Predalien_2","Predalien_3") + var/smashing = FALSE - var/butcher_time = 6 SECONDS /mob/living/carbon/xenomorph/predalien/Initialize(mapload, mob/living/carbon/xenomorph/oldxeno, h_number) @@ -86,15 +87,20 @@ to_chat(src, {" |______________________| -You are a predator-alien hybrid! -You are a very powerful xenomorph creature that was born of a Yautja warrior body. -You are stronger, faster, and smarter than a regular xenomorph, but you must still listen to the queen. -You have a degree of freedom to where you can hunt and claim the heads of the hive's enemies, so check your verbs. -Your health meter will not regenerate normally, so kill and die for the hive! +You are a yautja-alien hybrid! +You are a xenomorph born from the body of your natural enemy, you are considered an abomination to all of the yautja race and they will do WHATEVER it takes to kill you. +However, being born from one you also harbor their intelligence and strength. You are built to be able to take them on but that does not mean you are invincible. Stay with your hive and overwhelm them with your numbers. Your sisters have sacrificed a lot for you; Do not just wander off and die. +You must still listen to the queen. + |______________________| "}) emote("roar") + +/mob/living/carbon/xenomorph/predalien/resist_fire() + ..() + SetKnockDown(0.1 SECONDS) + /datum/behavior_delegate/predalien_base name = "Base Predalien Behavior Delegate" @@ -118,53 +124,11 @@ Your health meter will not regenerate normally, so kill and die for the hive!
Date: Thu, 22 Feb 2024 09:27:12 +0000 Subject: [PATCH 065/148] Automatic changelog for PR #5432 [ci skip] --- html/changelogs/AutoChangeLog-pr-5432.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5432.yml diff --git a/html/changelogs/AutoChangeLog-pr-5432.yml b/html/changelogs/AutoChangeLog-pr-5432.yml new file mode 100644 index 000000000000..73d5a2476ff2 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5432.yml @@ -0,0 +1,16 @@ +author: "InsaneRed" +delete-after: True +changes: + - rscadd: "Added a new ability to the predalien \"Feral Rush\" that increases it's armor and speed for a short duration." + - rscadd: "Added two new abilities to the predalien \"Feral Frenzy\" and a toggle. The predalien can now switch between a single target GUT and an AOE one, both of which has damage that scale with your kills." + - rscdel: "Removed the predaliens gib ability" + - rscdel: "Removed the predaliens \"pounce\" ability" + - rscdel: "Removed the predaliens \"Ground Smash\" ability" + - balance: "Predalien no longer has plasma costs, or plasma." + - balance: "The Plasma Rifle, which is ONLY used to hunt abominations now has a higher ROF and has incin bullets." + - spellcheck: "Re-wrote the predalien text to be more up to date and remove missinformation" + - qol: "Everyone can see how many kills the predalien has by examining it." + - rscadd: "Added a \"Feral Smash\" ability that lets you grab somebody and smash them to the ground, this scales with kills and is a devastating attack." + - balance: "Removed screenshake from predalien's screech" + - balance: "Predalien removes fire stacks faster." + - bugfix: "Girders are now slashable by very_sharp_claws instead of just having a queen chack" \ No newline at end of file From 1675e4eeb90fd4051de60688c6d6c5e24dec555b Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Thu, 22 Feb 2024 10:05:18 +0000 Subject: [PATCH 066/148] Fixes xeno tacklestrength (#5773) # About the pull request Fixes #5765. This was caused by me in #5542 deleting a couple of lines from `/mob/living/carbon/xenomorph/proc/recalculate_tackle()`, when I should have only removed the `mutators`/`hive.mutators` part. ![image](https://github.com/cmss13-devs/cmss13/assets/57483089/b54a3e03-03cd-49a3-a093-ab0765059a7b) # Explain why it's good for the game Whoops # Testing Photographs and Procedure
Screenshots & Videos `tacklestrength_min` and `tacklestrength_max` are being applied correctly: ![image](https://github.com/cmss13-devs/cmss13/assets/57483089/8404ddf3-17e0-42a5-a3cf-91a85beb1e50)
# Changelog :cl: fix: Fixed Xenomorphs not having their caste's tackle duration values applied to them. /:cl: --- code/modules/mob/living/carbon/xenomorph/Xenomorph.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm index c8d3df91c975..03ba544be6b8 100644 --- a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm +++ b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm @@ -839,6 +839,8 @@ tackle_min = caste.tackle_min tackle_max = caste.tackle_max tackle_chance = caste.tackle_chance + tackle_chance_modifier + tacklestrength_min = caste.tacklestrength_min + tacklestrength_max = caste.tacklestrength_max /mob/living/carbon/xenomorph/proc/recalculate_health() var/new_max_health = nocrit ? health_modifier + maxHealth : health_modifier + caste.max_health From 1e7703b5d2072129b3c7a4e076d289f3a6893a7c Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Thu, 22 Feb 2024 10:14:28 +0000 Subject: [PATCH 067/148] Automatic changelog for PR #5773 [ci skip] --- html/changelogs/AutoChangeLog-pr-5773.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5773.yml diff --git a/html/changelogs/AutoChangeLog-pr-5773.yml b/html/changelogs/AutoChangeLog-pr-5773.yml new file mode 100644 index 000000000000..702fda68396b --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5773.yml @@ -0,0 +1,4 @@ +author: "SabreML" +delete-after: True +changes: + - bugfix: "Fixed Xenomorphs not having their caste's tackle duration values applied to them." \ No newline at end of file From d72106f7735d71b1a90c817f7c6edc60b664c284 Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Thu, 22 Feb 2024 10:16:11 +0000 Subject: [PATCH 068/148] TGUI input list search fix (#5775) # About the pull request Fixes the search function of `tgui_input_list`, and also makes the search bar automatically focus when toggled. This was caused by the same issue as #5581. # Explain why it's good for the game Bugfix, and a little QOL thing. # Testing Photographs and Procedure
Screenshots & Videos ('Teleport to Area' menu as an example, but it's the same on any others.) **Before:** https://github.com/cmss13-devs/cmss13/assets/57483089/8450adef-38f4-4ae4-963a-11533a328841 **After:** https://github.com/cmss13-devs/cmss13/assets/57483089/ede80ffa-7ce6-47c9-9711-a5f29560d1bd
# Changelog :cl: fix: Fixed the search function of TGUI input lists. qol: Made the TGUI input list search bar automatically focus when toggled. /:cl: --- tgui/packages/tgui/interfaces/ListInput.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tgui/packages/tgui/interfaces/ListInput.jsx b/tgui/packages/tgui/interfaces/ListInput.jsx index 2ed72bcc63bf..324e1f6b64fe 100644 --- a/tgui/packages/tgui/interfaces/ListInput.jsx +++ b/tgui/packages/tgui/interfaces/ListInput.jsx @@ -123,9 +123,9 @@ export const ListInput = (props) => { }} /> }> - {displayedArray.map((button) => ( + {displayedArray.map((button, i) => ( ); }; diff --git a/tgui/packages/tgui/components/Button.jsx b/tgui/packages/tgui/components/Button.jsx index 4264b0767115..dbffb6a72c95 100644 --- a/tgui/packages/tgui/components/Button.jsx +++ b/tgui/packages/tgui/components/Button.jsx @@ -172,6 +172,9 @@ export class ButtonConfirm extends Component { } else { window.removeEventListener('click', this.handleClick); } + if (this.props.onConfirmChange) { + this.props.onConfirmChange(clickedOnce); + } } render() { @@ -183,6 +186,7 @@ export class ButtonConfirm extends Component { color, content, onClick, + onConfirmChange, ...rest } = this.props; return ( diff --git a/tgui/packages/tgui/interfaces/PingRelaysPanel.jsx b/tgui/packages/tgui/interfaces/PingRelaysPanel.jsx new file mode 100644 index 000000000000..7b6c3016504e --- /dev/null +++ b/tgui/packages/tgui/interfaces/PingRelaysPanel.jsx @@ -0,0 +1,175 @@ +import { useBackend } from '../backend'; +import { round } from 'common/math'; +import { Box, Stack, Button, Icon, RoundGauge, Flex } from '../components'; +import { Window } from '../layouts'; +import { Color } from 'common/color'; +import { Ping } from 'common/ping'; +import { Component } from 'react'; + +const RED = new Color(220, 40, 40); + +export class PingResult { + constructor(desc = 'Loading...', url = '', ping = -1) { + this.desc = desc; + this.url = url; + this.ping = ping; + this.error = null; + } + + update = function (desc, url, ping, error) { + this.desc = desc; + this.url = url; + this.ping = ping; + this.error = error; + }; +} + +class PingApp extends Component { + constructor() { + super(); + + this.pinger = new Ping(); + this.results = new Array(); + this.state = { + currentIndex: 0, + lastClickedIndex: 0, + lastClickedState: false, + }; + } + + startTest(desc, pingURL, connectURL) { + this.pinger.ping('http://' + pingURL, (error, pong) => { + this.results[this.state.currentIndex]?.update( + desc, + 'byond://' + connectURL, + round(pong * 0.75), // The ping is inflated so lets compensate a bit + error + ); + this.setState((prevState) => ({ + currentIndex: prevState.currentIndex + 1, + })); + }); + } + + handleConfirmChange(index, newState) { + if (newState || this.state.lastClickedIndex === index) { + this.setState({ lastClickedIndex: index }); + this.setState({ lastClickedState: newState }); + } + } + + componentDidMount() { + this.setState({ currentIndex: 0 }); + for (let i = 0; i < this.props.relayNames.length; i++) { + this.results.push(new PingResult()); + this.startTest( + this.props.relayNames[i], + this.props.relayPings[i], + this.props.relayCons[i] + ); + } + } + + componentWillUnmount() { + this.pinger.cancel(); + } + + render() { + const { act } = useBackend(); + + return ( + + {this.results.map((result, i) => ( + + + this.handleConfirmChange(i, clickedOnce) + } + onClick={() => + act('connect', { url: result.url, desc: result.desc }) + }> + {result.ping <= -1 && result.error === null && ( + + + + + + {result.desc} + + + + )} + {result.ping > -1 && result.error === null && ( + + + + + + + {this.state.lastClickedIndex === i && + this.state.lastClickedState + ? 'Connect via ' + result.desc + '?' + : result.desc} + + + + x + 'ms'} + inline + /> + + + )} + {result.error !== null && ( + + + + + + {result.desc} + + + + {' (' + result.error + ')'} + + + + )} + + + ))} + + ); + } +} + +export const PingRelaysPanel = () => { + const { data } = useBackend(); + const { relay_names, relay_pings, relay_cons } = data; + + return ( + + + + + + ); +}; From 159bc598426d8fc304d2826a633afd46f56cfada Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Sat, 24 Feb 2024 10:10:27 +0000 Subject: [PATCH 104/148] Automatic changelog for PR #5777 [ci skip] --- html/changelogs/AutoChangeLog-pr-5777.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5777.yml diff --git a/html/changelogs/AutoChangeLog-pr-5777.yml b/html/changelogs/AutoChangeLog-pr-5777.yml new file mode 100644 index 000000000000..fa3c5b3cbc0e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5777.yml @@ -0,0 +1,6 @@ +author: "Drathek" +delete-after: True +changes: + - ui: "Added the relay ping browser accessed by the tgchat ping to test and use alternative connections to the server" + - ui: "Added onConfirmChange prop to Button.Confirm component." + - config: "Added CONNECTION_RELAY_PING and CONNECTION_RELAY_CON in the relays.txt config that is optionally included in config.txt" \ No newline at end of file From 747b74de4d343d0465f2e01c3404771f2b8988e2 Mon Sep 17 00:00:00 2001 From: Julian56 <117036822+Huffie56@users.noreply.github.com> Date: Sat, 24 Feb 2024 21:20:07 +0100 Subject: [PATCH 105/148] Refactor marine_armor.dm and split it into multiples files. (#5740) # About the pull request 1-Refactor the marine_armor.dm file by splitting them into multiples files. 2-in marine_armor.dm i also remove a serie of duplicate declaration of the same items. # Explain why it's good for the game # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: refactor: refactor marine_armor.dm and split it into multiples files. /:cl: --------- Co-authored-by: Julien Co-authored-by: SabreML <57483089+SabreML@users.noreply.github.com> --- code/modules/clothing/suits/marine_armor.dm | 2008 ----------------- .../suits/marine_armor/_marine_armor.dm | 669 ++++++ .../clothing/suits/marine_armor/ert.dm | 822 +++++++ .../clothing/suits/marine_armor/ghillie.dm | 162 ++ .../clothing/suits/marine_armor/intel.dm | 118 + .../suits/marine_armor/smartgunner.dm | 60 + .../clothing/suits/marine_armor/spec_fire.dm | 150 ++ colonialmarines.dme | 7 +- 8 files changed, 1987 insertions(+), 2009 deletions(-) delete mode 100644 code/modules/clothing/suits/marine_armor.dm create mode 100644 code/modules/clothing/suits/marine_armor/_marine_armor.dm create mode 100644 code/modules/clothing/suits/marine_armor/ert.dm create mode 100644 code/modules/clothing/suits/marine_armor/ghillie.dm create mode 100644 code/modules/clothing/suits/marine_armor/intel.dm create mode 100644 code/modules/clothing/suits/marine_armor/smartgunner.dm create mode 100644 code/modules/clothing/suits/marine_armor/spec_fire.dm diff --git a/code/modules/clothing/suits/marine_armor.dm b/code/modules/clothing/suits/marine_armor.dm deleted file mode 100644 index bc29b0a33570..000000000000 --- a/code/modules/clothing/suits/marine_armor.dm +++ /dev/null @@ -1,2008 +0,0 @@ -#define DEBUG_ARMOR_PROTECTION 0 - -#if DEBUG_ARMOR_PROTECTION -/mob/living/carbon/human/verb/check_overall_protection() - set name = "Get Armor Value" - set category = "Debug" - set desc = "Shows the armor value of the bullet category." - - var/armor = 0 - var/counter = 0 - for(var/X in H.limbs) - var/obj/limb/E = X - armor = getarmor_organ(E, ARMOR_BULLET) - to_chat(src, SPAN_DEBUG("[E.name] is protected with [armor] armor against bullets.")) - counter += armor - to_chat(src, SPAN_DEBUG("The overall armor score is: [counter].")) -#endif - -//=======================================================================\\ -//=======================================================================\\ - -#define ALPHA 1 -#define BRAVO 2 -#define CHARLIE 3 -#define DELTA 4 -#define ECHO 5 -#define CRYO 6 -#define SOF 7 -#define NOSQUAD 8 - -// MARINE STORAGE ARMOR - -/obj/item/clothing/suit/storage/marine - name = "\improper M3 pattern marine armor" - desc = "A standard Colonial Marines M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." - icon = 'icons/obj/items/clothing/cm_suits.dmi' - icon_state = "1" - item_state = "marine_armor" //Make unique states for Officer & Intel armors. - item_icons = list( - WEAR_JACKET = 'icons/mob/humans/onmob/suit_1.dmi' - ) - flags_atom = FPRINT|CONDUCT - flags_inventory = BLOCKSHARPOBJ - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - min_cold_protection_temperature = HELMET_MIN_COLD_PROT - max_heat_protection_temperature = HELMET_MAX_HEAT_PROT - blood_overlay_type = "armor" - armor_melee = CLOTHING_ARMOR_MEDIUM - armor_bullet = CLOTHING_ARMOR_MEDIUM - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_NONE - armor_bomb = CLOTHING_ARMOR_MEDIUMLOW - armor_bio = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_MEDIUM - movement_compensation = SLOWDOWN_ARMOR_LIGHT - storage_slots = 3 - siemens_coefficient = 0.7 - slowdown = SLOWDOWN_ARMOR_MEDIUM - allowed = list( - /obj/item/weapon/gun, - /obj/item/prop/prop_gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/storage/bible, - /obj/item/attachable/bayonet, - /obj/item/storage/backpack/general_belt, - /obj/item/storage/large_holster/machete, - /obj/item/storage/belt/gun/type47, - /obj/item/storage/belt/gun/m4a3, - /obj/item/storage/belt/gun/m44, - /obj/item/storage/belt/gun/smartpistol, - /obj/item/storage/belt/gun/flaregun, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - /obj/item/storage/belt/gun/m39, - /obj/item/storage/belt/gun/xm51, - ) - valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_PONCHO) - - light_power = 3 - light_range = 4 - light_system = MOVABLE_LIGHT - - var/flashlight_cooldown = 0 //Cooldown for toggling the light - var/locate_cooldown = 0 //Cooldown for SL locator - var/armor_overlays[] - actions_types = list(/datum/action/item_action/toggle) - var/flags_marine_armor = ARMOR_SQUAD_OVERLAY|ARMOR_LAMP_OVERLAY - var/specialty = "M3 pattern marine" //Same thing here. Give them a specialty so that they show up correctly in vendors. speciality does NOTHING if you have NO_NAME_OVERRIDE - w_class = SIZE_HUGE - uniform_restricted = list(/obj/item/clothing/under/marine) - sprite_sheets = list(SPECIES_MONKEY = 'icons/mob/humans/species/monkeys/onmob/suit_monkey_1.dmi') - time_to_unequip = 20 - time_to_equip = 20 - pickup_sound = "armorequip" - drop_sound = "armorequip" - equip_sounds = list('sound/handling/putting_on_armor1.ogg') - var/armor_variation = 0 - /// The dmi where the grayscale squad overlays are contained - var/squad_overlay_icon = 'icons/mob/humans/onmob/suit_1.dmi' - - var/atom/movable/marine_light/light_holder - -/obj/item/clothing/suit/storage/marine/Initialize(mapload) - . = ..() - if(!(flags_atom & NO_NAME_OVERRIDE)) - name = "[specialty]" - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - name += " snow armor" //Leave marine out so that armors don't have to have "Marine" appended (see: generals). - else - name += " armor" - - if(!(flags_atom & NO_SNOW_TYPE)) - select_gamemode_skin(type) - armor_overlays = list("lamp") //Just one for now, can add more later. - if(armor_variation && mapload) - set_armor_style("Random") - update_icon() - pockets.max_w_class = SIZE_SMALL //Can contain small items AND rifle magazines. - pockets.bypass_w_limit = list( - /obj/item/ammo_magazine/rifle, - /obj/item/ammo_magazine/smg, - /obj/item/ammo_magazine/sniper, - ) - pockets.max_storage_space = 8 - - light_holder = new(src) - -/obj/item/clothing/suit/storage/marine/Destroy() - QDEL_NULL(light_holder) - return ..() - -/obj/item/clothing/suit/storage/marine/update_icon(mob/user) - var/image/I - armor_overlays["lamp"] = null - if(flags_marine_armor & ARMOR_LAMP_OVERLAY) - if(flags_marine_armor & ARMOR_LAMP_ON) - I = image('icons/obj/items/clothing/cm_suits.dmi', src, "lamp-on") - else - I = image('icons/obj/items/clothing/cm_suits.dmi', src, "lamp-off") - armor_overlays["lamp"] = I - overlays += I - else armor_overlays["lamp"] = null - if(user) user.update_inv_wear_suit() - - -/obj/item/clothing/suit/storage/marine/post_vendor_spawn_hook(mob/living/carbon/human/user) //used for randomizing/selecting a variant for armors. - if(!armor_variation) - return - - if(user?.client?.prefs) - // Set the armor style to the user's preference. - set_armor_style(user.client.prefs.preferred_armor) - else - // Or if that isn't possible, just pick a random one. - set_armor_style("Random") - update_icon(user) - -/obj/item/clothing/suit/storage/marine/attack_self(mob/user) - ..() - - if(!isturf(user.loc)) - to_chat(user, SPAN_WARNING("You cannot turn the light [light_on ? "off" : "on"] while in [user.loc].")) //To prevent some lighting anomalies. - return - - if(flashlight_cooldown > world.time) - return - if(!ishuman(user)) - return - - var/mob/living/carbon/human/H = user - if(H.wear_suit != src) - return - - turn_light(user, !light_on) - -/obj/item/clothing/suit/storage/marine/item_action_slot_check(mob/user, slot) - if(!ishuman(user)) - return FALSE - if(slot != WEAR_JACKET) - return FALSE - return TRUE //only give action button when armor is worn. - -/obj/item/clothing/suit/storage/marine/turn_light(mob/user, toggle_on) - . = ..() - if(. != CHECKS_PASSED) - return - set_light_range(initial(light_range)) - set_light_power(Floor(initial(light_power) * 0.5)) - set_light_on(toggle_on) - flags_marine_armor ^= ARMOR_LAMP_ON - - light_holder.set_light_flags(LIGHT_ATTACHED) - light_holder.set_light_range(initial(light_range)) - light_holder.set_light_power(initial(light_power)) - light_holder.set_light_on(toggle_on) - - if(!toggle_on) - playsound(src, 'sound/handling/click_2.ogg', 50, 1) - - playsound(src, 'sound/handling/suitlight_on.ogg', 50, 1) - update_icon(user) - - for(var/X in actions) - var/datum/action/A = X - A.update_button_icon() - -/obj/item/clothing/suit/storage/marine/mob_can_equip(mob/living/carbon/human/M, slot, disable_warning = 0) - . = ..() - if (.) - if(issynth(M) && M.allow_gun_usage == FALSE && !(flags_marine_armor & SYNTH_ALLOWED)) - M.visible_message(SPAN_DANGER("Your programming prevents you from wearing this!")) - return 0 - -/** - * Updates the armor's `icon_state` to the style represented by `new_style`. - * - * Arguments: - * * new_style - The new armor style. May only be one of `GLOB.armor_style_list`'s keys, or `"Random"`. - */ -/obj/item/clothing/suit/storage/marine/proc/set_armor_style(new_style) - // Regex to match one or more digits. - var/static/regex/digits = new("\\d+") - // Integer for the new armor style's `icon_state`. - var/new_look - - if(new_style == "Random") - // The style icon states are all numbers between 1 and `armor_variation`, so this picks a random one. - new_look = rand(1, armor_variation) - else - new_look = GLOB.armor_style_list[new_style] - - // Replace the digits in the current icon state with `new_look`. (E.g. "L6" -> "L2") - icon_state = digits.Replace(icon_state, new_look) - -/obj/item/clothing/suit/storage/marine/medium/padded - name = "M3 pattern padded marine armor" - icon_state = "1" - specialty = "M3 pattern padded marine" - -/obj/item/clothing/suit/storage/marine/medium/padless - name = "M3 pattern padless marine armor" - icon_state = "2" - specialty = "M3 pattern padless marine" - -/obj/item/clothing/suit/storage/marine/medium/padless_lines - name = "M3 pattern ridged marine armor" - icon_state = "3" - specialty = "M3 pattern ridged marine" - -/obj/item/clothing/suit/storage/marine/medium/carrier - name = "M3 pattern carrier marine armor" - icon_state = "4" - specialty = "M3 pattern carrier marine" - -/obj/item/clothing/suit/storage/marine/medium/skull - name = "M3 pattern skull marine armor" - icon_state = "5" - specialty = "M3 pattern skull marine" - -/obj/item/clothing/suit/storage/marine/medium/smooth - name = "M3 pattern smooth marine armor" - icon_state = "6" - specialty = "M3 pattern smooth marine" - -/obj/item/clothing/suit/storage/marine/medium/rto - icon_state = "io" - armor_variation = 0 - name = "\improper M4 pattern marine armor" - desc = "A well tinkered and crafted hybrid of Smart-Gunner mesh and M3 pattern plates. Robust, yet nimble, with room for all your pouches." - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - armor_rad = CLOTHING_ARMOR_MEDIUM - storage_slots = 4 - light_range = 5 //slightly higher - specialty = "M4 pattern marine" - -/obj/item/clothing/suit/storage/marine/medium/rto/intel - name = "\improper XM4 pattern intelligence officer armor" - uniform_restricted = list(/obj/item/clothing/under/marine/officer/intel) - specialty = "XM4 pattern intel" - desc = "Tougher than steel, quieter than whispers, the XM4 Intel Armor provides capable protection combined with an experimental integrated motion tracker. It took an R&D team a weekend to develop and costs more than the Chinook Station... probably. When worn, uniform accessories such as webbing cannot be attached due to the motion sensors occupying the clips." - desc_lore = "ARMAT Perfection. The XM4 Soldier Awareness System mixes M4-style hard armor and a distributed series of motion sensors clipped onto the breastplate. When connected to any HUD optic, it replicates the effects of an M314 Motion Detector unit, increasing user situational awareness. It is currently undergoing field trials by intelligence operatives." - storage_slots = 5 - /// XM4 Integral Motion Detector Ability - actions_types = list(/datum/action/item_action/toggle, /datum/action/item_action/intel/toggle_motion_detector) - var/motion_detector = FALSE - var/obj/item/device/motiondetector/xm4/proximity - var/long_range_cooldown = 2 - var/recycletime = 120 - -/obj/item/clothing/suit/storage/marine/medium/rto/intel/Initialize(mapload, ...) - . = ..() - proximity = new(src) - update_icon() - -/datum/action/item_action/intel/action_activate() - if(!ishuman(owner)) - return - -/datum/action/item_action/intel/update_button_icon() - return - -/datum/action/item_action/intel/toggle_motion_detector/New(Target, obj/item/holder) - . = ..() - name = "Toggle Motion Detector" - action_icon_state = "motion_detector" - button.name = name - button.overlays.Cut() - button.overlays += image('icons/mob/hud/actions.dmi', button, action_icon_state) - -/datum/action/item_action/intel/toggle_motion_detector/action_activate() - . = ..() - var/obj/item/clothing/suit/storage/marine/medium/rto/intel/recon = holder_item - recon.toggle_motion_detector(owner) - -/datum/action/item_action/intel/toggle_motion_detector/proc/update_icon() - if(!holder_item) - return - var/obj/item/clothing/suit/storage/marine/medium/rto/intel/recon = holder_item - if(recon.motion_detector) - button.icon_state = "template_on" - else - button.icon_state = "template" - -/obj/item/clothing/suit/storage/marine/medium/rto/intel/process() - if(!motion_detector) - STOP_PROCESSING(SSobj, src) - if(motion_detector) - recycletime-- - if(!recycletime) - recycletime = initial(recycletime) - proximity.refresh_blip_pool() - long_range_cooldown-- - if(long_range_cooldown) - return - long_range_cooldown = initial(long_range_cooldown) - proximity.scan() - -/obj/item/clothing/suit/storage/marine/medium/rto/intel/proc/toggle_motion_detector(mob/user) - to_chat(user,SPAN_NOTICE("You [motion_detector? "disable" : "enable"] \the [src]'s motion detector.")) - if(!motion_detector) - playsound(loc,'sound/items/detector_turn_on.ogg', 25, 1) - else - playsound(loc,'sound/items/detector_turn_off.ogg', 25, 1) - motion_detector = !motion_detector - var/datum/action/item_action/intel/toggle_motion_detector/TMD = locate(/datum/action/item_action/intel/toggle_motion_detector) in actions - TMD.update_icon() - motion_detector() - -/obj/item/clothing/suit/storage/marine/medium/rto/intel/proc/motion_detector() - if(motion_detector) - START_PROCESSING(SSobj, src) - else - STOP_PROCESSING(SSobj, src) - -/obj/item/clothing/suit/storage/marine/medium/rto/intel/mob_can_equip(mob/living/carbon/human/user, slot, disable_warning) //Thanks to Drathek for the help on this part! - if(!..()) - return FALSE - - // Only equip if uniform doesn't already have a utility accessory slot equipped - var/obj/item/clothing/under/uniform = user.w_uniform - var/accessory = locate(/obj/item/clothing/accessory/storage) in uniform.accessories - if(accessory) - to_chat(user, SPAN_WARNING("[src] can't be worn with [accessory].")) - return FALSE - // Only equip if user has expert intel skill level - if(!skillcheck(user, SKILL_INTEL, SKILL_INTEL_EXPERT)) - to_chat(user, SPAN_WARNING("You don't seem to know how to use [src]...")) - return FALSE - return TRUE - -/obj/item/clothing/suit/storage/marine/medium/rto/intel/equipped(mob/user, slot, silent) //When XM4 is equipped this removes ACCESSORY_SLOT_UTILITY as a valid accessory for the uniform - . = ..() - if(slot == WEAR_JACKET) - var/mob/living/carbon/human/human = user - var/obj/item/clothing/under/uniform = human.w_uniform - if(uniform?.valid_accessory_slots) - uniform?.valid_accessory_slots -= ACCESSORY_SLOT_UTILITY - -/obj/item/clothing/suit/storage/marine/medium/rto/intel/unequipped(mob/user, slot) //When unequipped this adds the ACCESSORY_SLOT_UTILITY back as a valid accessory - . = ..() - if(slot == WEAR_JACKET) - var/mob/living/carbon/human/human = user - var/obj/item/clothing/under/uniform = human.w_uniform - if(uniform) - // Figure out if the uniform originally allowed ACCESSORY_SLOT_UTILITY - var/obj/item/clothing/under/temp_uniform = new uniform.type - if(temp_uniform.valid_accessory_slots) - for(var/allowed in temp_uniform.valid_accessory_slots) - if(allowed == ACCESSORY_SLOT_UTILITY) - // It was allowed previously, now add it back - uniform.valid_accessory_slots += ACCESSORY_SLOT_UTILITY - break - qdel(temp_uniform) - -/obj/item/clothing/suit/storage/marine/MP - name = "\improper M2 pattern MP armor" - desc = "A standard Colonial Marines M2 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." - icon_state = "mp_armor" - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_LOW - armor_laser = CLOTHING_ARMOR_LOW - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LIGHT - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine/, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/explosive/grenade, - /obj/item/device/binoculars, - /obj/item/attachable/bayonet, - /obj/item/storage/backpack/general_belt, - /obj/item/device/hailer, - /obj/item/storage/belt/gun, - /obj/item/weapon/sword/ceremonial, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - uniform_restricted = list(/obj/item/clothing/under/marine/mp) - specialty = "M2 pattern MP" - item_state_slots = list(WEAR_JACKET = "mp_armor") - black_market_value = 20 - -/obj/item/clothing/suit/storage/marine/MP/warden - icon_state = "warden" - name = "\improper M3 pattern warden MP armor" - desc = "A well-crafted suit of M3 Pattern Armor typically distributed to Wardens. Useful for letting your men know who is in charge." - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUMLOW - uniform_restricted = list(/obj/item/clothing/under/marine/warden) - specialty = "M3 pattern warden MP" - item_state_slots = list(WEAR_JACKET = "warden") - -/obj/item/clothing/suit/storage/marine/MP/WO - icon_state = "warrant_officer" - name = "\improper M3 pattern chief MP armor" - desc = "A well-crafted suit of M3 Pattern Armor typically distributed to Chief MPs. Useful for letting your men know who is in charge." - uniform_restricted = list(/obj/item/clothing/under/marine/officer/warrant) - specialty = "M3 pattern chief MP" - item_state_slots = list(WEAR_JACKET = "warrant_officer") - black_market_value = 30 - -/obj/item/clothing/suit/storage/marine/MP/general - name = "\improper M3 pattern general officer armor" - desc = "A well-crafted suit of M3 Pattern Armor with a gold shine. It looks very expensive, but shockingly fairly easy to carry and wear." - icon_state = "general" - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_bio = CLOTHING_ARMOR_MEDIUM - uniform_restricted = list(/obj/item/clothing/under/marine/officer/general) - specialty = "M3 pattern general" - item_state_slots = list(WEAR_JACKET = "general") - w_class = SIZE_MEDIUM - -/obj/item/clothing/suit/storage/marine/MP/SO - name = "\improper M3 pattern officer armor" - desc = "A well-crafted suit of M3 Pattern Armor typically found in the hands of higher-ranking officers. Useful for letting your men know who is in charge when taking to the field." - icon_state = "officer" - storage_slots = 3 - flags_atom = null - uniform_restricted = list(/obj/item/clothing/under/marine/officer, /obj/item/clothing/under/rank/qm_suit, /obj/item/clothing/under/rank/chief_medical_officer, /obj/item/clothing/under/marine/dress) - specialty = "M3 pattern officer" - item_state_slots = list(WEAR_JACKET = "officer") - -//Making a new object because we might want to edit armor values and such. -//Or give it its own sprite. It's more for the future. -/obj/item/clothing/suit/storage/marine/MP/CO - name = "\improper M3 pattern commanding officer armor" - desc = "A robust, well-polished suit of armor for the Commanding Officer. Custom-made to fit its owner with special straps to operate a smartgun. Show those Marines who's really in charge." - icon_state = "co_officer" - item_state = "co_officer" - armor_bullet = CLOTHING_ARMOR_HIGH - storage_slots = 3 - flags_atom = NO_SNOW_TYPE - flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS - uniform_restricted = list(/obj/item/clothing/under/marine, /obj/item/clothing/under/rank/qm_suit) - specialty = "M3 pattern captain" - item_state_slots = list(WEAR_JACKET = "co_officer") - valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_RANK, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_PONCHO) - black_market_value = 35 - - -/obj/item/clothing/suit/storage/marine/MP/CO/jacket - name = "\improper M3 pattern commanding officer armored coat" - desc = "A robust, well-polished suit of armor for the Commanding Officer. Custom-made to fit its owner with special straps to operate a smartgun. Show those Marines who's really in charge. This one has a coat over it for added warmth." - icon_state = "bridge_coat_armored" - item_state = "bridge_coat_armored" - item_state_slots = list(WEAR_JACKET = "bridge_coat_armored") - valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_RANK) - - -/obj/item/clothing/suit/storage/marine/smartgunner - name = "\improper M56 combat harness" - desc = "A heavy protective vest designed to be worn with the M56 Smartgun System. \nIt has specially designed straps and reinforcement to carry the Smartgun and accessories." - icon_state = "8" - item_state = "armor" - armor_laser = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LIGHT - flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS - allowed = list( - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine, - /obj/item/explosive/mine, - /obj/item/attachable/bayonet, - /obj/item/weapon/gun/smartgun, - /obj/item/storage/backpack/general_belt, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - -/obj/item/clothing/suit/storage/marine/smartgunner/Initialize() - . = ..() - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD] && name == "M56 combat harness") - name = "M56 snow combat harness" - else - name = "M56 combat harness" - //select_gamemode_skin(type) - -/obj/item/clothing/suit/storage/marine/smartgunner/mob_can_equip(mob/equipping_mob, slot, disable_warning = FALSE) - . = ..() - - if(equipping_mob.back) - to_chat(equipping_mob, SPAN_WARNING("You can't equip [src] while wearing a backpack.")) - return FALSE - -/obj/item/clothing/suit/storage/marine/smartgunner/equipped(mob/user, slot, silent) - . = ..() - - if(slot == WEAR_JACKET) - RegisterSignal(user, COMSIG_HUMAN_ATTEMPTING_EQUIP, PROC_REF(check_equipping)) - -/obj/item/clothing/suit/storage/marine/smartgunner/proc/check_equipping(mob/living/carbon/human/equipping_human, obj/item/equipping_item, slot) - SIGNAL_HANDLER - - if(slot != WEAR_BACK) - return - - . = COMPONENT_HUMAN_CANCEL_ATTEMPT_EQUIP - - if(equipping_item.flags_equip_slot == SLOT_BACK) - to_chat(equipping_human, SPAN_WARNING("You can't equip [equipping_item] on your back while wearing [src].")) - return - -/obj/item/clothing/suit/storage/marine/smartgunner/unequipped(mob/user, slot) - . = ..() - - UnregisterSignal(user, COMSIG_HUMAN_ATTEMPTING_EQUIP) - -/obj/item/clothing/suit/storage/marine/medium/leader - name = "\improper B12 pattern marine armor" - desc = "A lightweight suit of carbon fiber body armor built for quick movement. Designed in a lovely forest green. Use it to toggle the built-in flashlight." - icon_state = "7" - armor_variation = 0 - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - specialty = "B12 pattern marine" - light_range = 5 - -/obj/item/clothing/suit/storage/marine/tanker - name = "\improper M3 pattern tanker armor" - desc = "A modified and refashioned suit of M3 Pattern armor designed to be worn by the loader of a USCM vehicle crew. While the suit is a bit more encumbering to wear with the crewman uniform, it offers the loader a degree of protection that would otherwise not be enjoyed." - icon_state = "tanker" - uniform_restricted = list(/obj/item/clothing/under/marine/officer/tanker) - specialty = "M3 pattern tanker" - storage_slots = 2 - -//===========================//PFC ARMOR CLASSES\\================================\\ -//=================================================================================\\ - -/obj/item/clothing/suit/storage/marine/medium - armor_variation = 6 - light_power = 4 - -/obj/item/clothing/suit/storage/marine/medium/padded - name = "M3 pattern padded marine armor" - icon_state = "1" - armor_variation = 0 - specialty = "M3 pattern padded marine" - -/obj/item/clothing/suit/storage/marine/medium/padless - name = "M3 pattern padless marine armor" - icon_state = "2" - armor_variation = 0 - specialty = "M3 pattern padless marine" - -/obj/item/clothing/suit/storage/marine/medium/padless_lines - name = "M3 pattern ridged marine armor" - icon_state = "3" - armor_variation = 0 - specialty = "M3 pattern ridged marine" - -/obj/item/clothing/suit/storage/marine/medium/carrier - name = "M3 pattern carrier marine armor" - icon_state = "4" - armor_variation = 0 - specialty = "M3 pattern carrier marine" - -/obj/item/clothing/suit/storage/marine/medium/skull - name = "M3 pattern skull marine armor" - icon_state = "5" - armor_variation = 0 - specialty = "M3 pattern skull marine" - -/obj/item/clothing/suit/storage/marine/medium/smooth - name = "M3 pattern smooth marine armor" - icon_state = "6" - armor_variation = 0 - specialty = "M3 pattern smooth marine" - -/obj/item/clothing/suit/storage/marine/light - name = "\improper M3-L pattern light armor" - desc = "A lighter, cut down version of the standard M3 pattern armor. It sacrifices durability for more speed." - specialty = "\improper M3-L pattern light" - icon_state = "L1" - armor_variation = 6 - slowdown = SLOWDOWN_ARMOR_LIGHT - armor_melee = CLOTHING_ARMOR_MEDIUMLOW - armor_bullet = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_LOW - storage_slots = 2 - -/obj/item/clothing/suit/storage/marine/light/padded - icon_state = "L1" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/light/padless - icon_state = "L2" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/light/padless_lines - icon_state = "L3" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/light/carrier - icon_state = "L4" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/light/skull - icon_state = "L5" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/light/smooth - icon_state = "L6" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/light/vest - name = "\improper M3-VL pattern ballistics vest" - desc = "Up until 2182 USCM non-combat personnel were issued non-standardized ballistics vests, though the lack of IMP compatibility and suit lamps proved time and time again inefficient. This modified M3-L shell is the result of a 6-year R&D program; It provides utility, protection, AND comfort to all USCM non-combat personnel." - icon_state = "VL" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - flags_marine_armor = ARMOR_LAMP_OVERLAY //No squad colors when wearing this since it'd look funny. - armor_melee = CLOTHING_ARMOR_MEDIUMLOW - armor_bullet = CLOTHING_ARMOR_HIGH - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_LOW - armor_bio = CLOTHING_ARMOR_VERYLOW - armor_rad = CLOTHING_ARMOR_NONE - armor_internaldamage = CLOTHING_ARMOR_MEDIUM - storage_slots = 1 - time_to_unequip = 0.5 SECONDS - time_to_equip = 1 SECONDS - siemens_coefficient = 0.7 - uniform_restricted = null - -/obj/item/clothing/suit/storage/marine/light/vest/dcc - name = "\improper M3-VL pattern flak vest" - desc = "A combination of the standard non-combat M3-VL ballistics vest and M70 flak jacket, this piece of armor has been distributed to dropship crew to keep them safe from threats external and internal..." - icon_state = "VL_FLAK" - storage_slots = 2 - -/obj/item/clothing/suit/storage/marine/light/synvest - name = "\improper M3A1 Synthetic Utility Vest" - desc = "This variant of the ubiquitous M3 pattern ballistics vest has been extensively modified, providing no protection in exchange for maximum mobility and storage space. Synthetic programming compliant." - icon_state = "VL_syn_camo" - flags_atom = NO_NAME_OVERRIDE - flags_marine_armor = ARMOR_LAMP_OVERLAY|SYNTH_ALLOWED //No squad colors + can be worn by synths. - armor_melee = CLOTHING_ARMOR_NONE - armor_bullet = CLOTHING_ARMOR_NONE - armor_laser = CLOTHING_ARMOR_NONE - armor_energy = CLOTHING_ARMOR_NONE - armor_bomb = CLOTHING_ARMOR_NONE - armor_bio = CLOTHING_ARMOR_NONE - armor_rad = CLOTHING_ARMOR_NONE - armor_internaldamage = CLOTHING_ARMOR_NONE - storage_slots = 3 - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT - time_to_unequip = 0.5 SECONDS - time_to_equip = 1 SECONDS - uniform_restricted = null - -/obj/item/clothing/suit/storage/marine/light/synvest/grey - icon_state = "VL_syn" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/light/synvest/jungle - icon_state = "VL_syn_camo" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/light/synvest/snow - icon_state = "s_VL_syn_camo" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/light/synvest/desert - icon_state = "d_VL_syn_camo" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/light/synvest/dgrey - icon_state = "c_VL_syn_camo" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/heavy - name = "\improper M3-EOD pattern heavy armor" - desc = "A heavier version of the standard M3 pattern armor, the armor is primarily designed to withstand ballistic, explosive, and internal damage, with the drawback of increased bulk and thus reduced movement speed, alongside little additional protection from standard blunt force impacts and biological threats." - desc_lore = "This configuration of the iconic armor was developed during the Canton War in 2160 between the UPP and USCM - Designed in response to a need for higher protection for ComTechs assigned as EODs during the conflict, this is the pinnacle of protection for your average marine. The shoulders and kneepads have both been expanded upon heavily, covering up the arteries on each limb. A special spall liner was developed for this suit, with the same technology being used in the M70 Flak Jacket being developed at the same time." - specialty = "\improper M3-EOD pattern" - icon_state = "H1" - armor_variation = 6 - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_HIGHPLUS - armor_bomb = CLOTHING_ARMOR_HIGHPLUS - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LOWHEAVY - movement_compensation = SLOWDOWN_ARMOR_MEDIUM - light_power = 4 - light_range = 5 - -/obj/item/clothing/suit/storage/marine/heavy/padded - icon_state = "H1" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/heavy/padless - icon_state = "H2" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/heavy/padless_lines - icon_state = "H3" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/heavy/carrier - icon_state = "H4" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/heavy/skull - icon_state = "H5" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/heavy/smooth - icon_state = "H6" - armor_variation = 0 - -//===========================//SPECIALIST\\================================\\ -//=======================================================================\\ - -/obj/item/clothing/suit/storage/marine/specialist - name = "\improper B18 defensive armor" - desc = "A heavy, rugged set of armor plates for when you really, really need to not die horribly. Slows you down though.\nComes with two tricord injectors in each arm guard." - icon_state = "xarmor" - armor_melee = CLOTHING_ARMOR_HIGH - armor_bullet = CLOTHING_ARMOR_HIGH - armor_bomb = CLOTHING_ARMOR_VERYHIGH - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - storage_slots = 2 - flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - slowdown = SLOWDOWN_ARMOR_HEAVY - specialty = "B18 defensive" - unacidable = TRUE - var/injections = 4 - -/obj/item/clothing/suit/storage/marine/specialist/verb/inject() - set name = "Create Injector" - set category = "Object" - set src in usr - - if(usr.is_mob_incapacitated()) - return 0 - - if(!injections) - to_chat(usr, "Your armor is all out of injectors.") - return 0 - - if(usr.get_active_hand()) - to_chat(usr, "Your active hand must be empty.") - return 0 - - to_chat(usr, "You feel a faint hiss and an injector drops into your hand.") - var/obj/item/reagent_container/hypospray/autoinjector/skillless/O = new(usr) - usr.put_in_active_hand(O) - injections-- - playsound(src,'sound/machines/click.ogg', 15, 1) - return - -/obj/item/clothing/suit/storage/marine/M3G - name = "\improper M3-G4 grenadier armor" - desc = "A custom set of M3 armor packed to the brim with padding, plating, and every form of ballistic protection under the sun. Used exclusively by USCM Grenadiers." - icon_state = "grenadier" - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_bomb = CLOTHING_ARMOR_VERYHIGH - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN - flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - slowdown = SLOWDOWN_ARMOR_HEAVY - specialty = "M3-G4 grenadier" - unacidable = TRUE - -/obj/item/clothing/suit/storage/marine/M3T - name = "\improper M3-T light armor" - desc = "A custom set of M3 armor designed for users of long-ranged explosive weaponry." - icon_state = "demolitionist" - armor_bomb = CLOTHING_ARMOR_HIGH - slowdown = SLOWDOWN_ARMOR_LIGHT - specialty = "M3-T light" - flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE - unacidable = TRUE - -/obj/item/clothing/suit/storage/marine/M3S - name = "\improper M3-S light armor" - desc = "A custom set of M3 armor designed for USCM Scouts." - icon_state = "scout_armor" - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - slowdown = SLOWDOWN_ARMOR_LIGHT - specialty = "M3-S light" - flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE - unacidable = TRUE - -#define FIRE_SHIELD_CD 150 - -/obj/item/clothing/suit/storage/marine/M35 - name = "\improper M35 pyrotechnician armor" - desc = "A custom set of M35 armor designed for use by USCM Pyrotechnicians." - icon_state = "pyro_armor" - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - fire_intensity_resistance = BURN_LEVEL_TIER_1 - max_heat_protection_temperature = FIRESUIT_MAX_HEAT_PROT - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE - specialty = "M35 pyrotechnician" - actions_types = list(/datum/action/item_action/toggle, /datum/action/item_action/specialist/fire_shield) - unacidable = TRUE - var/fire_shield_on = FALSE - var/can_activate = TRUE - -/obj/item/clothing/suit/storage/marine/M35/equipped(mob/user, slot) - if(slot == WEAR_JACKET) - RegisterSignal(user, COMSIG_LIVING_FLAMER_CROSSED, PROC_REF(flamer_fire_callback)) - ..() - -/obj/item/clothing/suit/storage/marine/M35/verb/fire_shield() - set name = "Activate Fire Shield" - set desc = "Activate your armor's FIREWALK protocol for a short duration." - set category = "Pyro" - set src in usr - if(!usr || usr.is_mob_incapacitated(TRUE)) - return - if(!ishuman(usr)) - return - var/mob/living/carbon/human/H = usr - - if(H.wear_suit != src) - to_chat(H, SPAN_WARNING("You must be wearing the M35 pyro armor to activate FIREWALK protocol!")) - return - - if(!skillcheck(H, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL) && H.skills.get_skill_level(SKILL_SPEC_WEAPONS) != SKILL_SPEC_PYRO) - to_chat(H, SPAN_WARNING("You don't seem to know how to use [src]...")) - return - - if(fire_shield_on) - to_chat(H, SPAN_WARNING("You already have FIREWALK protocol activated!")) - return - - if(!can_activate) - to_chat(H, SPAN_WARNING("FIREWALK protocol was recently activated, wait before trying to activate it again.")) - return - - to_chat(H, SPAN_NOTICE("FIREWALK protocol has been activated. You will now be immune to fire for 6 seconds!")) - RegisterSignal(H, COMSIG_LIVING_PREIGNITION, PROC_REF(fire_shield_is_on)) - RegisterSignal(H, list( - COMSIG_LIVING_FLAMER_FLAMED, - ), PROC_REF(flamer_fire_callback)) - fire_shield_on = TRUE - can_activate = FALSE - for(var/X in actions) - var/datum/action/A = X - A.update_button_icon() - addtimer(CALLBACK(src, PROC_REF(end_fire_shield), H), 6 SECONDS) - - H.add_filter("firewalk_on", 1, list("type" = "outline", "color" = "#03fcc6", "size" = 1)) - -/obj/item/clothing/suit/storage/marine/M35/proc/end_fire_shield(mob/living/carbon/human/user) - if(!istype(user)) - return - to_chat(user, SPAN_NOTICE("FIREWALK protocol has finished.")) - UnregisterSignal(user, list( - COMSIG_LIVING_PREIGNITION, - COMSIG_LIVING_FLAMER_FLAMED, - )) - fire_shield_on = FALSE - - user.remove_filter("firewalk_on") - - addtimer(CALLBACK(src, PROC_REF(enable_fire_shield), user), FIRE_SHIELD_CD) - -/obj/item/clothing/suit/storage/marine/M35/proc/enable_fire_shield(mob/living/carbon/human/user) - if(!istype(user)) - return - to_chat(user, SPAN_NOTICE("FIREWALK protocol can be activated again.")) - can_activate = TRUE - - for(var/X in actions) - var/datum/action/A = X - A.update_button_icon() - -/// This proc is solely so that IgniteMob() fails -/obj/item/clothing/suit/storage/marine/M35/proc/fire_shield_is_on(mob/living/L) - SIGNAL_HANDLER - - if(L.fire_reagent?.fire_penetrating) - return - - return COMPONENT_CANCEL_IGNITION - -/obj/item/clothing/suit/storage/marine/M35/proc/flamer_fire_callback(mob/living/L, datum/reagent/R) - SIGNAL_HANDLER - - if(R.fire_penetrating) - return - - . = COMPONENT_NO_IGNITE - if(fire_shield_on) - . |= COMPONENT_NO_BURN - -/obj/item/clothing/suit/storage/marine/M35/dropped(mob/user) - if (!istype(user)) - return - UnregisterSignal(user, list( - COMSIG_LIVING_PREIGNITION, - COMSIG_LIVING_FLAMER_CROSSED, - COMSIG_LIVING_FLAMER_FLAMED, - )) - ..() - -#undef FIRE_SHIELD_CD - -/datum/action/item_action/specialist/fire_shield - ability_primacy = SPEC_PRIMARY_ACTION_2 - -/datum/action/item_action/specialist/fire_shield/New(mob/living/user, obj/item/holder) - ..() - name = "Activate Fire Shield" - button.name = name - button.overlays.Cut() - var/image/IMG = image('icons/obj/items/clothing/cm_suits.dmi', button, "pyro_armor") - button.overlays += IMG - -/datum/action/item_action/specialist/fire_shield/action_cooldown_check() - var/obj/item/clothing/suit/storage/marine/M35/armor = holder_item - if (!istype(armor)) - return FALSE - - return !armor.can_activate - -/datum/action/item_action/specialist/fire_shield/can_use_action() - var/mob/living/carbon/human/H = owner - if(istype(H) && !H.is_mob_incapacitated() && H.wear_suit == holder_item) - return TRUE - -/datum/action/item_action/specialist/fire_shield/action_activate() - var/obj/item/clothing/suit/storage/marine/M35/armor = holder_item - if (!istype(armor)) - return - - armor.fire_shield() - -#define FULL_CAMOUFLAGE_ALPHA 15 - -/obj/item/clothing/suit/storage/marine/ghillie - name = "\improper M45 pattern ghillie armor" - desc = "A lightweight ghillie camouflage suit, used by USCM snipers on recon missions. Very lightweight, but doesn't protect much." - icon_state = "ghillie_armor" - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - slowdown = SLOWDOWN_ARMOR_LIGHT - flags_marine_armor = ARMOR_LAMP_OVERLAY - flags_item = MOB_LOCK_ON_EQUIP - specialty = "M45 pattern ghillie" - valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_PONCHO) - restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) - - var/camo_active = FALSE - var/hide_in_progress = FALSE - var/full_camo_alpha = FULL_CAMOUFLAGE_ALPHA - var/incremental_shooting_camo_penalty = 35 - var/current_camo = FULL_CAMOUFLAGE_ALPHA - var/camouflage_break = 5 SECONDS - var/camouflage_enter_delay = 4 SECONDS - var/can_camo = TRUE - - actions_types = list(/datum/action/item_action/toggle, /datum/action/item_action/specialist/prepare_position) - -/obj/item/clothing/suit/storage/marine/ghillie/dropped(mob/user) - if(ishuman(user) && !issynth(user)) - deactivate_camouflage(user, FALSE) - - . = ..() - -/obj/item/clothing/suit/storage/marine/ghillie/verb/camouflage() - set name = "Prepare Position" - set desc = "Use the ghillie suit and the nearby environment to become near invisible." - set category = "Object" - set src in usr - if(!usr || usr.is_mob_incapacitated(TRUE)) - return - - if(!ishuman(usr) || hide_in_progress || !can_camo) - return - var/mob/living/carbon/human/H = usr - if(!skillcheck(H, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL) && H.skills.get_skill_level(SKILL_SPEC_WEAPONS) != SKILL_SPEC_SNIPER && !(GLOB.character_traits[/datum/character_trait/skills/spotter] in H.traits)) - to_chat(H, SPAN_WARNING("You don't seem to know how to use [src]...")) - return - if(H.wear_suit != src) - to_chat(H, SPAN_WARNING("You must be wearing the ghillie suit to activate it!")) - return - - if(camo_active) - deactivate_camouflage(H) - return - - H.visible_message(SPAN_DANGER("[H] goes prone, and begins adjusting \his ghillie suit!"), SPAN_NOTICE("You go prone, and begins adjusting your ghillie suit."), max_distance = 4) - hide_in_progress = TRUE - H.unset_interaction() // If we're sticking to a machine gun or what not. - if(!do_after(H, camouflage_enter_delay, INTERRUPT_NO_NEEDHAND|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - hide_in_progress = FALSE - return - hide_in_progress = FALSE - RegisterSignal(H, list( - COMSIG_MOB_FIRED_GUN, - COMSIG_MOB_FIRED_GUN_ATTACHMENT) - , PROC_REF(fade_in)) - RegisterSignal(H, list( - COMSIG_MOB_DEATH, - COMSIG_HUMAN_EXTINGUISH - ), PROC_REF(deactivate_camouflage)) - camo_active = TRUE - H.alpha = full_camo_alpha - H.FF_hit_evade = 1000 - ADD_TRAIT(H, TRAIT_UNDENSE, SPECIALIST_GEAR_TRAIT) - - RegisterSignal(H, COMSIG_MOB_MOVE_OR_LOOK, PROC_REF(handle_mob_move_or_look)) - - var/datum/mob_hud/security/advanced/SA = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] - SA.remove_from_hud(H) - var/datum/mob_hud/xeno_infection/XI = GLOB.huds[MOB_HUD_XENO_INFECTION] - XI.remove_from_hud(H) - - anim(H.loc, H, 'icons/mob/mob.dmi', null, "cloak", null, H.dir) - - -/obj/item/clothing/suit/storage/marine/ghillie/proc/deactivate_camouflage(mob/user) - SIGNAL_HANDLER - var/mob/living/carbon/human/H = user - if(!istype(H)) - return FALSE - - if(!camo_active) - return - - UnregisterSignal(H, list( - COMSIG_MOB_FIRED_GUN, - COMSIG_MOB_FIRED_GUN_ATTACHMENT, - COMSIG_MOB_DEATH, - COMSIG_HUMAN_EXTINGUISH, - COMSIG_MOB_MOVE_OR_LOOK - )) - - camo_active = FALSE - animate(H, alpha = initial(H.alpha), flags = ANIMATION_END_NOW) - H.FF_hit_evade = initial(H.FF_hit_evade) - REMOVE_TRAIT(H, TRAIT_UNDENSE, SPECIALIST_GEAR_TRAIT) - - var/datum/mob_hud/security/advanced/SA = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] - SA.add_to_hud(H) - var/datum/mob_hud/xeno_infection/XI = GLOB.huds[MOB_HUD_XENO_INFECTION] - XI.add_to_hud(H) - - H.visible_message(SPAN_DANGER("[H]'s camouflage fails!"), SPAN_WARNING("Your camouflage fails!"), max_distance = 4) - -/obj/item/clothing/suit/storage/marine/ghillie/proc/fade_in(mob/user) - SIGNAL_HANDLER - var/mob/living/carbon/human/H = user - if(camo_active) - if(current_camo < full_camo_alpha) - current_camo = full_camo_alpha - current_camo = clamp(current_camo + incremental_shooting_camo_penalty, full_camo_alpha, 255) - H.alpha = current_camo - addtimer(CALLBACK(src, PROC_REF(fade_out_finish), H), camouflage_break, TIMER_OVERRIDE|TIMER_UNIQUE) - animate(H, alpha = full_camo_alpha + 5, time = camouflage_break, easing = LINEAR_EASING, flags = ANIMATION_END_NOW) - -/obj/item/clothing/suit/storage/marine/ghillie/proc/fade_out_finish(mob/living/carbon/human/H) - if(camo_active && H.wear_suit == src) - to_chat(H, SPAN_BOLDNOTICE("The smoke clears and your position is once again hidden completely!")) - animate(H, alpha = full_camo_alpha) - current_camo = full_camo_alpha - -/obj/item/clothing/suit/storage/marine/ghillie/proc/handle_mob_move_or_look(mob/living/mover, actually_moving, direction, specific_direction) - SIGNAL_HANDLER - - if(camo_active && actually_moving) - deactivate_camouflage(mover) - -/datum/action/item_action/specialist/prepare_position - ability_primacy = SPEC_PRIMARY_ACTION_1 - -/datum/action/item_action/specialist/prepare_position/New(mob/living/user, obj/item/holder) - ..() - name = "Prepare Position" - button.name = name - button.overlays.Cut() - var/image/IMG = image('icons/mob/hud/actions.dmi', button, "prepare_position") - button.overlays += IMG - -/datum/action/item_action/specialist/prepare_position/can_use_action() - var/mob/living/carbon/human/H = owner - if(istype(H) && !H.is_mob_incapacitated() && H.body_position == STANDING_UP && holder_item == H.wear_suit) - return TRUE - -/datum/action/item_action/specialist/prepare_position/action_activate() - var/obj/item/clothing/suit/storage/marine/ghillie/GS = holder_item - GS.camouflage() - -#undef FULL_CAMOUFLAGE_ALPHA - -/obj/item/clothing/suit/storage/marine/ghillie/forecon - name = "UDEP Thermal Poncho" - desc = "UDEP or the Ultra Diffusive Environmental Poncho is a camouflaged rain-cover worn to protect against the elements and chemical spills. It's commonly treated with an infrared absorbing coating, making a marine almost invisible in the rain. Favoured by USCM specialists for it's comfort and practicality." - icon_state = "mercenary_miner_armor" - flags_atom = MOB_LOCK_ON_EQUIP|NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/sof - name = "\improper SOF Armor" - desc = "A heavily customized suit of M3 armor. Used by Marine Raiders." - icon_state = "marsoc" - armor_melee = CLOTHING_ARMOR_HIGH - armor_bullet = CLOTHING_ARMOR_HIGH - armor_bomb = CLOTHING_ARMOR_VERYHIGH - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - slowdown = SLOWDOWN_ARMOR_LIGHT - unacidable = TRUE - flags_atom = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE|NO_SNOW_TYPE - storage_slots = 4 - -//=============================//pmcS\\==================================\\ -//=======================================================================\\ - -/obj/item/clothing/suit/storage/marine/veteran - flags_marine_armor = ARMOR_LAMP_OVERLAY - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE //Let's make these keep their name and icon. - -/obj/item/clothing/suit/storage/marine/veteran/pmc - name = "\improper M4 pattern PMC armor" - desc = "A modification of the standard Armat Systems M3 armor. Designed for high-profile security operators and corporate mercenaries in mind." - icon_state = "pmc_armor" - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LIGHT - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine/, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/explosive/grenade, - /obj/item/storage/bible, - /obj/item/tool/crowbar, - /obj/item/storage/large_holster/katana, - /obj/item/storage/large_holster/machete, - /obj/item/weapon/sword/machete, - /obj/item/attachable/bayonet, - /obj/item/device/motiondetector, - /obj/item/tool/crew_monitor, - /obj/item/device/walkman, - ) - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc) - item_state_slots = list(WEAR_JACKET = "pmc_armor") - -/obj/item/clothing/suit/storage/marine/veteran/pmc/light - name = "\improper M4 pattern light PMC armor" - desc = "A modification of the standard Armat Systems M3 armor. Designed for high-profile security operators and corporate mercenaries in mind. Has some armor plating removed for extra mobility." - icon_state = "pmc_sniper" - armor_melee = CLOTHING_ARMOR_MEDIUMLOW - armor_bullet = CLOTHING_ARMOR_MEDIUM - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT - item_state_slots = list(WEAR_JACKET = "pmc_sniper") - -/obj/item/clothing/suit/storage/marine/veteran/pmc/light/corporate - name = "\improper M1 pattern corporate security armor" - desc = "A basic vest with a Weyland-Yutani badge on the right breast. This is commonly worn by low-level guards protecting Weyland-Yutani facilities." - icon = 'icons/mob/humans/onmob/contained/wy_goons.dmi' - icon_state = "armor" - item_state = "armor" - item_state_slots = null - contained_sprite = TRUE - - 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" - item_state = "lead_armor" - -/obj/item/clothing/suit/storage/marine/veteran/pmc/leader - name = "\improper M4 pattern PMC leader armor" - desc = "A modification of the standard Armat Systems M3 armor. Designed for high-profile security operators and corporate mercenaries in mind. This particular suit looks like it belongs to a high-ranking officer." - icon_state = "officer_armor" - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc/leader) - item_state_slots = list(WEAR_JACKET = "officer_armor") - -/obj/item/clothing/suit/storage/marine/veteran/pmc/sniper - name = "\improper M4 pattern PMC sniper armor" - icon_state = "pmc_sniper" - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUM - flags_inv_hide = HIDELOWHAIR - item_state_slots = list(WEAR_JACKET = "pmc_sniper") - -/obj/item/clothing/suit/storage/marine/veteran/pmc/light/synth - name = "\improper 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." - time_to_unequip = 0.5 SECONDS - time_to_equip = 1 SECONDS - armor_melee = CLOTHING_ARMOR_NONE - armor_bullet = CLOTHING_ARMOR_NONE - armor_laser = CLOTHING_ARMOR_NONE - armor_energy = CLOTHING_ARMOR_NONE - armor_bomb = CLOTHING_ARMOR_NONE - armor_bio = CLOTHING_ARMOR_NONE - armor_rad = CLOTHING_ARMOR_NONE - armor_internaldamage = CLOTHING_ARMOR_NONE - storage_slots = 3 - slowdown = SLOWDOWN_ARMOR_SUPER_LIGHT - -/obj/item/clothing/suit/storage/marine/veteran/pmc/light/synth/Initialize() - flags_atom |= NO_NAME_OVERRIDE - flags_marine_armor |= SYNTH_ALLOWED - return ..() - -/obj/item/clothing/suit/storage/marine/smartgunner/veteran/pmc - name = "\improper PMC gunner armor" - desc = "A modification of the standard Armat Systems M3 armor. Hooked up with harnesses and straps allowing the user to carry an M56 Smartgun." - icon_state = "heavy_armor" - flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN|SMARTGUN_HARNESS - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - item_state_slots = list(WEAR_JACKET = "heavy_armor") - -/obj/item/clothing/suit/storage/marine/smartgunner/veteran/pmc/terminator - name = "\improper M5Xg exoskeleton gunner armor" - desc = "A complex system of overlapping plates intended to render the wearer all but impervious to small arms fire. A passive exoskeleton supports the weight of the armor, allowing a human to carry its massive bulk. This variant is designed to support a M56 Smartgun." - icon_state = "commando_armor" - slowdown = SLOWDOWN_ARMOR_MEDIUM - movement_compensation = SLOWDOWN_ARMOR_VERY_HEAVY - armor_melee = CLOTHING_ARMOR_HIGH - armor_bullet = CLOTHING_ARMOR_ULTRAHIGH - armor_laser = CLOTHING_ARMOR_MEDIUM - armor_energy = CLOTHING_ARMOR_MEDIUM - armor_bomb = CLOTHING_ARMOR_VERYHIGH - armor_rad = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc/commando) - item_state_slots = list(WEAR_JACKET = "commando_armor") - unacidable = TRUE - -/obj/item/clothing/suit/storage/marine/veteran/pmc/commando - name = "\improper M5X exoskeleton armor" - desc = "A complex system of overlapping plates intended to render the wearer all but impervious to small arms fire. A passive exoskeleton supports the weight of the armor, allowing a human to carry its massive bulk." - icon_state = "commando_armor" - slowdown = SLOWDOWN_ARMOR_MEDIUM - movement_compensation = SLOWDOWN_ARMOR_VERY_HEAVY - armor_melee = CLOTHING_ARMOR_VERYHIGH - armor_bullet = CLOTHING_ARMOR_ULTRAHIGH - armor_energy = CLOTHING_ARMOR_MEDIUM - armor_bomb = CLOTHING_ARMOR_VERYHIGH - armor_rad = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - flags_inventory = BLOCK_KNOCKDOWN - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc/commando) - item_state_slots = list(WEAR_JACKET = "commando_armor") - unacidable = TRUE - -//===========================//DISTRESS\\================================\\ -//=======================================================================\\ - -/obj/item/clothing/suit/storage/marine/veteran/bear - name = "\improper H1 Iron Bears vest" - desc = "A protective vest worn by Iron Bears mercenaries." - icon_state = "bear_armor" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/bear) - -/obj/item/clothing/suit/storage/marine/veteran/dutch - name = "\improper D2 armored vest" - desc = "A protective vest worn by some seriously experienced mercs." - icon_state = "dutch_armor" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS //Makes no sense but they need leg/arm armor too. - armor_melee = CLOTHING_ARMOR_HIGH - armor_bullet = CLOTHING_ARMOR_HIGHPLUS - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_HIGH - armor_rad = CLOTHING_ARMOR_MEDIUM - storage_slots = 2 - light_range = 7 - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/dutch) - -/obj/item/clothing/suit/storage/marine/veteran/van_bandolier - name = "safari jacket" - desc = "A tailored hunting jacket, cunningly lined with segmented armor plates. Sometimes the game shoots back." - icon_state = "van_bandolier" - item_state = "van_bandolier_jacket" - blood_overlay_type = "coat" - flags_marine_armor = NO_FLAGS //No shoulder light. - actions_types = list() - slowdown = SLOWDOWN_ARMOR_LIGHT - storage_slots = 2 - movement_compensation = SLOWDOWN_ARMOR_LIGHT - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/van_bandolier) - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/storage/bible, - /obj/item/attachable/bayonet, - /obj/item/storage/backpack/general_belt, - /obj/item/storage/large_holster/machete, - /obj/item/storage/belt/gun/m4a3, - /obj/item/storage/belt/gun/m44, - /obj/item/storage/belt/gun/smartpistol, - /obj/item/storage/belt/gun/flaregun, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - /obj/item/storage/belt/shotgun/van_bandolier, - ) - -//===========================//U.P.P\\================================\\ -//=====================================================================\\ - -/obj/item/clothing/suit/storage/marine/faction - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - min_cold_protection_temperature = HELMET_MIN_COLD_PROT - max_heat_protection_temperature = HELMET_MAX_HEAT_PROT - blood_overlay_type = "armor" - armor_melee = CLOTHING_ARMOR_MEDIUM - armor_bullet = CLOTHING_ARMOR_MEDIUM - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - slowdown = SLOWDOWN_ARMOR_MEDIUM - movement_compensation = SLOWDOWN_ARMOR_LIGHT - - -/obj/item/clothing/suit/storage/marine/faction/UPP - name = "\improper UM5 personal armor" - desc = "Standard body armor of the UPP military, the UM5 (Union Medium MK5) is a medium body armor, roughly on par with the M3 pattern body armor in service with the USCM, specialized towards ballistics protection. Unlike the M3, however, the plate has a heavier neckplate. This has earned many UA members to refer to UPP soldiers as 'tin men'." - icon_state = "upp_armor" - armor_bullet = CLOTHING_ARMOR_HIGH - armor_energy = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_HIGH - storage_slots = 1 - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP, /obj/item/clothing/under/marine/veteran/UPP/medic, /obj/item/clothing/under/marine/veteran/UPP/engi) - -/obj/item/clothing/suit/storage/marine/faction/UPP/support - name = "\improper UL6 personal armor" - desc = "Standard body armor of the UPP military, the UL6 (Union Light MK6) is a light body armor, slightly weaker than the M3 pattern body armor in service with the USCM, specialized towards ballistics protection. This set of personal armor lacks the iconic neck piece and some of the armor in favor of user mobility." - storage_slots = 3 - icon_state = "upp_armor_support" - slowdown = SLOWDOWN_ARMOR_LIGHT - armor_melee = CLOTHING_ARMOR_HIGH - armor_energy = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_HIGH - -/obj/item/clothing/suit/storage/marine/faction/UPP/commando - name = "\improper UM5CU personal armor" - desc = "A modification of the UM5, designed for stealth operations." - icon_state = "upp_armor_commando" - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LIGHT - -/obj/item/clothing/suit/storage/marine/faction/UPP/heavy - name = "\improper UH7 heavy plated armor" - desc = "An extremely heavy-duty set of body armor in service with the UPP military, the UH7 (Union Heavy MK7) is known for having powerful ballistic protection, alongside a noticeable neck guard, fortified in order to allow the wearer to endure the stresses of the bulky helmet." - icon_state = "upp_armor_heavy" - storage_slots = 3 - slowdown = SLOWDOWN_ARMOR_HEAVY - flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN - flags_armor_protection = BODY_FLAG_ALL_BUT_HEAD - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_HIGHPLUS - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_MEDIUM - armor_bomb = CLOTHING_ARMOR_HIGH - armor_bio = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS - -/obj/item/clothing/suit/storage/marine/faction/UPP/heavy/Initialize() - . = ..() - pockets.bypass_w_limit = list( - /obj/item/ammo_magazine/minigun, - /obj/item/ammo_magazine/pkp, - ) - -/obj/item/clothing/suit/storage/marine/faction/UPP/officer - name = "\improper UL4 officer jacket" - desc = "A lightweight jacket, issued to officers of the UPP's military. Slightly protective from incoming damage, best off with proper armor however." - icon_state = "upp_coat_officer" - slowdown = SLOWDOWN_ARMOR_NONE - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS - armor_melee = CLOTHING_ARMOR_LOW //wear actual armor if you go into combat - armor_bullet = CLOTHING_ARMOR_LOW - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_LOW - armor_bio = CLOTHING_ARMOR_LOW - armor_rad = CLOTHING_ARMOR_LOW - armor_internaldamage = CLOTHING_ARMOR_LOW - storage_slots = 3 - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP/officer) - -/obj/item/clothing/suit/storage/marine/faction/UPP/kapitan - name = "\improper UL4 senior officer jacket" - desc = "A lightweight jacket, issued to senior officers of the UPP's military. Made of high-quality materials, even going as far as having the ranks and insignia of the Kapitan and their Company emblazoned on the shoulders and front of the jacket. Slightly protective from incoming damage, best off with proper armor however." - icon_state = "upp_coat_kapitan" - slowdown = SLOWDOWN_ARMOR_NONE - armor_melee = CLOTHING_ARMOR_LOW //wear actual armor if you go into combat - armor_bullet = CLOTHING_ARMOR_LOW - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_LOW - armor_bio = CLOTHING_ARMOR_LOW - armor_rad = CLOTHING_ARMOR_LOW - armor_internaldamage = CLOTHING_ARMOR_LOW - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS - storage_slots = 4 - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP/officer) - -/obj/item/clothing/suit/storage/marine/faction/UPP/mp - name = "\improper UL4 camouflaged jacket" - desc = "A lightweight jacket, issued to troops when they're not expected to engage in combat. Still studded to the brim with kevlar shards, though the synthread construction reduces its effectiveness." - icon_state = "upp_coat_mp" - slowdown = SLOWDOWN_ARMOR_NONE - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS - armor_melee = CLOTHING_ARMOR_LOW //wear actual armor if you go into combat - armor_bullet = CLOTHING_ARMOR_LOW - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_LOW - armor_bio = CLOTHING_ARMOR_LOW - armor_rad = CLOTHING_ARMOR_LOW - armor_internaldamage = CLOTHING_ARMOR_LOW - storage_slots = 4 - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP) - valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL) - restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) - -/obj/item/clothing/suit/storage/marine/faction/UPP/jacket/ivan - name = "\improper UH4 Camo Jacket" - desc = "An experimental heavily armored variant of the UL4 given to only the most elite units... usually." - slowdown = SLOWDOWN_ARMOR_MEDIUM - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS|BODY_FLAG_HANDS|BODY_FLAG_FEET - armor_melee = CLOTHING_ARMOR_HIGH - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_HIGH - armor_bio = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_HIGH - storage_slots = 2 - - -//===========================//FREELANCER\\================================\\ -//=====================================================================\\ - -/obj/item/clothing/suit/storage/marine/faction/freelancer - name = "freelancer cuirass" - desc = "An armored protective chestplate scrapped together from various plates. It keeps up remarkably well, as the craftsmanship is solid, and the design mirrors such armors in the UPP and the USCM. The many skilled craftsmen in the freelancers ranks produce these vests at a rate about one a month." - icon_state = "freelancer_armor" - slowdown = SLOWDOWN_ARMOR_LIGHT - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - storage_slots = 2 - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/freelancer) - -//this one is for CLF -/obj/item/clothing/suit/storage/militia - name = "colonial militia hauberk" - desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops." - icon = 'icons/obj/items/clothing/cm_suits.dmi' - icon_state = "rebel_armor" - item_icons = list( - WEAR_JACKET = 'icons/mob/humans/onmob/suit_1.dmi' - ) - sprite_sheets = list(SPECIES_MONKEY = 'icons/mob/humans/species/monkeys/onmob/suit_monkey_1.dmi') - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS - movement_compensation = SLOWDOWN_ARMOR_MEDIUM - armor_melee = CLOTHING_ARMOR_MEDIUM - armor_bullet = CLOTHING_ARMOR_MEDIUMLOW - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUM - storage_slots = 2 - uniform_restricted = list(/obj/item/clothing/under/colonist) - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine, - /obj/item/explosive/grenade, - /obj/item/device/binoculars, - /obj/item/attachable/bayonet, - /obj/item/storage/backpack/general_belt, - /obj/item/storage/large_holster/machete, - /obj/item/weapon/baseballbat, - /obj/item/weapon/baseballbat/metal, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS|BODY_FLAG_HANDS - min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROT - valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL) - -/obj/item/clothing/suit/storage/militia/Initialize() - . = ..() - pockets.max_w_class = SIZE_SMALL //Can contain small items AND rifle magazines. - pockets.bypass_w_limit = list( - /obj/item/ammo_magazine/rifle, - /obj/item/ammo_magazine/smg, - /obj/item/ammo_magazine/sniper, - ) - pockets.max_storage_space = 8 - -/obj/item/clothing/suit/storage/militia/vest - name = "colonial militia vest" - desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This extremely light variant protects only the chest and abdomen." - icon_state = "clf_2" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - slowdown = 0.2 - movement_compensation = SLOWDOWN_ARMOR_MEDIUM - -/obj/item/clothing/suit/storage/militia/brace - name = "colonial militia brace" - desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This extremely light variant has some of the chest pieces removed." - icon_state = "clf_3" - flags_armor_protection = BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - flags_cold_protection = BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - slowdown = 0.2 - movement_compensation = SLOWDOWN_ARMOR_MEDIUM - -/obj/item/clothing/suit/storage/militia/partial - name = "colonial militia partial hauberk" - desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This even lighter variant has some of the arm pieces removed." - icon_state = "clf_4" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - slowdown = 0.2 - -/obj/item/clothing/suit/storage/militia/smartgun - name = "colonial militia harness" - desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This one has straps interweaved with the plates, that allow the user to fire a captured smartgun, if a bit uncomfortably." - flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS - -/obj/item/clothing/suit/storage/CMB - name = "\improper CMB jacket" - desc = "A black jacket worn by Colonial Marshals. The back is enscribed with the powerful letters of 'MARSHAL' representing justice, authority, and protection in the outer rim. The laws of the Earth stretch beyond the Sol." - icon_state = "CMB_jacket" - blood_overlay_type = "coat" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS - armor_melee = CLOTHING_ARMOR_MEDIUMLOW - armor_bullet = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_LOW - armor_bio = CLOTHING_ARMOR_LOW - armor_internaldamage = CLOTHING_ARMOR_LOW - allowed = list( - /obj/item/weapon/gun, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/device/binoculars, - /obj/item/attachable/bayonet, - /obj/item/device/flashlight, - /obj/item/device/healthanalyzer, - /obj/item/device/radio, - /obj/item/tank/emergency_oxygen, - /obj/item/tool/crowbar, - /obj/item/tool/crew_monitor, - /obj/item/tool/pen, - /obj/item/storage/belt/gun/m4a3, - /obj/item/storage/belt/gun/m44, - /obj/item/storage/belt/gun/mateba, - /obj/item/storage/belt/gun/smartpistol, - /obj/item/storage/large_holster/machete, - /obj/item/storage/large_holster/katana, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR) - restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) - -/obj/item/clothing/suit/storage/CMB/Initialize() - . = ..() - pockets.max_w_class = SIZE_SMALL //Can contain small items AND rifle magazines. - pockets.bypass_w_limit = list( - /obj/item/ammo_magazine/rifle, - /obj/item/ammo_magazine/smg, - /obj/item/ammo_magazine/sniper, - ) - pockets.max_storage_space = 8 - -/obj/item/clothing/suit/storage/RO - name = "quartermaster jacket" - desc = "A green jacket worn by USCM personnel. The back has the flag of the United Americas on it." - icon_state = "RO_jacket" - blood_overlay_type = "coat" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_ARMS - valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL) - restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) - -//===========================//HELGHAST - MERCENARY\\================================\\ -//=====================================================================\\ - -/obj/item/clothing/suit/storage/marine/veteran/mercenary - name = "\improper K12 ceramic plated armor" - desc = "A set of grey, heavy ceramic armor with dark blue highlights. It is the standard uniform of an unknown mercenary group working in the sector." - icon_state = "mercenary_heavy_armor" - flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN - armor_melee = CLOTHING_ARMOR_VERYHIGH - armor_bullet = CLOTHING_ARMOR_VERYHIGH - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_HIGHPLUS - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LIGHT - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine/, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/explosive/grenade, - /obj/item/storage/bible, - /obj/item/weapon/sword/machete, - /obj/item/attachable/bayonet, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/mercenary) - item_state_slots = list(WEAR_JACKET = "mercenary_heavy_armor") - -/obj/item/clothing/suit/storage/marine/veteran/mercenary/heavy - name = "\improper Modified K12 ceramic plated armor" - desc = "A set of grey, heavy ceramic armor with dark blue highlights. It has been modified with extra ceramic plates placed in its storage pouch, and seems intended to support an extremely heavy weapon." - armor_melee = CLOTHING_ARMOR_ULTRAHIGH - armor_bullet = CLOTHING_ARMOR_ULTRAHIGHPLUS - armor_bomb = CLOTHING_ARMOR_HIGHPLUS - armor_bio = CLOTHING_ARMOR_HIGHPLUS - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_VERYHIGHPLUS - storage_slots = 1 - -/obj/item/clothing/suit/storage/marine/veteran/mercenary/miner - name = "\improper Y8 armored miner vest" - desc = "A set of beige, light armor built for protection while mining. It is a specialized uniform of an unknown mercenary group working in the sector." - icon_state = "mercenary_miner_armor" - storage_slots = 3 - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine/, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/explosive/grenade, - /obj/item/storage/bible, - /obj/item/weapon/sword/machete, - /obj/item/attachable/bayonet, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/mercenary) - item_state_slots = list(WEAR_JACKET = "mercenary_miner_armor") - -/obj/item/clothing/suit/storage/marine/veteran/mercenary/support - name = "\improper Z7 armored vest" - desc = "A set of blue armor with yellow highlights built for protection while building or carrying out medical treatment in highly dangerous environments. It is a specialized uniform of an unknown mercenary group working in the sector." - icon_state = "mercenary_engineer_armor" - item_state_slots = list(WEAR_JACKET = "mercenary_engineer_armor") - -/obj/item/clothing/suit/storage/marine/M3G/hefa - name = "\improper HEFA Knight armor" - desc = "A thick piece of armor adorning a HEFA. Usually seen on a HEFA knight." - specialty = "HEFA Knight" - icon_state = "hefadier" - flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE - flags_item = NO_CRYO_STORE - flags_marine_armor = ARMOR_LAMP_OVERLAY - armor_bullet = CLOTHING_ARMOR_VERYHIGH - armor_melee = CLOTHING_ARMOR_VERYHIGH - armor_bomb = CLOTHING_ARMOR_GIGAHIGH - - -//=========================//PROVOST\\================================\\ -//=======================================================================\\ - -/obj/item/clothing/suit/storage/marine/MP/provost - name = "\improper M3 pattern Provost armor" - desc = "A standard Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." - icon_state = "pvmedium" - item_state_slots = list(WEAR_JACKET = "pvmedium") - slowdown = SLOWDOWN_ARMOR_LIGHT - armor_bullet = CLOTHING_ARMOR_MEDIUM - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUMHIGH - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUM - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - storage_slots = 3 - -/obj/item/clothing/suit/storage/marine/MP/provost/tml - name = "\improper M3 pattern Senior Provost armor" - desc = "A more refined Provost M3 Pattern Chestplate for senior officers. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." - icon_state = "pvleader" - item_state_slots = list(WEAR_JACKET = "pvleader") - -/obj/item/clothing/suit/storage/marine/MP/provost/marshal - name = "\improper M5 pattern Provost Marshal armor" - desc = "A custom fit luxury armor suit for Provost Marshals. Useful for letting your men know who is in charge when taking to the field." - icon_state = "pvmarshal" - item_state_slots = list(WEAR_JACKET = "pvmarshal") - w_class = SIZE_MEDIUM - storage_slots = 4 - -/obj/item/clothing/suit/storage/marine/MP/provost/light - name = "\improper M3 pattern Provost light armor" - desc = "A lighter Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." - icon_state = "pvlight" - item_state_slots = list(WEAR_JACKET = "pvlight") - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT - -/obj/item/clothing/suit/storage/marine/MP/provost/light/flexi - name = "\improper M3 pattern Provost flexi-armor" - desc = "A flexible and easy to store M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." - w_class = SIZE_MEDIUM - icon_state = "pvlight_2" - item_state_slots = list(WEAR_JACKET = "pvlight_2") - storage_slots = 2 - -//================//UNITED AMERICAS ALLIED COMMAND\\=====================\\ -//=======================================================================\\ - -/obj/item/clothing/suit/storage/marine/uaac/tis/sa - name = "\improper M3 pattern UAAC-TIS Special Agent Armor" - desc = "A modified luxury armor, originally meant for a USCM Provost Marshall, modified to use the colors and insignia of the TIS. The Three Eyes is technically able to requisition any equipment or personnel to fulfill its mission and often uses this privilege to outfit their agents with high-quality gear from other UA military forces." - icon_state = "tis" - item_state_slots = list(WEAR_JACKET = "tis") - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_laser = CLOTHING_ARMOR_LOW - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LIGHT - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine/, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/explosive/grenade, - /obj/item/device/binoculars, - /obj/item/attachable/bayonet, - /obj/item/storage/backpack/general_belt, - /obj/item/device/hailer, - /obj/item/storage/belt/gun, - /obj/item/weapon/sword/ceremonial, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - uniform_restricted = list(/obj/item/clothing/under/uaac/tis) - -//================//UNITED AMERICAS RIOT CONTROL\\=====================\\ -//=======================================================================\\ - -/obj/item/clothing/suit/storage/marine/veteran/ua_riot - name = "\improper UA-M1 body armor" - desc = "Based on the M-3 pattern employed by the USCM, the UA-M1 body armor is employed by UA security, riot control and union-busting teams. While robust against melee and bullet attacks, it critically lacks coverage of the legs and arms." - icon_state = "ua_riot" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_energy = CLOTHING_ARMOR_MEDIUM - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT // it's lighter - uniform_restricted = list(/obj/item/clothing/under/marine/ua_riot) - flags_atom = NO_SNOW_TYPE - -//==================War Correspondent==================\\ - -/obj/item/clothing/suit/storage/marine/light/reporter - name = "press body armor" - desc = "Body armor used by war correspondents in battles and wars across the universe." - icon = 'icons/mob/humans/onmob/contained/war_correspondent.dmi' - icon_state = "wc_armor" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - contained_sprite = TRUE - - -//=ROYAL MARINES=\\ - -/obj/item/clothing/suit/storage/marine/veteran/royal_marine - name = "kestrel armoured vest" - desc = "A customizable personal armor system used by the Three World Empire's Royal Marines Commandos. Designers from a Weyland Yutani subsidary, Lindenthal-Ehrenfeld Militärindustrie, iterated on the USCMC's M3 pattern personal armor in their Tokonigara lab to create an armor systemed to suit the unique needs of the Three World Empire's smaller but better equipped Royal Marines." - icon_state = "rmc_light" - item_state = "rmc_light" - flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine/, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/explosive/grenade, - /obj/item/storage/bible, - /obj/item/weapon/sword/machete, - /obj/item/attachable/bayonet, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - -/obj/item/clothing/suit/storage/marine/veteran/royal_marine/light //RMC Rifleman Armor - icon_state = "rmc_light" - item_state = "rmc_light" - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - slowdown = SLOWDOWN_ARMOR_LIGHT - -/obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/team_leader //RMC TL & LT Armor - name = "kestrel armoured carry vest" - icon_state = "rmc_light_padded" - item_state = "rmc_light_padded" - storage_slots = 7 - -/obj/item/clothing/suit/storage/marine/veteran/royal_marine/smartgun //Smartgun Spec Armor - name = "kestrel armoured smartgun harness" - icon_state = "rmc_smartgun" - item_state = "rmc_smartgun" - flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN|SMARTGUN_HARNESS - -/obj/item/clothing/suit/storage/marine/veteran/royal_marine/pointman //Pointman Spec Armor - name = "kestrel pointman armour" - desc = "A heavier version of the armor system used by the Three World Empire's Royal Marines Commandos. Designers from a Weyland Yutani subsidary, Lindenthal-Ehrenfeld Militärindustrie, iterated on the USCMC's M3 pattern personal armor in their Tokonigara lab to create an armor systemed to suit the unique needs of the Three World Empire's smaller but better equipped Royal Marines." - icon_state = "rmc_pointman" - item_state = "rmc_pointman" - armor_melee = CLOTHING_ARMOR_HIGH - armor_bullet = CLOTHING_ARMOR_HIGHPLUS - armor_bomb = CLOTHING_ARMOR_HIGHPLUS - armor_bio = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - storage_slots = 7 - slowdown = SLOWDOWN_ARMOR_LOWHEAVY - movement_compensation = SLOWDOWN_ARMOR_MEDIUM - -/atom/movable/marine_light - light_system = DIRECTIONAL_LIGHT - -//CBRN -/obj/item/clothing/suit/storage/marine/cbrn - name = "\improper M3-M armor" - desc = "While lacking the appearance of the M3 pattern armor worn in regular service, this armor piece is still a derivative of it. It has been heavily modified to fit over the MOPP suit with additional padding and Venlar composite layers removed, so as not to restrict the wearer’s movement. However, with the reduction of composite layers, the personal protection offered is less than desired with complaints having been lodged since 2165." - icon_state = "cbrn" - item_state = "cbrn" - slowdown = SLOWDOWN_ARMOR_HEAVY - armor_melee = CLOTHING_ARMOR_MEDIUM - armor_bullet = CLOTHING_ARMOR_MEDIUM - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_LOW - armor_rad =CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_LOW - flags_marine_armor = NO_FLAGS - flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE - flags_inventory = BLOCKSHARPOBJ - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - uniform_restricted = list(/obj/item/clothing/under/marine/cbrn) - -/obj/item/clothing/suit/storage/marine/cbrn/advanced - slowdown = SLOWDOWN_ARMOR_LOWHEAVY - armor_melee = CLOTHING_ARMOR_HIGH - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_bomb = CLOTHING_ARMOR_ULTRAHIGH - armor_bio = CLOTHING_ARMOR_GIGAHIGHPLUS - armor_rad = CLOTHING_ARMOR_GIGAHIGHPLUS - armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS diff --git a/code/modules/clothing/suits/marine_armor/_marine_armor.dm b/code/modules/clothing/suits/marine_armor/_marine_armor.dm new file mode 100644 index 000000000000..89b284be86b0 --- /dev/null +++ b/code/modules/clothing/suits/marine_armor/_marine_armor.dm @@ -0,0 +1,669 @@ +#define DEBUG_ARMOR_PROTECTION 0 + +#if DEBUG_ARMOR_PROTECTION +/mob/living/carbon/human/verb/check_overall_protection() + set name = "Get Armor Value" + set category = "Debug" + set desc = "Shows the armor value of the bullet category." + + var/armor = 0 + var/counter = 0 + for(var/X in H.limbs) + var/obj/limb/E = X + armor = getarmor_organ(E, ARMOR_BULLET) + to_chat(src, SPAN_DEBUG("[E.name] is protected with [armor] armor against bullets.")) + counter += armor + to_chat(src, SPAN_DEBUG("The overall armor score is: [counter].")) +#endif + +//=======================================================================\\ +//=======================================================================\\ + +#define ALPHA 1 +#define BRAVO 2 +#define CHARLIE 3 +#define DELTA 4 +#define ECHO 5 +#define CRYO 6 +#define SOF 7 +#define NOSQUAD 8 + +// MARINE STORAGE ARMOR + +/obj/item/clothing/suit/storage/marine + name = "\improper M3 pattern marine armor" + desc = "A standard Colonial Marines M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." + icon = 'icons/obj/items/clothing/cm_suits.dmi' + icon_state = "1" + item_state = "marine_armor" //Make unique states for Officer & Intel armors. + item_icons = list( + WEAR_JACKET = 'icons/mob/humans/onmob/suit_1.dmi' + ) + flags_atom = FPRINT|CONDUCT + flags_inventory = BLOCKSHARPOBJ + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + min_cold_protection_temperature = HELMET_MIN_COLD_PROT + max_heat_protection_temperature = HELMET_MAX_HEAT_PROT + blood_overlay_type = "armor" + armor_melee = CLOTHING_ARMOR_MEDIUM + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_NONE + armor_bomb = CLOTHING_ARMOR_MEDIUMLOW + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_MEDIUM + movement_compensation = SLOWDOWN_ARMOR_LIGHT + storage_slots = 3 + siemens_coefficient = 0.7 + slowdown = SLOWDOWN_ARMOR_MEDIUM + allowed = list( + /obj/item/weapon/gun, + /obj/item/prop/prop_gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/storage/bible, + /obj/item/attachable/bayonet, + /obj/item/storage/backpack/general_belt, + /obj/item/storage/large_holster/machete, + /obj/item/storage/belt/gun/type47, + /obj/item/storage/belt/gun/m4a3, + /obj/item/storage/belt/gun/m44, + /obj/item/storage/belt/gun/smartpistol, + /obj/item/storage/belt/gun/flaregun, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + /obj/item/storage/belt/gun/m39, + /obj/item/storage/belt/gun/xm51, + ) + valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_PONCHO) + + light_power = 3 + light_range = 4 + light_system = MOVABLE_LIGHT + + var/flashlight_cooldown = 0 //Cooldown for toggling the light + var/locate_cooldown = 0 //Cooldown for SL locator + var/armor_overlays[] + actions_types = list(/datum/action/item_action/toggle) + var/flags_marine_armor = ARMOR_SQUAD_OVERLAY|ARMOR_LAMP_OVERLAY + var/specialty = "M3 pattern marine" //Same thing here. Give them a specialty so that they show up correctly in vendors. speciality does NOTHING if you have NO_NAME_OVERRIDE + w_class = SIZE_HUGE + uniform_restricted = list(/obj/item/clothing/under/marine) + sprite_sheets = list(SPECIES_MONKEY = 'icons/mob/humans/species/monkeys/onmob/suit_monkey_1.dmi') + time_to_unequip = 20 + time_to_equip = 20 + pickup_sound = "armorequip" + drop_sound = "armorequip" + equip_sounds = list('sound/handling/putting_on_armor1.ogg') + var/armor_variation = 0 + /// The dmi where the grayscale squad overlays are contained + var/squad_overlay_icon = 'icons/mob/humans/onmob/suit_1.dmi' + + var/atom/movable/marine_light/light_holder + +/obj/item/clothing/suit/storage/marine/Initialize(mapload) + . = ..() + if(!(flags_atom & NO_NAME_OVERRIDE)) + name = "[specialty]" + if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) + name += " snow armor" //Leave marine out so that armors don't have to have "Marine" appended (see: generals). + else + name += " armor" + + if(!(flags_atom & NO_SNOW_TYPE)) + select_gamemode_skin(type) + armor_overlays = list("lamp") //Just one for now, can add more later. + if(armor_variation && mapload) + set_armor_style("Random") + update_icon() + pockets.max_w_class = SIZE_SMALL //Can contain small items AND rifle magazines. + pockets.bypass_w_limit = list( + /obj/item/ammo_magazine/rifle, + /obj/item/ammo_magazine/smg, + /obj/item/ammo_magazine/sniper, + ) + pockets.max_storage_space = 8 + + light_holder = new(src) + +/obj/item/clothing/suit/storage/marine/Destroy() + QDEL_NULL(light_holder) + return ..() + +/obj/item/clothing/suit/storage/marine/update_icon(mob/user) + var/image/I + armor_overlays["lamp"] = null + if(flags_marine_armor & ARMOR_LAMP_OVERLAY) + if(flags_marine_armor & ARMOR_LAMP_ON) + I = image('icons/obj/items/clothing/cm_suits.dmi', src, "lamp-on") + else + I = image('icons/obj/items/clothing/cm_suits.dmi', src, "lamp-off") + armor_overlays["lamp"] = I + overlays += I + else armor_overlays["lamp"] = null + if(user) user.update_inv_wear_suit() + + +/obj/item/clothing/suit/storage/marine/post_vendor_spawn_hook(mob/living/carbon/human/user) //used for randomizing/selecting a variant for armors. + if(!armor_variation) + return + + if(user?.client?.prefs) + // Set the armor style to the user's preference. + set_armor_style(user.client.prefs.preferred_armor) + else + // Or if that isn't possible, just pick a random one. + set_armor_style("Random") + update_icon(user) + +/obj/item/clothing/suit/storage/marine/attack_self(mob/user) + ..() + + if(!isturf(user.loc)) + to_chat(user, SPAN_WARNING("You cannot turn the light [light_on ? "off" : "on"] while in [user.loc].")) //To prevent some lighting anomalies. + return + + if(flashlight_cooldown > world.time) + return + if(!ishuman(user)) + return + + var/mob/living/carbon/human/H = user + if(H.wear_suit != src) + return + + turn_light(user, !light_on) + +/obj/item/clothing/suit/storage/marine/item_action_slot_check(mob/user, slot) + if(!ishuman(user)) + return FALSE + if(slot != WEAR_JACKET) + return FALSE + return TRUE //only give action button when armor is worn. + +/obj/item/clothing/suit/storage/marine/turn_light(mob/user, toggle_on) + . = ..() + if(. != CHECKS_PASSED) + return + set_light_range(initial(light_range)) + set_light_power(Floor(initial(light_power) * 0.5)) + set_light_on(toggle_on) + flags_marine_armor ^= ARMOR_LAMP_ON + + light_holder.set_light_flags(LIGHT_ATTACHED) + light_holder.set_light_range(initial(light_range)) + light_holder.set_light_power(initial(light_power)) + light_holder.set_light_on(toggle_on) + + if(!toggle_on) + playsound(src, 'sound/handling/click_2.ogg', 50, 1) + + playsound(src, 'sound/handling/suitlight_on.ogg', 50, 1) + update_icon(user) + + for(var/X in actions) + var/datum/action/A = X + A.update_button_icon() + +/obj/item/clothing/suit/storage/marine/mob_can_equip(mob/living/carbon/human/M, slot, disable_warning = 0) + . = ..() + if (.) + if(issynth(M) && M.allow_gun_usage == FALSE && !(flags_marine_armor & SYNTH_ALLOWED)) + M.visible_message(SPAN_DANGER("Your programming prevents you from wearing this!")) + return 0 + +/** + * Updates the armor's `icon_state` to the style represented by `new_style`. + * + * Arguments: + * * new_style - The new armor style. May only be one of `GLOB.armor_style_list`'s keys, or `"Random"`. + */ +/obj/item/clothing/suit/storage/marine/proc/set_armor_style(new_style) + // Regex to match one or more digits. + var/static/regex/digits = new("\\d+") + // Integer for the new armor style's `icon_state`. + var/new_look + + if(new_style == "Random") + // The style icon states are all numbers between 1 and `armor_variation`, so this picks a random one. + new_look = rand(1, armor_variation) + else + new_look = GLOB.armor_style_list[new_style] + + // Replace the digits in the current icon state with `new_look`. (E.g. "L6" -> "L2") + icon_state = digits.Replace(icon_state, new_look) + +/obj/item/clothing/suit/storage/marine/medium/rto + icon_state = "io" + armor_variation = 0 + name = "\improper M4 pattern marine armor" + desc = "A well tinkered and crafted hybrid of Smart-Gunner mesh and M3 pattern plates. Robust, yet nimble, with room for all your pouches." + armor_bio = CLOTHING_ARMOR_MEDIUMHIGH + armor_rad = CLOTHING_ARMOR_MEDIUM + storage_slots = 4 + light_range = 5 //slightly higher + specialty = "M4 pattern marine" + +/obj/item/clothing/suit/storage/marine/MP + name = "\improper M2 pattern MP armor" + desc = "A standard Colonial Marines M2 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." + icon_state = "mp_armor" + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_LOW + armor_laser = CLOTHING_ARMOR_LOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LIGHT + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine/, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/weapon/baton, + /obj/item/handcuffs, + /obj/item/explosive/grenade, + /obj/item/device/binoculars, + /obj/item/attachable/bayonet, + /obj/item/storage/backpack/general_belt, + /obj/item/device/hailer, + /obj/item/storage/belt/gun, + /obj/item/weapon/sword/ceremonial, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + uniform_restricted = list(/obj/item/clothing/under/marine/mp) + specialty = "M2 pattern MP" + item_state_slots = list(WEAR_JACKET = "mp_armor") + black_market_value = 20 + +/obj/item/clothing/suit/storage/marine/MP/warden + icon_state = "warden" + name = "\improper M3 pattern warden MP armor" + desc = "A well-crafted suit of M3 Pattern Armor typically distributed to Wardens. Useful for letting your men know who is in charge." + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUMLOW + uniform_restricted = list(/obj/item/clothing/under/marine/warden) + specialty = "M3 pattern warden MP" + item_state_slots = list(WEAR_JACKET = "warden") + +/obj/item/clothing/suit/storage/marine/MP/WO + icon_state = "warrant_officer" + name = "\improper M3 pattern chief MP armor" + desc = "A well-crafted suit of M3 Pattern Armor typically distributed to Chief MPs. Useful for letting your men know who is in charge." + uniform_restricted = list(/obj/item/clothing/under/marine/officer/warrant) + specialty = "M3 pattern chief MP" + item_state_slots = list(WEAR_JACKET = "warrant_officer") + black_market_value = 30 + +/obj/item/clothing/suit/storage/marine/MP/general + name = "\improper M3 pattern general officer armor" + desc = "A well-crafted suit of M3 Pattern Armor with a gold shine. It looks very expensive, but shockingly fairly easy to carry and wear." + icon_state = "general" + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_bio = CLOTHING_ARMOR_MEDIUM + uniform_restricted = list(/obj/item/clothing/under/marine/officer/general) + specialty = "M3 pattern general" + item_state_slots = list(WEAR_JACKET = "general") + w_class = SIZE_MEDIUM + +/obj/item/clothing/suit/storage/marine/MP/SO + name = "\improper M3 pattern officer armor" + desc = "A well-crafted suit of M3 Pattern Armor typically found in the hands of higher-ranking officers. Useful for letting your men know who is in charge when taking to the field." + icon_state = "officer" + storage_slots = 3 + flags_atom = null + uniform_restricted = list(/obj/item/clothing/under/marine/officer, /obj/item/clothing/under/rank/qm_suit, /obj/item/clothing/under/rank/chief_medical_officer, /obj/item/clothing/under/marine/dress) + specialty = "M3 pattern officer" + item_state_slots = list(WEAR_JACKET = "officer") + +//Making a new object because we might want to edit armor values and such. +//Or give it its own sprite. It's more for the future. +/obj/item/clothing/suit/storage/marine/MP/CO + name = "\improper M3 pattern commanding officer armor" + desc = "A robust, well-polished suit of armor for the Commanding Officer. Custom-made to fit its owner with special straps to operate a smartgun. Show those Marines who's really in charge." + icon_state = "co_officer" + item_state = "co_officer" + armor_bullet = CLOTHING_ARMOR_HIGH + storage_slots = 3 + flags_atom = NO_SNOW_TYPE + flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS + uniform_restricted = list(/obj/item/clothing/under/marine, /obj/item/clothing/under/rank/qm_suit) + specialty = "M3 pattern captain" + item_state_slots = list(WEAR_JACKET = "co_officer") + valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_RANK, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_PONCHO) + black_market_value = 35 + + +/obj/item/clothing/suit/storage/marine/MP/CO/jacket + name = "\improper M3 pattern commanding officer armored coat" + desc = "A robust, well-polished suit of armor for the Commanding Officer. Custom-made to fit its owner with special straps to operate a smartgun. Show those Marines who's really in charge. This one has a coat over it for added warmth." + icon_state = "bridge_coat_armored" + item_state = "bridge_coat_armored" + item_state_slots = list(WEAR_JACKET = "bridge_coat_armored") + valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_RANK) + +/obj/item/clothing/suit/storage/marine/medium/leader + name = "\improper B12 pattern marine armor" + desc = "A lightweight suit of carbon fiber body armor built for quick movement. Designed in a lovely forest green. Use it to toggle the built-in flashlight." + icon_state = "7" + armor_variation = 0 + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + specialty = "B12 pattern marine" + light_range = 5 + +/obj/item/clothing/suit/storage/marine/tanker + name = "\improper M3 pattern tanker armor" + desc = "A modified and refashioned suit of M3 Pattern armor designed to be worn by the loader of a USCM vehicle crew. While the suit is a bit more encumbering to wear with the crewman uniform, it offers the loader a degree of protection that would otherwise not be enjoyed." + icon_state = "tanker" + uniform_restricted = list(/obj/item/clothing/under/marine/officer/tanker) + specialty = "M3 pattern tanker" + storage_slots = 2 + +//===========================//PFC ARMOR CLASSES\\================================\\ +//=================================================================================\\ + +// M3 pattern marine armor +/obj/item/clothing/suit/storage/marine/medium + armor_variation = 6 + light_power = 4 + +/obj/item/clothing/suit/storage/marine/medium/padded + name = "M3 pattern padded marine armor" + icon_state = "1" + armor_variation = 0 + specialty = "M3 pattern padded marine" + +/obj/item/clothing/suit/storage/marine/medium/padless + name = "M3 pattern padless marine armor" + icon_state = "2" + armor_variation = 0 + specialty = "M3 pattern padless marine" + +/obj/item/clothing/suit/storage/marine/medium/padless_lines + name = "M3 pattern ridged marine armor" + icon_state = "3" + armor_variation = 0 + specialty = "M3 pattern ridged marine" + +/obj/item/clothing/suit/storage/marine/medium/carrier + name = "M3 pattern carrier marine armor" + icon_state = "4" + armor_variation = 0 + specialty = "M3 pattern carrier marine" + +/obj/item/clothing/suit/storage/marine/medium/skull + name = "M3 pattern skull marine armor" + icon_state = "5" + armor_variation = 0 + specialty = "M3 pattern skull marine" + +/obj/item/clothing/suit/storage/marine/medium/smooth + name = "M3 pattern smooth marine armor" + icon_state = "6" + armor_variation = 0 + specialty = "M3 pattern smooth marine" + +// M3-L pattern light armor +/obj/item/clothing/suit/storage/marine/light + name = "\improper M3-L pattern light armor" + desc = "A lighter, cut down version of the standard M3 pattern armor. It sacrifices durability for more speed." + specialty = "\improper M3-L pattern light" + icon_state = "L1" + armor_variation = 6 + slowdown = SLOWDOWN_ARMOR_LIGHT + armor_melee = CLOTHING_ARMOR_MEDIUMLOW + armor_bullet = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_LOW + storage_slots = 2 + +/obj/item/clothing/suit/storage/marine/light/padded + icon_state = "L1" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/light/padless + icon_state = "L2" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/light/padless_lines + icon_state = "L3" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/light/carrier + icon_state = "L4" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/light/skull + icon_state = "L5" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/light/smooth + icon_state = "L6" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/light/vest + name = "\improper M3-VL pattern ballistics vest" + desc = "Up until 2182 USCM non-combat personnel were issued non-standardized ballistics vests, though the lack of IMP compatibility and suit lamps proved time and time again inefficient. This modified M3-L shell is the result of a 6-year R&D program; It provides utility, protection, AND comfort to all USCM non-combat personnel." + icon_state = "VL" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + flags_marine_armor = ARMOR_LAMP_OVERLAY //No squad colors when wearing this since it'd look funny. + armor_melee = CLOTHING_ARMOR_MEDIUMLOW + armor_bullet = CLOTHING_ARMOR_HIGH + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_LOW + armor_bio = CLOTHING_ARMOR_VERYLOW + armor_rad = CLOTHING_ARMOR_NONE + armor_internaldamage = CLOTHING_ARMOR_MEDIUM + storage_slots = 1 + time_to_unequip = 0.5 SECONDS + time_to_equip = 1 SECONDS + siemens_coefficient = 0.7 + uniform_restricted = null + +/obj/item/clothing/suit/storage/marine/light/vest/dcc + name = "\improper M3-VL pattern flak vest" + desc = "A combination of the standard non-combat M3-VL ballistics vest and M70 flak jacket, this piece of armor has been distributed to dropship crew to keep them safe from threats external and internal..." + icon_state = "VL_FLAK" + storage_slots = 2 + +/obj/item/clothing/suit/storage/marine/light/synvest + name = "\improper M3A1 Synthetic Utility Vest" + desc = "This variant of the ubiquitous M3 pattern ballistics vest has been extensively modified, providing no protection in exchange for maximum mobility and storage space. Synthetic programming compliant." + icon_state = "VL_syn_camo" + flags_atom = NO_NAME_OVERRIDE + flags_marine_armor = ARMOR_LAMP_OVERLAY|SYNTH_ALLOWED //No squad colors + can be worn by synths. + armor_melee = CLOTHING_ARMOR_NONE + armor_bullet = CLOTHING_ARMOR_NONE + armor_laser = CLOTHING_ARMOR_NONE + armor_energy = CLOTHING_ARMOR_NONE + armor_bomb = CLOTHING_ARMOR_NONE + armor_bio = CLOTHING_ARMOR_NONE + armor_rad = CLOTHING_ARMOR_NONE + armor_internaldamage = CLOTHING_ARMOR_NONE + storage_slots = 3 + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT + time_to_unequip = 0.5 SECONDS + time_to_equip = 1 SECONDS + uniform_restricted = null + +/obj/item/clothing/suit/storage/marine/light/synvest/grey + icon_state = "VL_syn" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + +/obj/item/clothing/suit/storage/marine/light/synvest/jungle + icon_state = "VL_syn_camo" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + +/obj/item/clothing/suit/storage/marine/light/synvest/snow + icon_state = "s_VL_syn_camo" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + +/obj/item/clothing/suit/storage/marine/light/synvest/desert + icon_state = "d_VL_syn_camo" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + +/obj/item/clothing/suit/storage/marine/light/synvest/dgrey + icon_state = "c_VL_syn_camo" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + +// M3-EOD pattern heavy armor +/obj/item/clothing/suit/storage/marine/heavy + name = "\improper M3-EOD pattern heavy armor" + desc = "A heavier version of the standard M3 pattern armor, the armor is primarily designed to withstand ballistic, explosive, and internal damage, with the drawback of increased bulk and thus reduced movement speed, alongside little additional protection from standard blunt force impacts and biological threats." + desc_lore = "This configuration of the iconic armor was developed during the Canton War in 2160 between the UPP and USCM - Designed in response to a need for higher protection for ComTechs assigned as EODs during the conflict, this is the pinnacle of protection for your average marine. The shoulders and kneepads have both been expanded upon heavily, covering up the arteries on each limb. A special spall liner was developed for this suit, with the same technology being used in the M70 Flak Jacket being developed at the same time." + specialty = "\improper M3-EOD pattern" + icon_state = "H1" + armor_variation = 6 + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_HIGHPLUS + armor_bomb = CLOTHING_ARMOR_HIGHPLUS + armor_bio = CLOTHING_ARMOR_MEDIUMHIGH + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LOWHEAVY + movement_compensation = SLOWDOWN_ARMOR_MEDIUM + light_power = 4 + light_range = 5 + +/obj/item/clothing/suit/storage/marine/heavy/padded + icon_state = "H1" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/heavy/padless + icon_state = "H2" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/heavy/padless_lines + icon_state = "H3" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/heavy/carrier + icon_state = "H4" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/heavy/skull + icon_state = "H5" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/heavy/smooth + icon_state = "H6" + armor_variation = 0 + +//===========================//SPECIALIST\\================================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/specialist + name = "\improper B18 defensive armor" + desc = "A heavy, rugged set of armor plates for when you really, really need to not die horribly. Slows you down though.\nComes with two tricord injectors in each arm guard." + icon_state = "xarmor" + armor_melee = CLOTHING_ARMOR_HIGH + armor_bullet = CLOTHING_ARMOR_HIGH + armor_bomb = CLOTHING_ARMOR_VERYHIGH + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + storage_slots = 2 + flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + slowdown = SLOWDOWN_ARMOR_HEAVY + specialty = "B18 defensive" + unacidable = TRUE + var/injections = 4 + +/obj/item/clothing/suit/storage/marine/specialist/verb/inject() + set name = "Create Injector" + set category = "Object" + set src in usr + + if(usr.is_mob_incapacitated()) + return 0 + + if(!injections) + to_chat(usr, "Your armor is all out of injectors.") + return 0 + + if(usr.get_active_hand()) + to_chat(usr, "Your active hand must be empty.") + return 0 + + to_chat(usr, "You feel a faint hiss and an injector drops into your hand.") + var/obj/item/reagent_container/hypospray/autoinjector/skillless/O = new(usr) + usr.put_in_active_hand(O) + injections-- + playsound(src,'sound/machines/click.ogg', 15, 1) + return + +/obj/item/clothing/suit/storage/marine/M3G + name = "\improper M3-G4 grenadier armor" + desc = "A custom set of M3 armor packed to the brim with padding, plating, and every form of ballistic protection under the sun. Used exclusively by USCM Grenadiers." + icon_state = "grenadier" + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_bomb = CLOTHING_ARMOR_VERYHIGH + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN + flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + slowdown = SLOWDOWN_ARMOR_HEAVY + specialty = "M3-G4 grenadier" + unacidable = TRUE + +/obj/item/clothing/suit/storage/marine/M3T + name = "\improper M3-T light armor" + desc = "A custom set of M3 armor designed for users of long-ranged explosive weaponry." + icon_state = "demolitionist" + armor_bomb = CLOTHING_ARMOR_HIGH + slowdown = SLOWDOWN_ARMOR_LIGHT + specialty = "M3-T light" + flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE + unacidable = TRUE + +/obj/item/clothing/suit/storage/marine/M3S + name = "\improper M3-S light armor" + desc = "A custom set of M3 armor designed for USCM Scouts." + icon_state = "scout_armor" + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + slowdown = SLOWDOWN_ARMOR_LIGHT + specialty = "M3-S light" + flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE + unacidable = TRUE + +/obj/item/clothing/suit/storage/RO + name = "quartermaster jacket" + desc = "A green jacket worn by USCM personnel. The back has the flag of the United Americas on it." + icon_state = "RO_jacket" + blood_overlay_type = "coat" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_ARMS + valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL) + restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) + +//==================War Correspondent==================\\ + +/obj/item/clothing/suit/storage/marine/light/reporter + name = "press body armor" + desc = "Body armor used by war correspondents in battles and wars across the universe." + icon = 'icons/mob/humans/onmob/contained/war_correspondent.dmi' + icon_state = "wc_armor" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + contained_sprite = TRUE diff --git a/code/modules/clothing/suits/marine_armor/ert.dm b/code/modules/clothing/suits/marine_armor/ert.dm new file mode 100644 index 000000000000..17816b93dc15 --- /dev/null +++ b/code/modules/clothing/suits/marine_armor/ert.dm @@ -0,0 +1,822 @@ +//=============================//Marine Raiders\\==================================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/sof + name = "\improper SOF Armor" + desc = "A heavily customized suit of M3 armor. Used by Marine Raiders." + icon_state = "marsoc" + armor_melee = CLOTHING_ARMOR_HIGH + armor_bullet = CLOTHING_ARMOR_HIGH + armor_bomb = CLOTHING_ARMOR_VERYHIGH + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + slowdown = SLOWDOWN_ARMOR_LIGHT + unacidable = TRUE + flags_atom = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE|NO_SNOW_TYPE + storage_slots = 4 + + +//=============================//PMCs\\==================================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/veteran + flags_marine_armor = ARMOR_LAMP_OVERLAY + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE //Let's make these keep their name and icon. + +/obj/item/clothing/suit/storage/marine/veteran/pmc + name = "\improper M4 pattern PMC armor" + desc = "A modification of the standard Armat Systems M3 armor. Designed for high-profile security operators and corporate mercenaries in mind." + icon_state = "pmc_armor" + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LIGHT + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine/, + /obj/item/weapon/baton, + /obj/item/handcuffs, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/explosive/grenade, + /obj/item/storage/bible, + /obj/item/tool/crowbar, + /obj/item/storage/large_holster/katana, + /obj/item/storage/large_holster/machete, + /obj/item/weapon/sword/machete, + /obj/item/attachable/bayonet, + /obj/item/device/motiondetector, + /obj/item/tool/crew_monitor, + /obj/item/device/walkman, + ) + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc) + item_state_slots = list(WEAR_JACKET = "pmc_armor") + +/obj/item/clothing/suit/storage/marine/veteran/pmc/light + name = "\improper M4 pattern light PMC armor" + desc = "A modification of the standard Armat Systems M3 armor. Designed for high-profile security operators and corporate mercenaries in mind. Has some armor plating removed for extra mobility." + icon_state = "pmc_sniper" + armor_melee = CLOTHING_ARMOR_MEDIUMLOW + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT + item_state_slots = list(WEAR_JACKET = "pmc_sniper") + +/obj/item/clothing/suit/storage/marine/veteran/pmc/light/corporate + name = "\improper M1 pattern corporate security armor" + desc = "A basic vest with a Weyland-Yutani badge on the right breast. This is commonly worn by low-level guards protecting Weyland-Yutani facilities." + icon = 'icons/mob/humans/onmob/contained/wy_goons.dmi' + icon_state = "armor" + item_state = "armor" + item_state_slots = null + contained_sprite = TRUE + + 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" + item_state = "lead_armor" + +/obj/item/clothing/suit/storage/marine/veteran/pmc/leader + name = "\improper M4 pattern PMC leader armor" + desc = "A modification of the standard Armat Systems M3 armor. Designed for high-profile security operators and corporate mercenaries in mind. This particular suit looks like it belongs to a high-ranking officer." + icon_state = "officer_armor" + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc/leader) + item_state_slots = list(WEAR_JACKET = "officer_armor") + +/obj/item/clothing/suit/storage/marine/veteran/pmc/sniper + name = "\improper M4 pattern PMC sniper armor" + icon_state = "pmc_sniper" + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUM + flags_inv_hide = HIDELOWHAIR + item_state_slots = list(WEAR_JACKET = "pmc_sniper") + +/obj/item/clothing/suit/storage/marine/veteran/pmc/light/synth + name = "\improper 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." + time_to_unequip = 0.5 SECONDS + time_to_equip = 1 SECONDS + armor_melee = CLOTHING_ARMOR_NONE + armor_bullet = CLOTHING_ARMOR_NONE + armor_laser = CLOTHING_ARMOR_NONE + armor_energy = CLOTHING_ARMOR_NONE + armor_bomb = CLOTHING_ARMOR_NONE + armor_bio = CLOTHING_ARMOR_NONE + armor_rad = CLOTHING_ARMOR_NONE + armor_internaldamage = CLOTHING_ARMOR_NONE + storage_slots = 3 + slowdown = SLOWDOWN_ARMOR_SUPER_LIGHT + +/obj/item/clothing/suit/storage/marine/veteran/pmc/light/synth/Initialize() + flags_atom |= NO_NAME_OVERRIDE + flags_marine_armor |= SYNTH_ALLOWED + return ..() + +/obj/item/clothing/suit/storage/marine/smartgunner/veteran/pmc + name = "\improper PMC gunner armor" + desc = "A modification of the standard Armat Systems M3 armor. Hooked up with harnesses and straps allowing the user to carry an M56 Smartgun." + icon_state = "heavy_armor" + flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN|SMARTGUN_HARNESS + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + item_state_slots = list(WEAR_JACKET = "heavy_armor") + +/obj/item/clothing/suit/storage/marine/smartgunner/veteran/pmc/terminator + name = "\improper M5Xg exoskeleton gunner armor" + desc = "A complex system of overlapping plates intended to render the wearer all but impervious to small arms fire. A passive exoskeleton supports the weight of the armor, allowing a human to carry its massive bulk. This variant is designed to support a M56 Smartgun." + icon_state = "commando_armor" + slowdown = SLOWDOWN_ARMOR_MEDIUM + movement_compensation = SLOWDOWN_ARMOR_VERY_HEAVY + armor_melee = CLOTHING_ARMOR_HIGH + armor_bullet = CLOTHING_ARMOR_ULTRAHIGH + armor_laser = CLOTHING_ARMOR_MEDIUM + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bomb = CLOTHING_ARMOR_VERYHIGH + armor_rad = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc/commando) + item_state_slots = list(WEAR_JACKET = "commando_armor") + unacidable = TRUE + +/obj/item/clothing/suit/storage/marine/veteran/pmc/commando + name = "\improper M5X exoskeleton armor" + desc = "A complex system of overlapping plates intended to render the wearer all but impervious to small arms fire. A passive exoskeleton supports the weight of the armor, allowing a human to carry its massive bulk." + icon_state = "commando_armor" + slowdown = SLOWDOWN_ARMOR_MEDIUM + movement_compensation = SLOWDOWN_ARMOR_VERY_HEAVY + armor_melee = CLOTHING_ARMOR_VERYHIGH + armor_bullet = CLOTHING_ARMOR_ULTRAHIGH + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bomb = CLOTHING_ARMOR_VERYHIGH + armor_rad = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + flags_inventory = BLOCK_KNOCKDOWN + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc/commando) + item_state_slots = list(WEAR_JACKET = "commando_armor") + unacidable = TRUE + + +//===========================//DISTRESS\\================================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/veteran/bear + name = "\improper H1 Iron Bears vest" + desc = "A protective vest worn by Iron Bears mercenaries." + icon_state = "bear_armor" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/bear) + +/obj/item/clothing/suit/storage/marine/veteran/dutch + name = "\improper D2 armored vest" + desc = "A protective vest worn by some seriously experienced mercs." + icon_state = "dutch_armor" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS //Makes no sense but they need leg/arm armor too. + armor_melee = CLOTHING_ARMOR_HIGH + armor_bullet = CLOTHING_ARMOR_HIGHPLUS + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_HIGH + armor_rad = CLOTHING_ARMOR_MEDIUM + storage_slots = 2 + light_range = 7 + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/dutch) + +/obj/item/clothing/suit/storage/marine/veteran/van_bandolier + name = "safari jacket" + desc = "A tailored hunting jacket, cunningly lined with segmented armor plates. Sometimes the game shoots back." + icon_state = "van_bandolier" + item_state = "van_bandolier_jacket" + blood_overlay_type = "coat" + flags_marine_armor = NO_FLAGS //No shoulder light. + actions_types = list() + slowdown = SLOWDOWN_ARMOR_LIGHT + storage_slots = 2 + movement_compensation = SLOWDOWN_ARMOR_LIGHT + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/van_bandolier) + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/storage/bible, + /obj/item/attachable/bayonet, + /obj/item/storage/backpack/general_belt, + /obj/item/storage/large_holster/machete, + /obj/item/storage/belt/gun/m4a3, + /obj/item/storage/belt/gun/m44, + /obj/item/storage/belt/gun/smartpistol, + /obj/item/storage/belt/gun/flaregun, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + /obj/item/storage/belt/shotgun/van_bandolier, + ) + +//===========================//U.P.P\\================================\\ +//=====================================================================\\ + +/obj/item/clothing/suit/storage/marine/faction + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + min_cold_protection_temperature = HELMET_MIN_COLD_PROT + max_heat_protection_temperature = HELMET_MAX_HEAT_PROT + blood_overlay_type = "armor" + armor_melee = CLOTHING_ARMOR_MEDIUM + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + slowdown = SLOWDOWN_ARMOR_MEDIUM + movement_compensation = SLOWDOWN_ARMOR_LIGHT + + +/obj/item/clothing/suit/storage/marine/faction/UPP + name = "\improper UM5 personal armor" + desc = "Standard body armor of the UPP military, the UM5 (Union Medium MK5) is a medium body armor, roughly on par with the M3 pattern body armor in service with the USCM, specialized towards ballistics protection. Unlike the M3, however, the plate has a heavier neckplate. This has earned many UA members to refer to UPP soldiers as 'tin men'." + icon_state = "upp_armor" + armor_bullet = CLOTHING_ARMOR_HIGH + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_HIGH + storage_slots = 1 + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP, /obj/item/clothing/under/marine/veteran/UPP/medic, /obj/item/clothing/under/marine/veteran/UPP/engi) + +/obj/item/clothing/suit/storage/marine/faction/UPP/support + name = "\improper UL6 personal armor" + desc = "Standard body armor of the UPP military, the UL6 (Union Light MK6) is a light body armor, slightly weaker than the M3 pattern body armor in service with the USCM, specialized towards ballistics protection. This set of personal armor lacks the iconic neck piece and some of the armor in favor of user mobility." + storage_slots = 3 + icon_state = "upp_armor_support" + slowdown = SLOWDOWN_ARMOR_LIGHT + armor_melee = CLOTHING_ARMOR_HIGH + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_HIGH + +/obj/item/clothing/suit/storage/marine/faction/UPP/commando + name = "\improper UM5CU personal armor" + desc = "A modification of the UM5, designed for stealth operations." + icon_state = "upp_armor_commando" + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LIGHT + +/obj/item/clothing/suit/storage/marine/faction/UPP/heavy + name = "\improper UH7 heavy plated armor" + desc = "An extremely heavy-duty set of body armor in service with the UPP military, the UH7 (Union Heavy MK7) is known for having powerful ballistic protection, alongside a noticeable neck guard, fortified in order to allow the wearer to endure the stresses of the bulky helmet." + icon_state = "upp_armor_heavy" + storage_slots = 3 + slowdown = SLOWDOWN_ARMOR_HEAVY + flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN + flags_armor_protection = BODY_FLAG_ALL_BUT_HEAD + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_HIGHPLUS + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bomb = CLOTHING_ARMOR_HIGH + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS + +/obj/item/clothing/suit/storage/marine/faction/UPP/heavy/Initialize() + . = ..() + pockets.bypass_w_limit = list( + /obj/item/ammo_magazine/minigun, + /obj/item/ammo_magazine/pkp, + ) + +/obj/item/clothing/suit/storage/marine/faction/UPP/officer + name = "\improper UL4 officer jacket" + desc = "A lightweight jacket, issued to officers of the UPP's military. Slightly protective from incoming damage, best off with proper armor however." + icon_state = "upp_coat_officer" + slowdown = SLOWDOWN_ARMOR_NONE + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS + armor_melee = CLOTHING_ARMOR_LOW //wear actual armor if you go into combat + armor_bullet = CLOTHING_ARMOR_LOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_LOW + armor_bio = CLOTHING_ARMOR_LOW + armor_rad = CLOTHING_ARMOR_LOW + armor_internaldamage = CLOTHING_ARMOR_LOW + storage_slots = 3 + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP/officer) + +/obj/item/clothing/suit/storage/marine/faction/UPP/kapitan + name = "\improper UL4 senior officer jacket" + desc = "A lightweight jacket, issued to senior officers of the UPP's military. Made of high-quality materials, even going as far as having the ranks and insignia of the Kapitan and their Company emblazoned on the shoulders and front of the jacket. Slightly protective from incoming damage, best off with proper armor however." + icon_state = "upp_coat_kapitan" + slowdown = SLOWDOWN_ARMOR_NONE + armor_melee = CLOTHING_ARMOR_LOW //wear actual armor if you go into combat + armor_bullet = CLOTHING_ARMOR_LOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_LOW + armor_bio = CLOTHING_ARMOR_LOW + armor_rad = CLOTHING_ARMOR_LOW + armor_internaldamage = CLOTHING_ARMOR_LOW + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS + storage_slots = 4 + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP/officer) + +/obj/item/clothing/suit/storage/marine/faction/UPP/mp + name = "\improper UL4 camouflaged jacket" + desc = "A lightweight jacket, issued to troops when they're not expected to engage in combat. Still studded to the brim with kevlar shards, though the synthread construction reduces its effectiveness." + icon_state = "upp_coat_mp" + slowdown = SLOWDOWN_ARMOR_NONE + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS + armor_melee = CLOTHING_ARMOR_LOW //wear actual armor if you go into combat + armor_bullet = CLOTHING_ARMOR_LOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_LOW + armor_bio = CLOTHING_ARMOR_LOW + armor_rad = CLOTHING_ARMOR_LOW + armor_internaldamage = CLOTHING_ARMOR_LOW + storage_slots = 4 + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP) + valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL) + restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) + +/obj/item/clothing/suit/storage/marine/faction/UPP/jacket/ivan + name = "\improper UH4 Camo Jacket" + desc = "An experimental heavily armored variant of the UL4 given to only the most elite units... usually." + slowdown = SLOWDOWN_ARMOR_MEDIUM + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS|BODY_FLAG_HANDS|BODY_FLAG_FEET + armor_melee = CLOTHING_ARMOR_HIGH + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_HIGH + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_HIGH + storage_slots = 2 + + +//===========================//FREELANCER\\================================\\ +//=====================================================================\\ + +/obj/item/clothing/suit/storage/marine/faction/freelancer + name = "freelancer cuirass" + desc = "An armored protective chestplate scrapped together from various plates. It keeps up remarkably well, as the craftsmanship is solid, and the design mirrors such armors in the UPP and the USCM. The many skilled craftsmen in the freelancers ranks produce these vests at a rate about one a month." + icon_state = "freelancer_armor" + slowdown = SLOWDOWN_ARMOR_LIGHT + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + storage_slots = 2 + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/freelancer) + +//this one is for CLF +/obj/item/clothing/suit/storage/militia + name = "colonial militia hauberk" + desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops." + icon = 'icons/obj/items/clothing/cm_suits.dmi' + icon_state = "rebel_armor" + item_icons = list( + WEAR_JACKET = 'icons/mob/humans/onmob/suit_1.dmi' + ) + sprite_sheets = list(SPECIES_MONKEY = 'icons/mob/humans/species/monkeys/onmob/suit_monkey_1.dmi') + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS + movement_compensation = SLOWDOWN_ARMOR_MEDIUM + armor_melee = CLOTHING_ARMOR_MEDIUM + armor_bullet = CLOTHING_ARMOR_MEDIUMLOW + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUM + storage_slots = 2 + uniform_restricted = list(/obj/item/clothing/under/colonist) + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine, + /obj/item/explosive/grenade, + /obj/item/device/binoculars, + /obj/item/attachable/bayonet, + /obj/item/storage/backpack/general_belt, + /obj/item/storage/large_holster/machete, + /obj/item/weapon/baseballbat, + /obj/item/weapon/baseballbat/metal, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS|BODY_FLAG_HANDS + min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROT + valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL) + +/obj/item/clothing/suit/storage/militia/Initialize() + . = ..() + pockets.max_w_class = SIZE_SMALL //Can contain small items AND rifle magazines. + pockets.bypass_w_limit = list( + /obj/item/ammo_magazine/rifle, + /obj/item/ammo_magazine/smg, + /obj/item/ammo_magazine/sniper, + ) + pockets.max_storage_space = 8 + +/obj/item/clothing/suit/storage/militia/vest + name = "colonial militia vest" + desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This extremely light variant protects only the chest and abdomen." + icon_state = "clf_2" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + slowdown = 0.2 + movement_compensation = SLOWDOWN_ARMOR_MEDIUM + +/obj/item/clothing/suit/storage/militia/brace + name = "colonial militia brace" + desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This extremely light variant has some of the chest pieces removed." + icon_state = "clf_3" + flags_armor_protection = BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + flags_cold_protection = BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + slowdown = 0.2 + movement_compensation = SLOWDOWN_ARMOR_MEDIUM + +/obj/item/clothing/suit/storage/militia/partial + name = "colonial militia partial hauberk" + desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This even lighter variant has some of the arm pieces removed." + icon_state = "clf_4" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + slowdown = 0.2 + +/obj/item/clothing/suit/storage/militia/smartgun + name = "colonial militia harness" + desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This one has straps interweaved with the plates, that allow the user to fire a captured smartgun, if a bit uncomfortably." + flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS + +/obj/item/clothing/suit/storage/CMB + name = "\improper CMB jacket" + desc = "A black jacket worn by Colonial Marshals. The back is enscribed with the powerful letters of 'MARSHAL' representing justice, authority, and protection in the outer rim. The laws of the Earth stretch beyond the Sol." + icon_state = "CMB_jacket" + blood_overlay_type = "coat" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS + armor_melee = CLOTHING_ARMOR_MEDIUMLOW + armor_bullet = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_LOW + armor_bio = CLOTHING_ARMOR_LOW + armor_internaldamage = CLOTHING_ARMOR_LOW + allowed = list( + /obj/item/weapon/gun, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/weapon/baton, + /obj/item/handcuffs, + /obj/item/device/binoculars, + /obj/item/attachable/bayonet, + /obj/item/device/flashlight, + /obj/item/device/healthanalyzer, + /obj/item/device/radio, + /obj/item/tank/emergency_oxygen, + /obj/item/tool/crowbar, + /obj/item/tool/crew_monitor, + /obj/item/tool/pen, + /obj/item/storage/belt/gun/m4a3, + /obj/item/storage/belt/gun/m44, + /obj/item/storage/belt/gun/mateba, + /obj/item/storage/belt/gun/smartpistol, + /obj/item/storage/large_holster/machete, + /obj/item/storage/large_holster/katana, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR) + restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) + +/obj/item/clothing/suit/storage/CMB/Initialize() + . = ..() + pockets.max_w_class = SIZE_SMALL //Can contain small items AND rifle magazines. + pockets.bypass_w_limit = list( + /obj/item/ammo_magazine/rifle, + /obj/item/ammo_magazine/smg, + /obj/item/ammo_magazine/sniper, + ) + pockets.max_storage_space = 8 + + +//===========================//HELGHAST - MERCENARY\\================================\\ +//=====================================================================\\ + +/obj/item/clothing/suit/storage/marine/veteran/mercenary + name = "\improper K12 ceramic plated armor" + desc = "A set of grey, heavy ceramic armor with dark blue highlights. It is the standard uniform of an unknown mercenary group working in the sector." + icon_state = "mercenary_heavy_armor" + flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN + armor_melee = CLOTHING_ARMOR_VERYHIGH + armor_bullet = CLOTHING_ARMOR_VERYHIGH + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_HIGHPLUS + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LIGHT + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine/, + /obj/item/weapon/baton, + /obj/item/handcuffs, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/explosive/grenade, + /obj/item/storage/bible, + /obj/item/weapon/sword/machete, + /obj/item/attachable/bayonet, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/mercenary) + item_state_slots = list(WEAR_JACKET = "mercenary_heavy_armor") + +/obj/item/clothing/suit/storage/marine/veteran/mercenary/heavy + name = "\improper Modified K12 ceramic plated armor" + desc = "A set of grey, heavy ceramic armor with dark blue highlights. It has been modified with extra ceramic plates placed in its storage pouch, and seems intended to support an extremely heavy weapon." + armor_melee = CLOTHING_ARMOR_ULTRAHIGH + armor_bullet = CLOTHING_ARMOR_ULTRAHIGHPLUS + armor_bomb = CLOTHING_ARMOR_HIGHPLUS + armor_bio = CLOTHING_ARMOR_HIGHPLUS + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_VERYHIGHPLUS + storage_slots = 1 + +/obj/item/clothing/suit/storage/marine/veteran/mercenary/miner + name = "\improper Y8 armored miner vest" + desc = "A set of beige, light armor built for protection while mining. It is a specialized uniform of an unknown mercenary group working in the sector." + icon_state = "mercenary_miner_armor" + storage_slots = 3 + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine/, + /obj/item/weapon/baton, + /obj/item/handcuffs, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/explosive/grenade, + /obj/item/storage/bible, + /obj/item/weapon/sword/machete, + /obj/item/attachable/bayonet, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/mercenary) + item_state_slots = list(WEAR_JACKET = "mercenary_miner_armor") + +/obj/item/clothing/suit/storage/marine/veteran/mercenary/support + name = "\improper Z7 armored vest" + desc = "A set of blue armor with yellow highlights built for protection while building or carrying out medical treatment in highly dangerous environments. It is a specialized uniform of an unknown mercenary group working in the sector." + icon_state = "mercenary_engineer_armor" + item_state_slots = list(WEAR_JACKET = "mercenary_engineer_armor") + +/obj/item/clothing/suit/storage/marine/M3G/hefa + name = "\improper HEFA Knight armor" + desc = "A thick piece of armor adorning a HEFA. Usually seen on a HEFA knight." + specialty = "HEFA Knight" + icon_state = "hefadier" + flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE + flags_item = NO_CRYO_STORE + flags_marine_armor = ARMOR_LAMP_OVERLAY + armor_bullet = CLOTHING_ARMOR_VERYHIGH + armor_melee = CLOTHING_ARMOR_VERYHIGH + armor_bomb = CLOTHING_ARMOR_GIGAHIGH + + +//=========================//PROVOST\\================================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/MP/provost + name = "\improper M3 pattern Provost armor" + desc = "A standard Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." + icon_state = "pvmedium" + item_state_slots = list(WEAR_JACKET = "pvmedium") + slowdown = SLOWDOWN_ARMOR_LIGHT + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUMHIGH + armor_bio = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_MEDIUM + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + storage_slots = 3 + +/obj/item/clothing/suit/storage/marine/MP/provost/tml + name = "\improper M3 pattern Senior Provost armor" + desc = "A more refined Provost M3 Pattern Chestplate for senior officers. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." + icon_state = "pvleader" + item_state_slots = list(WEAR_JACKET = "pvleader") + +/obj/item/clothing/suit/storage/marine/MP/provost/marshal + name = "\improper M5 pattern Provost Marshal armor" + desc = "A custom fit luxury armor suit for Provost Marshals. Useful for letting your men know who is in charge when taking to the field." + icon_state = "pvmarshal" + item_state_slots = list(WEAR_JACKET = "pvmarshal") + w_class = SIZE_MEDIUM + storage_slots = 4 + +/obj/item/clothing/suit/storage/marine/MP/provost/light + name = "\improper M3 pattern Provost light armor" + desc = "A lighter Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." + icon_state = "pvlight" + item_state_slots = list(WEAR_JACKET = "pvlight") + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT + +/obj/item/clothing/suit/storage/marine/MP/provost/light/flexi + name = "\improper M3 pattern Provost flexi-armor" + desc = "A flexible and easy to store M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." + w_class = SIZE_MEDIUM + icon_state = "pvlight_2" + item_state_slots = list(WEAR_JACKET = "pvlight_2") + storage_slots = 2 + +//================//UNITED AMERICAS ALLIED COMMAND\\=====================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/uaac/tis/sa + name = "\improper M3 pattern UAAC-TIS Special Agent Armor" + desc = "A modified luxury armor, originally meant for a USCM Provost Marshall, modified to use the colors and insignia of the TIS. The Three Eyes is technically able to requisition any equipment or personnel to fulfill its mission and often uses this privilege to outfit their agents with high-quality gear from other UA military forces." + icon_state = "tis" + item_state_slots = list(WEAR_JACKET = "tis") + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_laser = CLOTHING_ARMOR_LOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LIGHT + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine/, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/weapon/baton, + /obj/item/handcuffs, + /obj/item/explosive/grenade, + /obj/item/device/binoculars, + /obj/item/attachable/bayonet, + /obj/item/storage/backpack/general_belt, + /obj/item/device/hailer, + /obj/item/storage/belt/gun, + /obj/item/weapon/sword/ceremonial, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + uniform_restricted = list(/obj/item/clothing/under/uaac/tis) + +//================//UNITED AMERICAS RIOT CONTROL\\=====================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/veteran/ua_riot + name = "\improper UA-M1 body armor" + desc = "Based on the M-3 pattern employed by the USCM, the UA-M1 body armor is employed by UA security, riot control and union-busting teams. While robust against melee and bullet attacks, it critically lacks coverage of the legs and arms." + icon_state = "ua_riot" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT // it's lighter + uniform_restricted = list(/obj/item/clothing/under/marine/ua_riot) + flags_atom = NO_SNOW_TYPE + +//================//=ROYAL MARINES=\\====================================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/veteran/royal_marine + name = "kestrel armoured vest" + desc = "A customizable personal armor system used by the Three World Empire's Royal Marines Commandos. Designers from a Weyland Yutani subsidary, Lindenthal-Ehrenfeld Militärindustrie, iterated on the USCMC's M3 pattern personal armor in their Tokonigara lab to create an armor systemed to suit the unique needs of the Three World Empire's smaller but better equipped Royal Marines." + icon_state = "rmc_light" + item_state = "rmc_light" + flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine/, + /obj/item/weapon/baton, + /obj/item/handcuffs, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/explosive/grenade, + /obj/item/storage/bible, + /obj/item/weapon/sword/machete, + /obj/item/attachable/bayonet, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/light //RMC Rifleman Armor + icon_state = "rmc_light" + item_state = "rmc_light" + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + slowdown = SLOWDOWN_ARMOR_LIGHT + +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/team_leader //RMC TL & LT Armor + name = "kestrel armoured carry vest" + icon_state = "rmc_light_padded" + item_state = "rmc_light_padded" + storage_slots = 7 + +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/smartgun //Smartgun Spec Armor + name = "kestrel armoured smartgun harness" + icon_state = "rmc_smartgun" + item_state = "rmc_smartgun" + flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN|SMARTGUN_HARNESS + +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/pointman //Pointman Spec Armor + name = "kestrel pointman armour" + desc = "A heavier version of the armor system used by the Three World Empire's Royal Marines Commandos. Designers from a Weyland Yutani subsidary, Lindenthal-Ehrenfeld Militärindustrie, iterated on the USCMC's M3 pattern personal armor in their Tokonigara lab to create an armor systemed to suit the unique needs of the Three World Empire's smaller but better equipped Royal Marines." + icon_state = "rmc_pointman" + item_state = "rmc_pointman" + armor_melee = CLOTHING_ARMOR_HIGH + armor_bullet = CLOTHING_ARMOR_HIGHPLUS + armor_bomb = CLOTHING_ARMOR_HIGHPLUS + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + storage_slots = 7 + slowdown = SLOWDOWN_ARMOR_LOWHEAVY + movement_compensation = SLOWDOWN_ARMOR_MEDIUM + +/atom/movable/marine_light + light_system = DIRECTIONAL_LIGHT + +//CBRN +/obj/item/clothing/suit/storage/marine/cbrn + name = "\improper M3-M armor" + desc = "While lacking the appearance of the M3 pattern armor worn in regular service, this armor piece is still a derivative of it. It has been heavily modified to fit over the MOPP suit with additional padding and Venlar composite layers removed, so as not to restrict the wearer’s movement. However, with the reduction of composite layers, the personal protection offered is less than desired with complaints having been lodged since 2165." + icon_state = "cbrn" + item_state = "cbrn" + slowdown = SLOWDOWN_ARMOR_HEAVY + armor_melee = CLOTHING_ARMOR_MEDIUM + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_LOW + armor_rad =CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_LOW + flags_marine_armor = NO_FLAGS + flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE + flags_inventory = BLOCKSHARPOBJ + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + uniform_restricted = list(/obj/item/clothing/under/marine/cbrn) + +/obj/item/clothing/suit/storage/marine/cbrn/advanced + slowdown = SLOWDOWN_ARMOR_LOWHEAVY + armor_melee = CLOTHING_ARMOR_HIGH + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_bomb = CLOTHING_ARMOR_ULTRAHIGH + armor_bio = CLOTHING_ARMOR_GIGAHIGHPLUS + armor_rad = CLOTHING_ARMOR_GIGAHIGHPLUS + armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS diff --git a/code/modules/clothing/suits/marine_armor/ghillie.dm b/code/modules/clothing/suits/marine_armor/ghillie.dm new file mode 100644 index 000000000000..1f1b71227655 --- /dev/null +++ b/code/modules/clothing/suits/marine_armor/ghillie.dm @@ -0,0 +1,162 @@ +#define FULL_CAMOUFLAGE_ALPHA 15 + +/obj/item/clothing/suit/storage/marine/ghillie + name = "\improper M45 pattern ghillie armor" + desc = "A lightweight ghillie camouflage suit, used by USCM snipers on recon missions. Very lightweight, but doesn't protect much." + icon_state = "ghillie_armor" + armor_bio = CLOTHING_ARMOR_MEDIUMHIGH + slowdown = SLOWDOWN_ARMOR_LIGHT + flags_marine_armor = ARMOR_LAMP_OVERLAY + flags_item = MOB_LOCK_ON_EQUIP + specialty = "M45 pattern ghillie" + valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_PONCHO) + restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) + + var/camo_active = FALSE + var/hide_in_progress = FALSE + var/full_camo_alpha = FULL_CAMOUFLAGE_ALPHA + var/incremental_shooting_camo_penalty = 35 + var/current_camo = FULL_CAMOUFLAGE_ALPHA + var/camouflage_break = 5 SECONDS + var/camouflage_enter_delay = 4 SECONDS + var/can_camo = TRUE + + actions_types = list(/datum/action/item_action/toggle, /datum/action/item_action/specialist/prepare_position) + +/obj/item/clothing/suit/storage/marine/ghillie/dropped(mob/user) + if(ishuman(user) && !issynth(user)) + deactivate_camouflage(user, FALSE) + + . = ..() + +/obj/item/clothing/suit/storage/marine/ghillie/verb/camouflage() + set name = "Prepare Position" + set desc = "Use the ghillie suit and the nearby environment to become near invisible." + set category = "Object" + set src in usr + if(!usr || usr.is_mob_incapacitated(TRUE)) + return + + if(!ishuman(usr) || hide_in_progress || !can_camo) + return + var/mob/living/carbon/human/H = usr + if(!skillcheck(H, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL) && H.skills.get_skill_level(SKILL_SPEC_WEAPONS) != SKILL_SPEC_SNIPER && !(GLOB.character_traits[/datum/character_trait/skills/spotter] in H.traits)) + to_chat(H, SPAN_WARNING("You don't seem to know how to use [src]...")) + return + if(H.wear_suit != src) + to_chat(H, SPAN_WARNING("You must be wearing the ghillie suit to activate it!")) + return + + if(camo_active) + deactivate_camouflage(H) + return + + H.visible_message(SPAN_DANGER("[H] goes prone, and begins adjusting \his ghillie suit!"), SPAN_NOTICE("You go prone, and begins adjusting your ghillie suit."), max_distance = 4) + hide_in_progress = TRUE + H.unset_interaction() // If we're sticking to a machine gun or what not. + if(!do_after(H, camouflage_enter_delay, INTERRUPT_NO_NEEDHAND|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) + hide_in_progress = FALSE + return + hide_in_progress = FALSE + RegisterSignal(H, list( + COMSIG_MOB_FIRED_GUN, + COMSIG_MOB_FIRED_GUN_ATTACHMENT) + , PROC_REF(fade_in)) + RegisterSignal(H, list( + COMSIG_MOB_DEATH, + COMSIG_HUMAN_EXTINGUISH + ), PROC_REF(deactivate_camouflage)) + camo_active = TRUE + H.alpha = full_camo_alpha + H.FF_hit_evade = 1000 + ADD_TRAIT(H, TRAIT_UNDENSE, SPECIALIST_GEAR_TRAIT) + + RegisterSignal(H, COMSIG_MOB_MOVE_OR_LOOK, PROC_REF(handle_mob_move_or_look)) + + var/datum/mob_hud/security/advanced/SA = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] + SA.remove_from_hud(H) + var/datum/mob_hud/xeno_infection/XI = GLOB.huds[MOB_HUD_XENO_INFECTION] + XI.remove_from_hud(H) + + anim(H.loc, H, 'icons/mob/mob.dmi', null, "cloak", null, H.dir) + + +/obj/item/clothing/suit/storage/marine/ghillie/proc/deactivate_camouflage(mob/user) + SIGNAL_HANDLER + var/mob/living/carbon/human/H = user + if(!istype(H)) + return FALSE + + if(!camo_active) + return + + UnregisterSignal(H, list( + COMSIG_MOB_FIRED_GUN, + COMSIG_MOB_FIRED_GUN_ATTACHMENT, + COMSIG_MOB_DEATH, + COMSIG_HUMAN_EXTINGUISH, + COMSIG_MOB_MOVE_OR_LOOK + )) + + camo_active = FALSE + animate(H, alpha = initial(H.alpha), flags = ANIMATION_END_NOW) + H.FF_hit_evade = initial(H.FF_hit_evade) + REMOVE_TRAIT(H, TRAIT_UNDENSE, SPECIALIST_GEAR_TRAIT) + + var/datum/mob_hud/security/advanced/SA = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] + SA.add_to_hud(H) + var/datum/mob_hud/xeno_infection/XI = GLOB.huds[MOB_HUD_XENO_INFECTION] + XI.add_to_hud(H) + + H.visible_message(SPAN_DANGER("[H]'s camouflage fails!"), SPAN_WARNING("Your camouflage fails!"), max_distance = 4) + +/obj/item/clothing/suit/storage/marine/ghillie/proc/fade_in(mob/user) + SIGNAL_HANDLER + var/mob/living/carbon/human/H = user + if(camo_active) + if(current_camo < full_camo_alpha) + current_camo = full_camo_alpha + current_camo = clamp(current_camo + incremental_shooting_camo_penalty, full_camo_alpha, 255) + H.alpha = current_camo + addtimer(CALLBACK(src, PROC_REF(fade_out_finish), H), camouflage_break, TIMER_OVERRIDE|TIMER_UNIQUE) + animate(H, alpha = full_camo_alpha + 5, time = camouflage_break, easing = LINEAR_EASING, flags = ANIMATION_END_NOW) + +/obj/item/clothing/suit/storage/marine/ghillie/proc/fade_out_finish(mob/living/carbon/human/H) + if(camo_active && H.wear_suit == src) + to_chat(H, SPAN_BOLDNOTICE("The smoke clears and your position is once again hidden completely!")) + animate(H, alpha = full_camo_alpha) + current_camo = full_camo_alpha + +/obj/item/clothing/suit/storage/marine/ghillie/proc/handle_mob_move_or_look(mob/living/mover, actually_moving, direction, specific_direction) + SIGNAL_HANDLER + + if(camo_active && actually_moving) + deactivate_camouflage(mover) + +/datum/action/item_action/specialist/prepare_position + ability_primacy = SPEC_PRIMARY_ACTION_1 + +/datum/action/item_action/specialist/prepare_position/New(mob/living/user, obj/item/holder) + ..() + name = "Prepare Position" + button.name = name + button.overlays.Cut() + var/image/IMG = image('icons/mob/hud/actions.dmi', button, "prepare_position") + button.overlays += IMG + +/datum/action/item_action/specialist/prepare_position/can_use_action() + var/mob/living/carbon/human/H = owner + if(istype(H) && !H.is_mob_incapacitated() && H.body_position == STANDING_UP && holder_item == H.wear_suit) + return TRUE + +/datum/action/item_action/specialist/prepare_position/action_activate() + var/obj/item/clothing/suit/storage/marine/ghillie/GS = holder_item + GS.camouflage() + +#undef FULL_CAMOUFLAGE_ALPHA + +/obj/item/clothing/suit/storage/marine/ghillie/forecon + name = "UDEP Thermal Poncho" + desc = "UDEP or the Ultra Diffusive Environmental Poncho is a camouflaged rain-cover worn to protect against the elements and chemical spills. It's commonly treated with an infrared absorbing coating, making a marine almost invisible in the rain. Favoured by USCM specialists for it's comfort and practicality." + icon_state = "mercenary_miner_armor" + flags_atom = MOB_LOCK_ON_EQUIP|NO_SNOW_TYPE|NO_NAME_OVERRIDE diff --git a/code/modules/clothing/suits/marine_armor/intel.dm b/code/modules/clothing/suits/marine_armor/intel.dm new file mode 100644 index 000000000000..b3f0f93e004d --- /dev/null +++ b/code/modules/clothing/suits/marine_armor/intel.dm @@ -0,0 +1,118 @@ +/obj/item/clothing/suit/storage/marine/medium/rto/intel + name = "\improper XM4 pattern intelligence officer armor" + uniform_restricted = list(/obj/item/clothing/under/marine/officer/intel) + specialty = "XM4 pattern intel" + desc = "Tougher than steel, quieter than whispers, the XM4 Intel Armor provides capable protection combined with an experimental integrated motion tracker. It took an R&D team a weekend to develop and costs more than the Chinook Station... probably. When worn, uniform accessories such as webbing cannot be attached due to the motion sensors occupying the clips." + desc_lore = "ARMAT Perfection. The XM4 Soldier Awareness System mixes M4-style hard armor and a distributed series of motion sensors clipped onto the breastplate. When connected to any HUD optic, it replicates the effects of an M314 Motion Detector unit, increasing user situational awareness. It is currently undergoing field trials by intelligence operatives." + storage_slots = 5 + /// XM4 Integral Motion Detector Ability + actions_types = list(/datum/action/item_action/toggle, /datum/action/item_action/intel/toggle_motion_detector) + var/motion_detector = FALSE + var/obj/item/device/motiondetector/xm4/proximity + var/long_range_cooldown = 2 + var/recycletime = 120 + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/Initialize(mapload, ...) + . = ..() + proximity = new(src) + update_icon() + +/datum/action/item_action/intel/action_activate() + if(!ishuman(owner)) + return + +/datum/action/item_action/intel/update_button_icon() + return + +/datum/action/item_action/intel/toggle_motion_detector/New(Target, obj/item/holder) + . = ..() + name = "Toggle Motion Detector" + action_icon_state = "motion_detector" + button.name = name + button.overlays.Cut() + button.overlays += image('icons/mob/hud/actions.dmi', button, action_icon_state) + +/datum/action/item_action/intel/toggle_motion_detector/action_activate() + . = ..() + var/obj/item/clothing/suit/storage/marine/medium/rto/intel/recon = holder_item + recon.toggle_motion_detector(owner) + +/datum/action/item_action/intel/toggle_motion_detector/proc/update_icon() + if(!holder_item) + return + var/obj/item/clothing/suit/storage/marine/medium/rto/intel/recon = holder_item + if(recon.motion_detector) + button.icon_state = "template_on" + else + button.icon_state = "template" + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/process() + if(!motion_detector) + STOP_PROCESSING(SSobj, src) + if(motion_detector) + recycletime-- + if(!recycletime) + recycletime = initial(recycletime) + proximity.refresh_blip_pool() + long_range_cooldown-- + if(long_range_cooldown) + return + long_range_cooldown = initial(long_range_cooldown) + proximity.scan() + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/proc/toggle_motion_detector(mob/user) + to_chat(user,SPAN_NOTICE("You [motion_detector? "disable" : "enable"] \the [src]'s motion detector.")) + if(!motion_detector) + playsound(loc,'sound/items/detector_turn_on.ogg', 25, 1) + else + playsound(loc,'sound/items/detector_turn_off.ogg', 25, 1) + motion_detector = !motion_detector + var/datum/action/item_action/intel/toggle_motion_detector/TMD = locate(/datum/action/item_action/intel/toggle_motion_detector) in actions + TMD.update_icon() + motion_detector() + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/proc/motion_detector() + if(motion_detector) + START_PROCESSING(SSobj, src) + else + STOP_PROCESSING(SSobj, src) + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/mob_can_equip(mob/living/carbon/human/user, slot, disable_warning) //Thanks to Drathek for the help on this part! + if(!..()) + return FALSE + + // Only equip if uniform doesn't already have a utility accessory slot equipped + var/obj/item/clothing/under/uniform = user.w_uniform + var/accessory = locate(/obj/item/clothing/accessory/storage) in uniform.accessories + if(accessory) + to_chat(user, SPAN_WARNING("[src] can't be worn with [accessory].")) + return FALSE + // Only equip if user has expert intel skill level + if(!skillcheck(user, SKILL_INTEL, SKILL_INTEL_EXPERT)) + to_chat(user, SPAN_WARNING("You don't seem to know how to use [src]...")) + return FALSE + return TRUE + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/equipped(mob/user, slot, silent) //When XM4 is equipped this removes ACCESSORY_SLOT_UTILITY as a valid accessory for the uniform + . = ..() + if(slot == WEAR_JACKET) + var/mob/living/carbon/human/human = user + var/obj/item/clothing/under/uniform = human.w_uniform + if(uniform?.valid_accessory_slots) + uniform?.valid_accessory_slots -= ACCESSORY_SLOT_UTILITY + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/unequipped(mob/user, slot) //When unequipped this adds the ACCESSORY_SLOT_UTILITY back as a valid accessory + . = ..() + if(slot == WEAR_JACKET) + var/mob/living/carbon/human/human = user + var/obj/item/clothing/under/uniform = human.w_uniform + if(uniform) + // Figure out if the uniform originally allowed ACCESSORY_SLOT_UTILITY + var/obj/item/clothing/under/temp_uniform = new uniform.type + if(temp_uniform.valid_accessory_slots) + for(var/allowed in temp_uniform.valid_accessory_slots) + if(allowed == ACCESSORY_SLOT_UTILITY) + // It was allowed previously, now add it back + uniform.valid_accessory_slots += ACCESSORY_SLOT_UTILITY + break + qdel(temp_uniform) diff --git a/code/modules/clothing/suits/marine_armor/smartgunner.dm b/code/modules/clothing/suits/marine_armor/smartgunner.dm new file mode 100644 index 000000000000..430942fbbef8 --- /dev/null +++ b/code/modules/clothing/suits/marine_armor/smartgunner.dm @@ -0,0 +1,60 @@ +/obj/item/clothing/suit/storage/marine/smartgunner + name = "\improper M56 combat harness" + desc = "A heavy protective vest designed to be worn with the M56 Smartgun System. \nIt has specially designed straps and reinforcement to carry the Smartgun and accessories." + icon_state = "8" + item_state = "armor" + armor_laser = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LIGHT + flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS + allowed = list( + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine, + /obj/item/explosive/mine, + /obj/item/attachable/bayonet, + /obj/item/weapon/gun/smartgun, + /obj/item/storage/backpack/general_belt, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + +/obj/item/clothing/suit/storage/marine/smartgunner/Initialize() + . = ..() + if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD] && name == "M56 combat harness") + name = "M56 snow combat harness" + else + name = "M56 combat harness" + //select_gamemode_skin(type) + +/obj/item/clothing/suit/storage/marine/smartgunner/mob_can_equip(mob/equipping_mob, slot, disable_warning = FALSE) + . = ..() + + if(equipping_mob.back) + to_chat(equipping_mob, SPAN_WARNING("You can't equip [src] while wearing a backpack.")) + return FALSE + +/obj/item/clothing/suit/storage/marine/smartgunner/equipped(mob/user, slot, silent) + . = ..() + + if(slot == WEAR_JACKET) + RegisterSignal(user, COMSIG_HUMAN_ATTEMPTING_EQUIP, PROC_REF(check_equipping)) + +/obj/item/clothing/suit/storage/marine/smartgunner/proc/check_equipping(mob/living/carbon/human/equipping_human, obj/item/equipping_item, slot) + SIGNAL_HANDLER + + if(slot != WEAR_BACK) + return + + . = COMPONENT_HUMAN_CANCEL_ATTEMPT_EQUIP + + if(equipping_item.flags_equip_slot == SLOT_BACK) + to_chat(equipping_human, SPAN_WARNING("You can't equip [equipping_item] on your back while wearing [src].")) + return + +/obj/item/clothing/suit/storage/marine/smartgunner/unequipped(mob/user, slot) + . = ..() + + UnregisterSignal(user, COMSIG_HUMAN_ATTEMPTING_EQUIP) diff --git a/code/modules/clothing/suits/marine_armor/spec_fire.dm b/code/modules/clothing/suits/marine_armor/spec_fire.dm new file mode 100644 index 000000000000..4d577cc98b15 --- /dev/null +++ b/code/modules/clothing/suits/marine_armor/spec_fire.dm @@ -0,0 +1,150 @@ +#define FIRE_SHIELD_CD 150 + +/obj/item/clothing/suit/storage/marine/M35 + name = "\improper M35 pyrotechnician armor" + desc = "A custom set of M35 armor designed for use by USCM Pyrotechnicians." + icon_state = "pyro_armor" + armor_bio = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + fire_intensity_resistance = BURN_LEVEL_TIER_1 + max_heat_protection_temperature = FIRESUIT_MAX_HEAT_PROT + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE + specialty = "M35 pyrotechnician" + actions_types = list(/datum/action/item_action/toggle, /datum/action/item_action/specialist/fire_shield) + unacidable = TRUE + var/fire_shield_on = FALSE + var/can_activate = TRUE + +/obj/item/clothing/suit/storage/marine/M35/equipped(mob/user, slot) + if(slot == WEAR_JACKET) + RegisterSignal(user, COMSIG_LIVING_FLAMER_CROSSED, PROC_REF(flamer_fire_callback)) + ..() + +/obj/item/clothing/suit/storage/marine/M35/verb/fire_shield() + set name = "Activate Fire Shield" + set desc = "Activate your armor's FIREWALK protocol for a short duration." + set category = "Pyro" + set src in usr + if(!usr || usr.is_mob_incapacitated(TRUE)) + return + if(!ishuman(usr)) + return + var/mob/living/carbon/human/H = usr + + if(H.wear_suit != src) + to_chat(H, SPAN_WARNING("You must be wearing the M35 pyro armor to activate FIREWALK protocol!")) + return + + if(!skillcheck(H, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL) && H.skills.get_skill_level(SKILL_SPEC_WEAPONS) != SKILL_SPEC_PYRO) + to_chat(H, SPAN_WARNING("You don't seem to know how to use [src]...")) + return + + if(fire_shield_on) + to_chat(H, SPAN_WARNING("You already have FIREWALK protocol activated!")) + return + + if(!can_activate) + to_chat(H, SPAN_WARNING("FIREWALK protocol was recently activated, wait before trying to activate it again.")) + return + + to_chat(H, SPAN_NOTICE("FIREWALK protocol has been activated. You will now be immune to fire for 6 seconds!")) + RegisterSignal(H, COMSIG_LIVING_PREIGNITION, PROC_REF(fire_shield_is_on)) + RegisterSignal(H, list( + COMSIG_LIVING_FLAMER_FLAMED, + ), PROC_REF(flamer_fire_callback)) + fire_shield_on = TRUE + can_activate = FALSE + for(var/X in actions) + var/datum/action/A = X + A.update_button_icon() + addtimer(CALLBACK(src, PROC_REF(end_fire_shield), H), 6 SECONDS) + + H.add_filter("firewalk_on", 1, list("type" = "outline", "color" = "#03fcc6", "size" = 1)) + +/obj/item/clothing/suit/storage/marine/M35/proc/end_fire_shield(mob/living/carbon/human/user) + if(!istype(user)) + return + to_chat(user, SPAN_NOTICE("FIREWALK protocol has finished.")) + UnregisterSignal(user, list( + COMSIG_LIVING_PREIGNITION, + COMSIG_LIVING_FLAMER_FLAMED, + )) + fire_shield_on = FALSE + + user.remove_filter("firewalk_on") + + addtimer(CALLBACK(src, PROC_REF(enable_fire_shield), user), FIRE_SHIELD_CD) + +/obj/item/clothing/suit/storage/marine/M35/proc/enable_fire_shield(mob/living/carbon/human/user) + if(!istype(user)) + return + to_chat(user, SPAN_NOTICE("FIREWALK protocol can be activated again.")) + can_activate = TRUE + + for(var/X in actions) + var/datum/action/A = X + A.update_button_icon() + +/// This proc is solely so that IgniteMob() fails +/obj/item/clothing/suit/storage/marine/M35/proc/fire_shield_is_on(mob/living/L) + SIGNAL_HANDLER + + if(L.fire_reagent?.fire_penetrating) + return + + return COMPONENT_CANCEL_IGNITION + +/obj/item/clothing/suit/storage/marine/M35/proc/flamer_fire_callback(mob/living/L, datum/reagent/R) + SIGNAL_HANDLER + + if(R.fire_penetrating) + return + + . = COMPONENT_NO_IGNITE + if(fire_shield_on) + . |= COMPONENT_NO_BURN + +/obj/item/clothing/suit/storage/marine/M35/dropped(mob/user) + if (!istype(user)) + return + UnregisterSignal(user, list( + COMSIG_LIVING_PREIGNITION, + COMSIG_LIVING_FLAMER_CROSSED, + COMSIG_LIVING_FLAMER_FLAMED, + )) + ..() + +#undef FIRE_SHIELD_CD + +/datum/action/item_action/specialist/fire_shield + ability_primacy = SPEC_PRIMARY_ACTION_2 + +/datum/action/item_action/specialist/fire_shield/New(mob/living/user, obj/item/holder) + ..() + name = "Activate Fire Shield" + button.name = name + button.overlays.Cut() + var/image/IMG = image('icons/obj/items/clothing/cm_suits.dmi', button, "pyro_armor") + button.overlays += IMG + +/datum/action/item_action/specialist/fire_shield/action_cooldown_check() + var/obj/item/clothing/suit/storage/marine/M35/armor = holder_item + if (!istype(armor)) + return FALSE + + return !armor.can_activate + +/datum/action/item_action/specialist/fire_shield/can_use_action() + var/mob/living/carbon/human/H = owner + if(istype(H) && !H.is_mob_incapacitated() && H.wear_suit == holder_item) + return TRUE + +/datum/action/item_action/specialist/fire_shield/action_activate() + var/obj/item/clothing/suit/storage/marine/M35/armor = holder_item + if (!istype(armor)) + return + + armor.fire_shield() diff --git a/colonialmarines.dme b/colonialmarines.dme index 12862cb2c544..7569f131d1ec 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -1569,11 +1569,16 @@ #include "code\modules\clothing\suits\bio.dm" #include "code\modules\clothing\suits\jobs.dm" #include "code\modules\clothing\suits\labcoat.dm" -#include "code\modules\clothing\suits\marine_armor.dm" #include "code\modules\clothing\suits\marine_coat.dm" #include "code\modules\clothing\suits\miscellaneous.dm" #include "code\modules\clothing\suits\storage.dm" #include "code\modules\clothing\suits\utility.dm" +#include "code\modules\clothing\suits\marine_armor\_marine_armor.dm" +#include "code\modules\clothing\suits\marine_armor\ert.dm" +#include "code\modules\clothing\suits\marine_armor\ghillie.dm" +#include "code\modules\clothing\suits\marine_armor\intel.dm" +#include "code\modules\clothing\suits\marine_armor\smartgunner.dm" +#include "code\modules\clothing\suits\marine_armor\spec_fire.dm" #include "code\modules\clothing\under\color.dm" #include "code\modules\clothing\under\gimmick.dm" #include "code\modules\clothing\under\marine_uniform.dm" From 35a4d031f61e7e4567bbd70aa9e21b202d0853dc Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Sat, 24 Feb 2024 20:29:14 +0000 Subject: [PATCH 106/148] Automatic changelog for PR #5740 [ci skip] --- html/changelogs/AutoChangeLog-pr-5740.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5740.yml diff --git a/html/changelogs/AutoChangeLog-pr-5740.yml b/html/changelogs/AutoChangeLog-pr-5740.yml new file mode 100644 index 000000000000..f80440f4fbf9 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5740.yml @@ -0,0 +1,4 @@ +author: "Huffie56" +delete-after: True +changes: + - refactor: "refactor marine_armor.dm and split it into multiples files." \ No newline at end of file From 4546ee033e2020e2f5cc4d5770a04ecbff178182 Mon Sep 17 00:00:00 2001 From: Drathek <76988376+Drulikar@users.noreply.github.com> Date: Sat, 24 Feb 2024 12:23:10 -0800 Subject: [PATCH 107/148] Barricades Multi-Weld Revert & Refactoring (#5795) # About the pull request This PR is a follow up to #5609 which removed a busy check from some barricades allowing multi-welding. This PR restores that setting (which is a return to normal for all but folding barricades which incorrectly allowed multi-welding before). I have also added automatic looping to barricade welding if there is still work to be done, and it can be performed. # Explain why it's good for the game The PR that introduced this change was not intended to be a balance change. Additionally, it's far more difficult to tune welding speeds if the quantity of barricades being welded at the same time is variable. Technically this is a nerf though because previously multi-welding folding barricades was possible. # Testing Photographs and Procedure
Screenshots & Videos https://github.com/cmss13-devs/cmss13/assets/76988376/32deb97f-31b0-4fd0-8baf-54637cfbf81d After looping welding addition: https://github.com/cmss13-devs/cmss13/assets/76988376/e67efe06-711e-4847-aa36-345c1e85222d
# Changelog :cl: Drathek add: Welding a barricade will now repeat automatically if it can still be repaired. balance: Reverted multi-welding change to barricades: All barricades must be welded one at a time. refactor: Refactored more barricade code. /:cl: --- .../objects/structures/barricade/barricade.dm | 33 ++++++++---- .../structures/barricade/deployable.dm | 28 ++++------ .../objects/structures/barricade/metal.dm | 34 +++++++----- .../game/objects/structures/barricade/misc.dm | 6 +-- .../objects/structures/barricade/plasteel.dm | 52 +++++++++++-------- 5 files changed, 90 insertions(+), 63 deletions(-) diff --git a/code/game/objects/structures/barricade/barricade.dm b/code/game/objects/structures/barricade/barricade.dm index 37975d4a8960..2dea5cd33050 100644 --- a/code/game/objects/structures/barricade/barricade.dm +++ b/code/game/objects/structures/barricade/barricade.dm @@ -366,9 +366,8 @@ if(50 to 75) damage_state = BARRICADE_DMG_SLIGHT if(75 to INFINITY) damage_state = BARRICADE_DMG_NONE -/obj/structure/barricade/proc/weld_cade(obj/item/tool/weldingtool/welder, mob/user) - if(!metallic) - user.visible_message(SPAN_WARNING("You can't weld \the [src]!")) +/obj/structure/barricade/proc/try_weld_cade(obj/item/tool/weldingtool/welder, mob/user, repeat = TRUE, skip_check = FALSE) + if(!skip_check && !can_weld(welder, user)) return FALSE if(!(welder.remove_fuel(2, user))) @@ -387,6 +386,14 @@ user.count_niche_stat(STATISTICS_NICHE_REPAIR_CADES) update_health(-200) playsound(src.loc, 'sound/items/Welder2.ogg', 25, TRUE) + + welder = user.get_active_hand() + if(repeat && can_weld(welder, user, silent = TRUE)) + // Assumption: The implementation of can_weld will return false if fully repaired + if(!try_weld_cade(welder, user, repeat = TRUE, skip_check = TRUE)) + // If this returned false, then we were interrupted or ran out of fuel, so stop looping + return TRUE + return TRUE /obj/structure/barricade/verb/count_rotate() @@ -476,20 +483,28 @@ nailgun.load_into_chamber() return TRUE -// This proc is to check a bunch of condition to cancel the action that a welder user is trying to do while giving -// a explanation on why... +/obj/structure/barricade/proc/can_weld(obj/item/item, mob/user, silent) + if(user.action_busy) + return FALSE + + if(!metallic) + if(!silent) + user.visible_message(SPAN_WARNING("You can't weld \the [src]!")) + return FALSE -/obj/structure/barricade/proc/attackby_welder(obj/item/item, mob/user) if(!HAS_TRAIT(item, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) + if(!silent) + to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) return FALSE if(health == maxhealth) - to_chat(user, SPAN_WARNING("[src] doesn't need repairs.")) + if(!silent) + to_chat(user, SPAN_WARNING("[src] doesn't need repairs.")) return FALSE if(!(isnull(damage_state)) && !(isnull(welder_lower_damage_limit)) && damage_state >= welder_lower_damage_limit) - to_chat(user, SPAN_WARNING("[src] has sustained too much structural damage to be repaired.")) + if(!silent) + to_chat(user, SPAN_WARNING("[src] has sustained too much structural damage to be repaired.")) return FALSE return TRUE diff --git a/code/game/objects/structures/barricade/deployable.dm b/code/game/objects/structures/barricade/deployable.dm index 3de5ba1928a2..ca35f82bdde5 100644 --- a/code/game/objects/structures/barricade/deployable.dm +++ b/code/game/objects/structures/barricade/deployable.dm @@ -24,34 +24,28 @@ . += SPAN_INFO("Drag its sprite onto yourself to undeploy.") /obj/structure/barricade/deployable/attackby(obj/item/item, mob/user) - if(iswelder(item)) - if(!attackby_welder(item, user)) - return FALSE - - - weld_cade(item, user) + try_weld_cade(item, user) return - else if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) + if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) if(user.action_busy) return if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You do not know how to collapse [src] using a crowbar...")) return + user.visible_message(SPAN_NOTICE("[user] starts collapsing [src]."), \ + SPAN_NOTICE("You begin collapsing [src]...")) + playsound(loc, 'sound/items/Crowbar.ogg', 25, 1) + if(do_after(user, 1.5 SECONDS, INTERRUPT_NO_NEEDHAND, BUSY_ICON_FRIENDLY, src)) + collapse(usr) else - user.visible_message(SPAN_NOTICE("[user] starts collapsing [src]."), \ - SPAN_NOTICE("You begin collapsing [src]...")) - playsound(loc, 'sound/items/Crowbar.ogg', 25, 1) - if(do_after(user, 1.5 SECONDS, INTERRUPT_NO_NEEDHAND, BUSY_ICON_FRIENDLY, src)) - collapse(usr) - else - to_chat(user, SPAN_WARNING("You stop collapsing [src].")) + to_chat(user, SPAN_WARNING("You stop collapsing [src].")) if(try_nailgun_usage(item, user)) return - . = ..() + return ..() /obj/structure/barricade/deployable/MouseDrop(obj/over_object as obj) if(!ishuman(usr)) @@ -196,7 +190,7 @@ to_chat(user, SPAN_INFO("You transfer [to_transfer] between the stacks.")) return - else if(iswelder(item)) + if(iswelder(item)) if(!HAS_TRAIT(item, TRAIT_TOOL_BLOWTORCH)) to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) return @@ -242,7 +236,7 @@ playsound(loc, 'sound/items/Welder2.ogg', 25, TRUE) return - . = ..() + return ..() /obj/item/stack/folding_barricade/attack_hand(mob/user) var/mob/living/carbon/human/human = user diff --git a/code/game/objects/structures/barricade/metal.dm b/code/game/objects/structures/barricade/metal.dm index 59f4ad314878..3e79af2e21e1 100644 --- a/code/game/objects/structures/barricade/metal.dm +++ b/code/game/objects/structures/barricade/metal.dm @@ -44,18 +44,20 @@ if(BARRICADE_UPGRADE_ANTIFF) . += SPAN_NOTICE("The cade is protected by a composite upgrade.") -/obj/structure/barricade/metal/attackby(obj/item/item, mob/user) - if(iswelder(item)) - if(!attackby_welder(item, user)) - return FALSE +/obj/structure/barricade/metal/can_weld(obj/item/item, mob/user, silent) + if(!..()) + return FALSE - - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(!silent) to_chat(user, SPAN_WARNING("You're not trained to repair [src]...")) - return FALSE + return FALSE - weld_cade(item, user) + return TRUE +/obj/structure/barricade/metal/attackby(obj/item/item, mob/user) + if(iswelder(item)) + try_weld_cade(item, user) return if(try_nailgun_usage(item, user)) @@ -198,11 +200,13 @@ to_chat(user, SPAN_WARNING("You are not trained to assemble [src]...")) return playsound(src.loc, 'sound/items/Screwdriver.ogg', 25, 1) - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] set [src]'s protection panel back."), SPAN_NOTICE("You set [src]'s protection panel back.")) build_state = BARRICADE_BSTATE_SECURED return + if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) if(user.action_busy) return @@ -210,13 +214,15 @@ to_chat(user, SPAN_WARNING("You are not trained to disassemble [src]...")) return playsound(src.loc, 'sound/items/Ratchet.ogg', 25, 1) - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] loosens [src]'s anchor bolts."), SPAN_NOTICE("You loosen [src]'s anchor bolts.")) anchored = FALSE build_state = BARRICADE_BSTATE_MOVABLE update_icon() //unanchored changes layer return + if(BARRICADE_BSTATE_MOVABLE) //Anchor bolts loosened step. Apply crowbar to unseat the panel and take apart the whole thing. Apply wrench to resecure anchor bolts if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) if(user.action_busy) @@ -233,13 +239,15 @@ to_chat(user, SPAN_WARNING("[src] must be secured on a proper surface!")) return playsound(src.loc, 'sound/items/Ratchet.ogg', 25, 1) - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] secures [src]'s anchor bolts."), SPAN_NOTICE("You secure [src]'s anchor bolts.")) build_state = BARRICADE_BSTATE_UNSECURED anchored = TRUE update_icon() //unanchored changes layer return + if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) if(user.action_busy) return @@ -256,7 +264,7 @@ deconstruct(TRUE) //Note : Handles deconstruction too ! return - . = ..() + return ..() /obj/structure/barricade/metal/wired/New() maxhealth += 50 @@ -265,7 +273,7 @@ is_wired = TRUE climbable = FALSE update_icon() - . = ..() + return ..() /obj/structure/barricade/metal/wired/initialize_pass_flags(datum/pass_flags_container/PF) ..() diff --git a/code/game/objects/structures/barricade/misc.dm b/code/game/objects/structures/barricade/misc.dm index 5e0958f974b1..a0465de8f070 100644 --- a/code/game/objects/structures/barricade/misc.dm +++ b/code/game/objects/structures/barricade/misc.dm @@ -44,8 +44,8 @@ user.visible_message(SPAN_NOTICE("\The [user] removes \the [src].")) deconstruct(TRUE) return - else - . = ..() + + return ..() /obj/structure/barricade/snow/hit_barricade(obj/item/I) switch(I.damtype) @@ -101,7 +101,7 @@ if(try_nailgun_usage(W, user)) return - . = ..() + return ..() /obj/structure/barricade/wooden/hit_barricade(obj/item/I) switch(I.damtype) diff --git a/code/game/objects/structures/barricade/plasteel.dm b/code/game/objects/structures/barricade/plasteel.dm index bba07832f790..1acedae9997d 100644 --- a/code/game/objects/structures/barricade/plasteel.dm +++ b/code/game/objects/structures/barricade/plasteel.dm @@ -47,7 +47,7 @@ if(!closed) // Closed = gate down for plasteel for some reason return ..() else - return 0 + return FALSE /obj/structure/barricade/plasteel/get_examine_text(mob/user) . = ..() @@ -60,22 +60,25 @@ if(BARRICADE_BSTATE_MOVABLE) . += SPAN_INFO("The protection panel has been removed and the anchor bolts loosened. It's ready to be taken apart.") -/obj/structure/barricade/plasteel/weld_cade(obj/item/item, mob/user) +/obj/structure/barricade/plasteel/try_weld_cade(obj/item/item, mob/user, repeat = TRUE, skip_check = FALSE) busy = TRUE ..() busy = FALSE -/obj/structure/barricade/plasteel/attackby(obj/item/item, mob/user) - if(iswelder(item)) - if(!attackby_welder(item, user)) - return FALSE +/obj/structure/barricade/plasteel/can_weld(obj/item/item, mob/user, silent) + if(!..()) + return FALSE - - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(!silent) to_chat(user, SPAN_WARNING("You're not trained to repair [src]...")) - return FALSE + return FALSE + + return TRUE - weld_cade(item, user) +/obj/structure/barricade/plasteel/attackby(obj/item/item, mob/user) + if(iswelder(item)) + try_weld_cade(item, user) return if(try_nailgun_usage(item, user)) @@ -87,7 +90,7 @@ return switch(build_state) - if(2) //Fully constructed step. Use screwdriver to remove the protection panels to reveal the bolts + if(BARRICADE_BSTATE_SECURED) //Fully constructed step. Use screwdriver to remove the protection panels to reveal the bolts if(HAS_TRAIT(item, TRAIT_TOOL_SCREWDRIVER)) if(busy || tool_cooldown > world.time) return @@ -100,12 +103,14 @@ if(B != src && B.dir == dir) to_chat(user, SPAN_WARNING("There's already a barricade here.")) return - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] removes [src]'s protection panel."), SPAN_NOTICE("You remove [src]'s protection panels, exposing the anchor bolts.")) playsound(src.loc, 'sound/items/Screwdriver.ogg', 25, 1) build_state = BARRICADE_BSTATE_UNSECURED return + if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) to_chat(user, SPAN_WARNING("You are not trained to modify [src]...")) @@ -125,7 +130,8 @@ for(var/obj/structure/barricade/plasteel/cade in get_step(src, direction)) cade.update_icon() update_icon() - if(1) //Protection panel removed step. Screwdriver to put the panel back, wrench to unsecure the anchor bolts + + if(BARRICADE_BSTATE_UNSECURED) //Protection panel removed step. Screwdriver to put the panel back, wrench to unsecure the anchor bolts if(HAS_TRAIT(item, TRAIT_TOOL_SCREWDRIVER)) if(busy || tool_cooldown > world.time) return @@ -133,12 +139,14 @@ if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) to_chat(user, SPAN_WARNING("You are not trained to assemble [src]...")) return - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] set [src]'s protection panel back."), SPAN_NOTICE("You set [src]'s protection panel back.")) playsound(src.loc, 'sound/items/Screwdriver.ogg', 25, 1) build_state = BARRICADE_BSTATE_SECURED return + if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) if(busy || tool_cooldown > world.time) return @@ -146,7 +154,8 @@ if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) to_chat(user, SPAN_WARNING("You are not trained to assemble [src]...")) return - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] loosens [src]'s anchor bolts."), SPAN_NOTICE("You loosen [src]'s anchor bolts.")) playsound(src.loc, 'sound/items/Ratchet.ogg', 25, 1) @@ -155,7 +164,7 @@ update_icon() //unanchored changes layer return - if(0) //Anchor bolts loosened step. Apply crowbar to unseat the panel and take apart the whole thing. Apply wrench to rescure anchor bolts + if(BARRICADE_BSTATE_MOVABLE) //Anchor bolts loosened step. Apply crowbar to unseat the panel and take apart the whole thing. Apply wrench to rescure anchor bolts if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) if(busy || tool_cooldown > world.time) return @@ -167,7 +176,8 @@ if(!(istype(T) && T.allow_construction)) to_chat(user, SPAN_WARNING("[src] must be secured on a proper surface!")) return - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] secures [src]'s anchor bolts."), SPAN_NOTICE("You secure [src]'s anchor bolts.")) playsound(src.loc, 'sound/items/Ratchet.ogg', 25, 1) @@ -175,6 +185,7 @@ build_state = BARRICADE_BSTATE_UNSECURED update_icon() //unanchored changes layer return + if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) if(busy || tool_cooldown > world.time) return @@ -187,15 +198,14 @@ playsound(src.loc, 'sound/items/Crowbar.ogg', 25, 1) busy = TRUE if(do_after(user, 50 * user.get_skill_duration_multiplier(SKILL_CONSTRUCTION), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) - busy = FALSE user.visible_message(SPAN_NOTICE("[user] takes [src]'s panels apart."), SPAN_NOTICE("You take [src]'s panels apart.")) playsound(loc, 'sound/items/Deconstruct.ogg', 25, 1) deconstruct(TRUE) //Note : Handles deconstruction too ! - else busy = FALSE + busy = FALSE return - . = ..() + return ..() /obj/structure/barricade/plasteel/attack_hand(mob/user as mob) if(isxeno(user)) @@ -257,7 +267,7 @@ is_wired = TRUE climbable = FALSE update_icon() - . = ..() + return ..() /obj/structure/barricade/plasteel/wired/initialize_pass_flags(datum/pass_flags_container/PF) ..() From 031dff0b24797e2439f88a80365475b1c4668443 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Sat, 24 Feb 2024 20:45:18 +0000 Subject: [PATCH 108/148] Automatic changelog for PR #5795 [ci skip] --- html/changelogs/AutoChangeLog-pr-5795.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5795.yml diff --git a/html/changelogs/AutoChangeLog-pr-5795.yml b/html/changelogs/AutoChangeLog-pr-5795.yml new file mode 100644 index 000000000000..3e466e1cb3a3 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5795.yml @@ -0,0 +1,6 @@ +author: "Drathek" +delete-after: True +changes: + - rscadd: "Welding a barricade will now repeat automatically if it can still be repaired." + - balance: "Reverted multi-welding change to barricades: All barricades must be welded one at a time." + - refactor: "Refactored more barricade code." \ No newline at end of file From bab9f8619e277df64c23952ca1b393b4ffb9df2d Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Sat, 24 Feb 2024 20:35:38 +0000 Subject: [PATCH 109/148] Small auto-observe fixes (#5788) # About the pull request Fixes/tweaks a couple of auto-observe things that I noticed after #5751. Specifically: - Fixes `runtime error: client_screen_add overridden. Use override = TRUE to suppress this warning`/`runtime error: client_screen_remove overridden. Use override = TRUE to suppress this warning`. *This error was consistently thrown when a ghost who's body is being observed re-enters their body. `observe_target_new_mind()` tries to re-register the some signals on the body's new client, but didn't have the `override` argument set.* - Stops 'hidden' actions being added to the screen of observing players. (e.g. the xeno tacmap action if the queen isn't ovied) - Makes any observers transfer over to the new body when a xenomorph evolves/de-evolves. *(I also added `/mob/dead/observer` to the `observers` variable's declaration since it wasn't particularly clear what the list held.)* - Fixes the target player's action buttons disappearing for observers if they reconnect or re-enter their body. *(The actions were being shown to the player in `Login()`>`show_hud()`>`update_action_buttons()` before the observer could re-register signals in `observe_target_login()`.) In order to fix this I renamed the existing `COMSIG_GLOB_MOB_LOGIN`, `COMSIG_CLIENT_MOB_LOGIN`, `COMSIG_MOB_LOGIN` signals, and made `COMSIG_MOB_LOGIN` send a bit earlier in the proc.* # Explain why it's good for the game Bugfixes :) # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: fix: Fixed 'hidden' action buttons being shown to observing players. qol: Made any observers transfer over when a Xenomorph evolves/de-evolves. /:cl: --- code/__DEFINES/dcs/signals/atom/mob/signals_mob.dm | 8 ++++++-- code/__DEFINES/dcs/signals/signals_client.dm | 4 ++-- code/__DEFINES/dcs/signals/signals_global.dm | 6 ++++-- code/controllers/subsystem/ticker.dm | 2 +- code/controllers/subsystem/vote.dm | 4 ++-- code/game/objects/items/devices/radio/headset.dm | 4 ++-- code/modules/client/client_procs.dm | 2 +- code/modules/escape_menu/escape_menu.dm | 2 +- code/modules/mob/dead/observer/observer.dm | 11 +++++++---- code/modules/mob/living/carbon/carbon.dm | 6 +++++- code/modules/mob/living/carbon/xenomorph/Xenomorph.dm | 5 +++++ code/modules/mob/login.dm | 8 +++++--- code/modules/mob/mob_defines.dm | 4 ++-- code/modules/vehicles/van/van.dm | 6 +++--- 14 files changed, 46 insertions(+), 26 deletions(-) diff --git a/code/__DEFINES/dcs/signals/atom/mob/signals_mob.dm b/code/__DEFINES/dcs/signals/atom/mob/signals_mob.dm index 61eb757e9c4d..f4df347c62db 100644 --- a/code/__DEFINES/dcs/signals/atom/mob/signals_mob.dm +++ b/code/__DEFINES/dcs/signals/atom/mob/signals_mob.dm @@ -75,9 +75,13 @@ #define COMSIG_MOB_PRE_CLICK "mob_pre_click" #define COMPONENT_INTERRUPT_CLICK (1<<0) -///from base of /mob/Login(): () +/// From base of /mob/Login(), called when a client logs into this mob: () +/// Not to be confused with [COMSIG_MOB_LOGGED_IN] #define COMSIG_MOB_LOGIN "mob_login" -///from base of /mob/Logout(): () +/// From base of /mob/Login(), called after a client logs into this mob: () +/// Not to be confused with [COMSIG_MOB_LOGIN] +#define COMSIG_MOB_LOGGED_IN "mob_logged_in" +/// From base of /mob/Logout(): () #define COMSIG_MOB_LOGOUT "mob_logout" /// From /mob/proc/change_real_name(): (old_name, new_name) diff --git a/code/__DEFINES/dcs/signals/signals_client.dm b/code/__DEFINES/dcs/signals/signals_client.dm index 3968f654c486..36a60c153d0f 100644 --- a/code/__DEFINES/dcs/signals/signals_client.dm +++ b/code/__DEFINES/dcs/signals/signals_client.dm @@ -19,8 +19,8 @@ /// Called after one or more verbs are added: (list of verbs added) #define COMSIG_CLIENT_VERB_REMOVED "client_verb_removed" -/// Called after a client logs into a mob: (mob) -#define COMSIG_CLIENT_MOB_LOGIN "client_mob_changed" +/// Called from /mob/Login() after a client logs into a mob: (mob) +#define COMSIG_CLIENT_MOB_LOGGED_IN "client_mob_logged_in" /// Called when something is added to a client's screen : /client/proc/add_to_screen(screen_add) #define COMSIG_CLIENT_SCREEN_ADD "client_screen_add" diff --git a/code/__DEFINES/dcs/signals/signals_global.dm b/code/__DEFINES/dcs/signals/signals_global.dm index 8aa700f4fb3a..378948347a81 100644 --- a/code/__DEFINES/dcs/signals/signals_global.dm +++ b/code/__DEFINES/dcs/signals/signals_global.dm @@ -34,9 +34,11 @@ #define COMSIG_GLOB_REMOVE_VOTE_BUTTON "!remove_vote_button" -#define COMSIG_GLOB_CLIENT_LOGIN "!client_login" +/// Called from /client/New() when a client logs in to the game: (client) +#define COMSIG_GLOB_CLIENT_LOGGED_IN "!client_logged_in" -#define COMSIG_GLOB_MOB_LOGIN "!mob_login" +/// Called from /mob/Login() when a client logs into a mob: (mob) +#define COMSIG_GLOB_MOB_LOGGED_IN "!mob_logged_in" ///from /datum/controller/subsystem/ticker/PostSetup #define COMSIG_GLOB_POST_SETUP "!post_setup" diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index 2b9812abade4..20691a1a7723 100644 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -207,7 +207,7 @@ SUBSYSTEM_DEF(ticker) CHECK_TICK mode.announce() if(mode.taskbar_icon) - RegisterSignal(SSdcs, COMSIG_GLOB_CLIENT_LOGIN, PROC_REF(handle_mode_icon)) + RegisterSignal(SSdcs, COMSIG_GLOB_CLIENT_LOGGED_IN, PROC_REF(handle_mode_icon)) set_clients_taskbar_icon(mode.taskbar_icon) if(GLOB.perf_flags & PERF_TOGGLE_LAZYSS) diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 6188e38e8d60..33967fab1004 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -59,7 +59,7 @@ SUBSYSTEM_DEF(vote) voting.Cut() remove_action_buttons() - UnregisterSignal(SSdcs, COMSIG_GLOB_CLIENT_LOGIN) + UnregisterSignal(SSdcs, COMSIG_GLOB_CLIENT_LOGGED_IN) for(var/c in GLOB.player_list) update_static_data(c) @@ -373,7 +373,7 @@ SUBSYSTEM_DEF(vote) if(send_clients_vote) C.mob.vote() - RegisterSignal(SSdcs, COMSIG_GLOB_CLIENT_LOGIN, PROC_REF(handle_client_joining)) + RegisterSignal(SSdcs, COMSIG_GLOB_CLIENT_LOGGED_IN, PROC_REF(handle_client_joining)) SStgui.update_uis(src) return TRUE return FALSE diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index 7b987752011c..e1a28c7eb7a7 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -233,7 +233,7 @@ ), PROC_REF(turn_on)) wearer = user RegisterSignal(user, COMSIG_MOB_STAT_SET_ALIVE, PROC_REF(update_minimap_icon)) - RegisterSignal(user, COMSIG_MOB_LOGIN, PROC_REF(add_hud_tracker)) + RegisterSignal(user, COMSIG_MOB_LOGGED_IN, PROC_REF(add_hud_tracker)) RegisterSignal(user, COMSIG_MOB_DEATH, PROC_REF(update_minimap_icon)) RegisterSignal(user, COMSIG_HUMAN_SET_UNDEFIBBABLE, PROC_REF(update_minimap_icon)) if(headset_hud_on) @@ -250,7 +250,7 @@ UnregisterSignal(user, list( COMSIG_LIVING_REJUVENATED, COMSIG_HUMAN_REVIVED, - COMSIG_MOB_LOGIN, + COMSIG_MOB_LOGGED_IN, COMSIG_MOB_DEATH, COMSIG_HUMAN_SET_UNDEFIBBABLE, COMSIG_MOB_STAT_SET_ALIVE diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 44820444a955..5796d5ff505e 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -444,7 +444,7 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( view = GLOB.world_view_size - SEND_GLOBAL_SIGNAL(COMSIG_GLOB_CLIENT_LOGIN, src) + SEND_GLOBAL_SIGNAL(COMSIG_GLOB_CLIENT_LOGGED_IN, src) ////////////// //DISCONNECT// diff --git a/code/modules/escape_menu/escape_menu.dm b/code/modules/escape_menu/escape_menu.dm index c31234678b62..b61bbd5b3f36 100644 --- a/code/modules/escape_menu/escape_menu.dm +++ b/code/modules/escape_menu/escape_menu.dm @@ -49,7 +49,7 @@ GLOBAL_LIST_EMPTY(escape_menus) show_page() RegisterSignal(client, COMSIG_PARENT_QDELETING, PROC_REF(on_client_qdel)) - RegisterSignal(client, COMSIG_CLIENT_MOB_LOGIN, PROC_REF(on_client_mob_login)) + RegisterSignal(client, COMSIG_CLIENT_MOB_LOGGED_IN, PROC_REF(on_client_mob_login)) if (!isnull(ckey)) GLOB.escape_menus[ckey] = src diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index ba84f1cca76d..3a27af37f669 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -236,8 +236,9 @@ if(observe_target_client != new_client) observe_target_client = new_client - RegisterSignal(observe_target_client, COMSIG_CLIENT_SCREEN_ADD, PROC_REF(observe_target_screen_add)) - RegisterSignal(observe_target_client, COMSIG_CLIENT_SCREEN_REMOVE, PROC_REF(observe_target_screen_remove)) + // Override the signal from any previous targets. + RegisterSignal(observe_target_client, COMSIG_CLIENT_SCREEN_ADD, PROC_REF(observe_target_screen_add), TRUE) + RegisterSignal(observe_target_client, COMSIG_CLIENT_SCREEN_REMOVE, PROC_REF(observe_target_screen_remove), TRUE) /// When the observe target logs in our observer connect to the new client /mob/dead/observer/proc/observe_target_login(mob/living/new_character) @@ -246,8 +247,9 @@ if(observe_target_client != new_character.client) observe_target_client = new_character.client - RegisterSignal(observe_target_client, COMSIG_CLIENT_SCREEN_ADD, PROC_REF(observe_target_screen_add)) - RegisterSignal(observe_target_client, COMSIG_CLIENT_SCREEN_REMOVE, PROC_REF(observe_target_screen_remove)) + // Override the signal from any previous targets. + RegisterSignal(observe_target_client, COMSIG_CLIENT_SCREEN_ADD, PROC_REF(observe_target_screen_add), TRUE) + RegisterSignal(observe_target_client, COMSIG_CLIENT_SCREEN_REMOVE, PROC_REF(observe_target_screen_remove), TRUE) ///makes the ghost see the target hud and sets the eye at the target. /mob/dead/observer/proc/do_observe(atom/movable/target) @@ -266,6 +268,7 @@ client.clear_screen() client.eye = carbon_target observe_target_mob = carbon_target + carbon_target.auto_observed(src) RegisterSignal(src, COMSIG_MOVABLE_MOVED, PROC_REF(observer_move_react)) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index c56ccafc85ab..08daa5348022 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -431,8 +431,12 @@ observers |= observer hud_used.show_hud(hud_used.hud_version, observer) + // Add the player's action buttons (not the actions themselves) to the observer's screen. for(var/datum/action/action as anything in actions) - // Add the action's button (not the action itself) to the observer's screen. + // Skip any hidden ones (of course). + if(action.hidden || action.player_hidden) + continue + observer.client.add_to_screen(action.button) //generates realistic-ish pulse output based on preset levels diff --git a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm index 03ba544be6b8..69ab18431237 100644 --- a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm +++ b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm @@ -766,6 +766,11 @@ var/datum/mob_hud/MH = GLOB.huds[MOB_HUD_XENO_INFECTION] MH.add_hud_to(src, src) +// Transfer any observing players over to the xeno's new body (`target`) on evolve/de-evolve. +/mob/living/carbon/xenomorph/transfer_observers_to(atom/target) + for(var/mob/dead/observer/observer as anything in observers) + observer.clean_observe_target() + observer.do_observe(target) /mob/living/carbon/xenomorph/check_improved_pointing() //xeno leaders get a big arrow and less cooldown diff --git a/code/modules/mob/login.dm b/code/modules/mob/login.dm index 775e69dc0b92..38157a067367 100644 --- a/code/modules/mob/login.dm +++ b/code/modules/mob/login.dm @@ -18,6 +18,8 @@ update_Login_details() + SEND_SIGNAL(src, COMSIG_MOB_LOGIN) + client.images = null client.screen = null //remove hud items just in case if(!hud_used) @@ -58,6 +60,6 @@ client.init_verbs() - SEND_GLOBAL_SIGNAL(COMSIG_GLOB_MOB_LOGIN, src) - SEND_SIGNAL(client, COMSIG_CLIENT_MOB_LOGIN, src) - SEND_SIGNAL(src, COMSIG_MOB_LOGIN) + SEND_GLOBAL_SIGNAL(COMSIG_GLOB_MOB_LOGGED_IN, src) + SEND_SIGNAL(client, COMSIG_CLIENT_MOB_LOGGED_IN, src) + SEND_SIGNAL(src, COMSIG_MOB_LOGGED_IN) diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm index f8df788aa5fc..0dc2a27594a7 100644 --- a/code/modules/mob/mob_defines.dm +++ b/code/modules/mob/mob_defines.dm @@ -28,7 +28,8 @@ I'll make some notes on where certain variable defines should probably go. Changing this around would probably require a good look-over the pre-existing code. */ - var/list/observers //The list of people observing this mob. + /// The list of people observing this mob. + var/list/mob/dead/observer/observers var/zone_selected = "chest" var/use_me = 1 //Allows all mobs to use the me verb by default, will have to manually specify they cannot @@ -429,4 +430,3 @@ return src.regenerate_icons() - diff --git a/code/modules/vehicles/van/van.dm b/code/modules/vehicles/van/van.dm index c4aa64360ec0..8bf114d6b4a8 100644 --- a/code/modules/vehicles/van/van.dm +++ b/code/modules/vehicles/van/van.dm @@ -83,7 +83,7 @@ icon_state = null - RegisterSignal(SSdcs, COMSIG_GLOB_MOB_LOGIN, PROC_REF(add_default_image)) + RegisterSignal(SSdcs, COMSIG_GLOB_MOB_LOGGED_IN, PROC_REF(add_default_image)) for(var/I in GLOB.player_list) add_default_image(SSdcs, I) @@ -125,7 +125,7 @@ mobs_under += L RegisterSignal(L, COMSIG_PARENT_QDELETING, PROC_REF(remove_under_van)) - RegisterSignal(L, COMSIG_MOB_LOGIN, PROC_REF(add_client)) + RegisterSignal(L, COMSIG_MOB_LOGGED_IN, PROC_REF(add_client)) RegisterSignal(L, COMSIG_MOVABLE_MOVED, PROC_REF(check_under_van)) if(L.client) @@ -141,7 +141,7 @@ UnregisterSignal(L, list( COMSIG_PARENT_QDELETING, - COMSIG_MOB_LOGIN, + COMSIG_MOB_LOGGED_IN, COMSIG_MOVABLE_MOVED, )) From 65ee67b6b8ffc91c3f2bfb01a0a70de1a5942c25 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Sat, 24 Feb 2024 21:00:49 +0000 Subject: [PATCH 110/148] Automatic changelog for PR #5788 [ci skip] --- html/changelogs/AutoChangeLog-pr-5788.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5788.yml diff --git a/html/changelogs/AutoChangeLog-pr-5788.yml b/html/changelogs/AutoChangeLog-pr-5788.yml new file mode 100644 index 000000000000..c06069867b58 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5788.yml @@ -0,0 +1,5 @@ +author: "SabreML" +delete-after: True +changes: + - bugfix: "Fixed 'hidden' action buttons being shown to observing players." + - qol: "Made any observers transfer over when a Xenomorph evolves/de-evolves." \ No newline at end of file From 084e3837a4acc73b2ee98323a86eb8532a77b439 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Sun, 25 Feb 2024 01:11:13 +0000 Subject: [PATCH 111/148] Automatic changelog compile [ci skip] --- html/changelogs/AutoChangeLog-pr-5740.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5777.yml | 6 ------ html/changelogs/AutoChangeLog-pr-5788.yml | 5 ----- html/changelogs/AutoChangeLog-pr-5790.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5791.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5793.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5794.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5795.yml | 6 ------ html/changelogs/archive/2024-02.yml | 22 ++++++++++++++++++++++ 9 files changed, 22 insertions(+), 37 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-5740.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5777.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5788.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5790.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5791.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5793.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5794.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5795.yml diff --git a/html/changelogs/AutoChangeLog-pr-5740.yml b/html/changelogs/AutoChangeLog-pr-5740.yml deleted file mode 100644 index f80440f4fbf9..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5740.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Huffie56" -delete-after: True -changes: - - refactor: "refactor marine_armor.dm and split it into multiples files." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5777.yml b/html/changelogs/AutoChangeLog-pr-5777.yml deleted file mode 100644 index fa3c5b3cbc0e..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5777.yml +++ /dev/null @@ -1,6 +0,0 @@ -author: "Drathek" -delete-after: True -changes: - - ui: "Added the relay ping browser accessed by the tgchat ping to test and use alternative connections to the server" - - ui: "Added onConfirmChange prop to Button.Confirm component." - - config: "Added CONNECTION_RELAY_PING and CONNECTION_RELAY_CON in the relays.txt config that is optionally included in config.txt" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5788.yml b/html/changelogs/AutoChangeLog-pr-5788.yml deleted file mode 100644 index c06069867b58..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5788.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "SabreML" -delete-after: True -changes: - - bugfix: "Fixed 'hidden' action buttons being shown to observing players." - - qol: "Made any observers transfer over when a Xenomorph evolves/de-evolves." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5790.yml b/html/changelogs/AutoChangeLog-pr-5790.yml deleted file mode 100644 index b7fb64e23b50..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5790.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "SpartanBobby" -delete-after: True -changes: - - maptweak: "Edits to southwest dorms LV522" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5791.yml b/html/changelogs/AutoChangeLog-pr-5791.yml deleted file mode 100644 index 1f951d5f06f1..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5791.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "SpartanBobby" -delete-after: True -changes: - - maptweak: "Redetails bigred Libary" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5793.yml b/html/changelogs/AutoChangeLog-pr-5793.yml deleted file mode 100644 index bdc839aed92d..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5793.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "SpartanBobby" -delete-after: True -changes: - - maptweak: "Make a few unabreakable walls on kutjevo breakable, touches the east botony caves flanks ands removes some ledges from combat routes" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5794.yml b/html/changelogs/AutoChangeLog-pr-5794.yml deleted file mode 100644 index cff7e530f96b..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5794.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "SpartanBobby" -delete-after: True -changes: - - maptweak: "Edits to secure storage LV624s detailing" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5795.yml b/html/changelogs/AutoChangeLog-pr-5795.yml deleted file mode 100644 index 3e466e1cb3a3..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5795.yml +++ /dev/null @@ -1,6 +0,0 @@ -author: "Drathek" -delete-after: True -changes: - - rscadd: "Welding a barricade will now repeat automatically if it can still be repaired." - - balance: "Reverted multi-welding change to barricades: All barricades must be welded one at a time." - - refactor: "Refactored more barricade code." \ No newline at end of file diff --git a/html/changelogs/archive/2024-02.yml b/html/changelogs/archive/2024-02.yml index ba6a0a2ccd26..6b3b809713e2 100644 --- a/html/changelogs/archive/2024-02.yml +++ b/html/changelogs/archive/2024-02.yml @@ -365,3 +365,25 @@ the case of the special cigarette packs) - imageadd: Added sprites of the WeyYu Trading Cards, trading card packs, and special WeyYu Gold cigarette packs. +2024-02-25: + Drathek: + - ui: Added the relay ping browser accessed by the tgchat ping to test and use alternative + connections to the server + - ui: Added onConfirmChange prop to Button.Confirm component. + - config: Added CONNECTION_RELAY_PING and CONNECTION_RELAY_CON in the relays.txt + config that is optionally included in config.txt + - rscadd: Welding a barricade will now repeat automatically if it can still be repaired. + - balance: 'Reverted multi-welding change to barricades: All barricades must be + welded one at a time.' + - refactor: Refactored more barricade code. + Huffie56: + - refactor: refactor marine_armor.dm and split it into multiples files. + SabreML: + - bugfix: Fixed 'hidden' action buttons being shown to observing players. + - qol: Made any observers transfer over when a Xenomorph evolves/de-evolves. + SpartanBobby: + - maptweak: Edits to secure storage LV624s detailing + - maptweak: Make a few unabreakable walls on kutjevo breakable, touches the east + botony caves flanks ands removes some ledges from combat routes + - maptweak: Edits to southwest dorms LV522 + - maptweak: Redetails bigred Libary From df45b8ab932bd6c955912deac194dd5b28e2251a Mon Sep 17 00:00:00 2001 From: spartanbobby <71467726+spartanbobby@users.noreply.github.com> Date: Sun, 25 Feb 2024 14:08:42 +0000 Subject: [PATCH 112/148] Changes to south yard Sci-annex (#5792) # About the pull request South Yard kind of sucks alot to fight in this PR opens it up, removes alot of hullwalls and tries to make it slightly more enjoyable # Explain why it's good for the game Sci-annex is a bumbling mess of chokes this area is a mass of 1x1s 2x2s and longhalls this tries to rectify this slightly # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: SpartanBobby maptweak: Edits to southyard sci-annex /:cl: --- .../FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 487 ++++++++---------- 1 file changed, 201 insertions(+), 286 deletions(-) diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index d7d206c01c50..a344e32c6e56 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -883,14 +883,10 @@ }, /area/fiorina/station/flight_deck) "ayW" = ( -/obj/structure/bed{ - icon_state = "abed" - }, /obj/item/explosive/grenade/incendiary/molotov, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" + icon_state = "floor_plate" }, /area/fiorina/station/lowsec) "ayX" = ( @@ -1973,13 +1969,9 @@ /turf/open/floor/prison, /area/fiorina/station/security) "bjt" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/bedsheet/green, +/obj/structure/girder, /turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" + icon_state = "yellowfull" }, /area/fiorina/station/lowsec) "bjR" = ( @@ -1999,14 +1991,9 @@ /turf/open/floor/prison, /area/fiorina/station/power_ring) "bki" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/boxing/yellow, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" + icon_state = "floor_plate" }, /area/fiorina/station/lowsec) "bkQ" = ( @@ -4688,12 +4675,14 @@ }, /area/fiorina/station/transit_hub) "cQf" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/incendiary/molotov, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + icon_state = "floor_plate" }, /area/fiorina/station/lowsec) "cQv" = ( @@ -5700,20 +5689,11 @@ }, /area/fiorina/lz/near_lzI) "dxl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison{ + icon_state = "yellowfull" }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/fiorina/oob) +/area/fiorina/station/lowsec) "dxv" = ( /turf/open/floor/prison{ dir = 10; @@ -7946,10 +7926,6 @@ }, /area/fiorina/station/telecomm/lz1_cargo) "eQb" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, /obj/item/clothing/gloves/boxing/green, /turf/open/floor/prison{ dir = 1; @@ -9155,20 +9131,12 @@ }, /area/fiorina/tumor/civres) "fCJ" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ +/obj/structure/girder, +/turf/open/floor/prison{ dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 + icon_state = "yellow" }, -/turf/open/space, -/area/fiorina/oob) +/area/fiorina/station/lowsec) "fCW" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications, @@ -9412,7 +9380,7 @@ "fLb" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/prison{ - dir = 9; + dir = 1; icon_state = "yellow" }, /area/fiorina/station/lowsec) @@ -9527,11 +9495,12 @@ }, /area/fiorina/station/power_ring) "fPl" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 +/obj/structure/machinery/power/apc{ + dir = 1 }, /turf/open/floor/prison{ - icon_state = "yellowfull" + dir = 1; + icon_state = "yellow" }, /area/fiorina/station/lowsec) "fPB" = ( @@ -13081,17 +13050,11 @@ /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) "hTN" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" +/obj/structure/girder, +/turf/open/floor/prison{ + icon_state = "yellow" }, -/turf/open/space, -/area/fiorina/oob) +/area/fiorina/station/lowsec) "hUi" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, @@ -14176,18 +14139,11 @@ }, /area/fiorina/oob) "iCf" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/boxing, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/gloves/boxing/blue, +/obj/item/clothing/gloves/boxing/blue, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + icon_state = "yellowfull" }, /area/fiorina/station/lowsec) "iCE" = ( @@ -17474,10 +17430,6 @@ }, /area/fiorina/tumor/servers) "kCT" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, /obj/effect/spawner/random/gun/smg, /turf/open/floor/prison{ dir = 5; @@ -23856,13 +23808,9 @@ }, /area/fiorina/station/chapel) "opj" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/prison{ - dir = 6; + dir = 4; icon_state = "yellow" }, /area/fiorina/station/lowsec) @@ -25963,13 +25911,8 @@ dir = 4 }, /obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + icon_state = "floor_plate" }, /area/fiorina/station/lowsec) "pIs" = ( @@ -27957,10 +27900,10 @@ /turf/open/floor/prison, /area/fiorina/station/medbay) "qSz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/gloves/boxing/yellow, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + icon_state = "yellowfull" }, /area/fiorina/station/lowsec) "qSA" = ( @@ -29120,9 +29063,12 @@ }, /area/fiorina/station/research_cells) "rLJ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/chapel) +/obj/item/clothing/gloves/boxing, +/turf/open/floor/prison{ + dir = 10; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) "rMo" = ( /obj/effect/landmark/objective_landmark/far, /obj/structure/closet/secure_closet/engineering_personal, @@ -29445,13 +29391,6 @@ icon_state = "darkbrown2" }, /area/fiorina/maintenance) -"rVL" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "rVM" = ( /obj/structure/closet/crate/miningcar, /obj/structure/barricade/wooden{ @@ -33656,17 +33595,6 @@ icon_state = "darkredfull2" }, /area/fiorina/station/research_cells) -"utG" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/boxing/blue, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "utL" = ( /obj/structure/bed/chair, /turf/open/floor/prison{ @@ -34739,12 +34667,6 @@ icon_state = "darkbrownfull2" }, /area/fiorina/tumor/aux_engi) -"vbG" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) "vbV" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, @@ -36931,13 +36853,6 @@ icon_state = "whitegreenfull" }, /area/fiorina/tumor/ice_lab) -"wsX" = ( -/obj/item/trash/snack_bowl, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "wtm" = ( /obj/structure/monorail{ name = "launch track" @@ -66439,9 +66354,9 @@ iKs nTv dtS fQA -bFr -bFr -bFr +bis +bis +bis oLV nxq dBy @@ -66650,10 +66565,10 @@ iKs nTv dtS fQA -bFr -bFr -bQM -bFr +bis +bis +cME +bis bis gXd dBy @@ -66861,12 +66776,12 @@ tyj tyj dtS fQA -bFr -bFr -bQM -bQM -bFr -rLJ +bis +bis +cME +cME +wpD +iKs oeY dBy nxq @@ -67072,12 +66987,12 @@ rJF fmb dBy dBy +dBy +bis +cME +cME +cME bis -bFr -bQM -bQM -bQM -bFr bis gXd qIT @@ -67284,12 +67199,12 @@ bFr twb eLu tLC +tLC +eLu +cME +cME +cME eLu -twb -twb -twb -twb -twb tIn dwP dBy @@ -67721,7 +67636,7 @@ twb eBO eBO eBO -twb +eLu eLu eLu eLu @@ -67925,7 +67840,7 @@ tIU gZc tIU cME -liA +cME cME qIq eLu @@ -67933,7 +67848,7 @@ uvF rzp vds elO -uvF +cME wQT eLu cME @@ -68133,11 +68048,11 @@ twb twb twb cME -eLu -eLu -eLu +cME +cME +cME bgy -eLu +cME cME cME cME @@ -68349,7 +68264,7 @@ cME cME cME cME -liA +cME cME cME cME @@ -68561,7 +68476,7 @@ twb twb cME cME -eLu +cME cME rJh eLu @@ -68569,7 +68484,7 @@ eLu dHD xbM fHo -vbG +cME vZD cME cME @@ -68777,8 +68692,8 @@ eLu mrk cME jkg -uvF -rVL +cME +dHD xbM fHo xno @@ -68985,15 +68900,15 @@ bQM twb nSU cME -eLu +cME cME cME eLu -uvF +jkg dHD xbM fHo -uvF +cME wQT eLu cYP @@ -69197,7 +69112,7 @@ bQM twb uts cME -liA +cME cME cME cME @@ -69409,17 +69324,17 @@ iYw twb eLu eLu -eLu +cME srI dTf +cME eLu -twb dHD xbM fHo -wzE -sfu -jyF +ioc +bjt +bjt kqC sfu jyF @@ -69624,13 +69539,13 @@ tmo gfo cME wQT -eLu +cME kqC dHD xbM fHo -kqC -wsX +ioc +ioc bjt kqC qNF @@ -69829,21 +69744,21 @@ ssc aeI nQu suX -bLJ -twb -twb -tPN -tPN -tPN -twb +neY +liA +yfK +tmo +gfo +cME +cME eLu kqC -dHD +fCJ xbM fHo -kqC -ryJ -end +ioc +ioc +kgN kqC ryJ end @@ -70041,16 +69956,16 @@ aeI aeI aeI nQu -hCh -sKY -bQM -bQM -bQM -bQM -bQM +bLJ +iYw +wzE +hZR +hZR +hZR +wzE wzE kqC -dHD +fCJ bPn fHo ioc @@ -70688,7 +70603,7 @@ srp bqD cAJ xbM -fHo +hTN kqC rzp tKk @@ -70900,7 +70815,7 @@ mGr upY dHD xbM -fHo +hTN kqC qLi dpe @@ -71112,7 +71027,7 @@ mGr upY dHD xbM -fHo +voO kqC kqC kqC @@ -71325,9 +71240,9 @@ upY dHD xbM fHo -kqC -sfu -jyF +ioc +ioc +ioc kqC sfu iEG @@ -71537,9 +71452,9 @@ iox dHD xbM fHo -kqC -qNF -bjt +ioc +ioc +ioc kqC qNF mDO @@ -71748,10 +71663,10 @@ iYw izh dHD xbM -voO -kqC -ryJ -end +fHo +ioc +ioc +kgN kqC ryJ end @@ -71951,14 +71866,14 @@ aeI nQu hCh sKY -hTN -fyC -qOk -mKS -erT -wzE +cAW +cAW +cAW +cAW +cAW wzE -dHD +kqC +fPl xbM fHo ioc @@ -72163,14 +72078,14 @@ aeI nQu hCh sKY -dxl -afk -afk -afk -ghg +cAW +cAW +cAW wzE wzE -dHD +wzE +kqC +nBb xbM fHo ioc @@ -72375,19 +72290,19 @@ nQu bVE iYw iYw -urJ -afk -hkh -afk -tCZ -pcu +cAW +cAW +wzE wzE +cQf +xbM +dxl dHD xbM -voO -kqC -ryJ -end +fHo +ioc +ioc +kgN kqC ryJ end @@ -72586,20 +72501,20 @@ eMI nQu bVE iYw -jKI -mdJ -afk -afk -afk -xMW -jlH +cAW +cAW +cAW wzE +bki +xbM +xbM +dxl cPh xbM fHo -kqC -rzp -mwP +ioc +ioc +ioc kqC rzp ldz @@ -72800,18 +72715,18 @@ aPv iYw iYw iYw -fCJ -llQ -jKI -bUB -bQM +cAW wzE -nBb +xbM +xbM +xbM +ioc +dHD xbM fHo -kqC -qLi -dpe +ioc +ioc +ioc kqC qLi dpe @@ -73014,16 +72929,16 @@ vOZ iYw sKY wzE -wzE -wzE -wzE -wzE -cQf +xbM +xbM +xbM +ioc +dHD jpx fHo -kqC -kqC -kqC +ioc +ioc +ioc kqC kqC kqC @@ -73229,13 +73144,13 @@ oFI mCe xbM sJP -kqC +ioc dHD xbM fHo -kqC -sfu -jyF +ioc +ioc +ioc kqC sfu jyF @@ -73445,9 +73360,9 @@ ioc dHD xbM fHo -kqC -qNF -mDO +ioc +ioc +ioc kqC qNF eub @@ -73656,10 +73571,10 @@ xbM ioc nbP xbM -voO -kqC -cRB -end +fHo +ioc +ioc +kgN kqC ryJ end @@ -73864,7 +73779,7 @@ bce wzE kqC ioc -fPl +ioc kqC oFp xbM @@ -74300,7 +74215,7 @@ kqC ryJ end kqC -iCf +nBb xbM voO kqC @@ -75143,12 +75058,12 @@ xbM bkQ xbM qNF -qSz +dHD kqC rkp iKy kqC -utG +dHD xbM jbm xbM @@ -75360,7 +75275,7 @@ kqC qNF efW kqC -bki +qNF xRI iXq xRI @@ -75771,11 +75686,11 @@ ioc ioc ioc qNF -xRI -xRI -xRI nAK xbM +xbM +xbM +xbM jET xbM xbM @@ -75786,12 +75701,12 @@ elO hZR bQM hZR -jvi +iCf rzp vds vds vds -elO +rLJ jvi duF jTN @@ -75983,9 +75898,9 @@ kqC ecd kqC kqC -cRB -end -kqC +dHD +xbM +xbM pHx xbM eNa @@ -76197,8 +76112,8 @@ vRA kqC fLb ayW -kqC -dHD +xbM +xbM xbM rYK kqC @@ -76210,7 +76125,7 @@ end wzE bQM hZR -jvi +qSz dHD eNa rwK @@ -76409,8 +76324,8 @@ arl oFI kCT opj -kqC -dHD +xRI +nAK xbM fHo kqC From 6cd49d34e4e2db6bc4719755cbb85b659d3c8bf0 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Sun, 25 Feb 2024 14:17:52 +0000 Subject: [PATCH 113/148] Automatic changelog for PR #5792 [ci skip] --- html/changelogs/AutoChangeLog-pr-5792.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5792.yml diff --git a/html/changelogs/AutoChangeLog-pr-5792.yml b/html/changelogs/AutoChangeLog-pr-5792.yml new file mode 100644 index 000000000000..da482c895c07 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5792.yml @@ -0,0 +1,4 @@ +author: "SpartanBobby" +delete-after: True +changes: + - maptweak: "Edits to southyard sci-annex" \ No newline at end of file From cf8652b17b0cab0384dfea57540b907e8c1db66d Mon Sep 17 00:00:00 2001 From: forest2001 <41653574+realforest2001@users.noreply.github.com> Date: Sun, 25 Feb 2024 19:41:28 +0000 Subject: [PATCH 114/148] Changes some event verb permissions around. (#5809) # About the pull request As title # Explain why it's good for the game Simplification. # Changelog :cl: admin: Mods can now run votes where appropriate. admin: Moved a few event verbs from Admin level to Senior Mod. admin: Added a log to creating new bank accounts. /:cl: --- code/controllers/subsystem/vote.dm | 2 +- code/modules/admin/admin_verbs.dm | 6 ++---- code/modules/admin/verbs/debug.dm | 2 ++ 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 33967fab1004..2438577a1771 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -525,7 +525,7 @@ GLOBAL_LIST_INIT(possible_vote_types, list( if(!(params["vote_type"] in GLOB.possible_vote_types)) return - if(!check_rights(R_ADMIN)) + if(!check_rights(R_MOD)) var/list/vote_type = GLOB.possible_vote_types[params["vote_type"]] if(vote_type["admin_only"]) return diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index f3eae1447ba0..d27e07329a94 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -111,6 +111,7 @@ GLOBAL_LIST_INIT(admin_verbs_minor_event, list( /client/proc/cmd_admin_change_custom_event, /datum/admins/proc/admin_force_distress, /datum/admins/proc/admin_force_ERT_shuttle, + /client/proc/enable_event_mob_verbs, /client/proc/force_hijack, /datum/admins/proc/force_predator_round, //Force spawns a predator round. /client/proc/adjust_predator_round, @@ -141,7 +142,6 @@ GLOBAL_LIST_INIT(admin_verbs_minor_event, list( )) GLOBAL_LIST_INIT(admin_verbs_major_event, list( - /client/proc/enable_event_mob_verbs, /client/proc/cmd_admin_dress_all, /client/proc/free_all_mobs_in_view, /client/proc/drop_bomb, @@ -238,6 +238,7 @@ GLOBAL_LIST_INIT(debug_verbs, list( )) GLOBAL_LIST_INIT(admin_verbs_possess, list( + /client/proc/cmd_assume_direct_control, /client/proc/possess, /client/proc/release )) @@ -262,10 +263,7 @@ GLOBAL_LIST_INIT(admin_mob_event_verbs_hideable, list( /client/proc/editappear, /client/proc/cmd_admin_addhud, /client/proc/cmd_admin_change_their_hivenumber, - /client/proc/cmd_assume_direct_control, /client/proc/free_mob_for_ghosts, - /client/proc/possess, - /client/proc/release, /client/proc/cmd_admin_grantfullaccess, /client/proc/cmd_admin_grantallskills, /client/proc/admin_create_account diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index ede1cd029d9d..c614b8d4d512 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -283,6 +283,8 @@ account_user.mind.store_memory(remembered_info) account_user.mind.initial_account = generated_account + log_admin("[key_name(usr)] has created a new bank account for [key_name(account_user)].") + /client/proc/cmd_assume_direct_control(mob/M in GLOB.mob_list) set name = "Control Mob" set desc = "Assume control of the mob" From f9f229a118cac4e2b82a2135f31b13b856b05086 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Sun, 25 Feb 2024 19:49:29 +0000 Subject: [PATCH 115/148] Automatic changelog for PR #5809 [ci skip] --- html/changelogs/AutoChangeLog-pr-5809.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5809.yml diff --git a/html/changelogs/AutoChangeLog-pr-5809.yml b/html/changelogs/AutoChangeLog-pr-5809.yml new file mode 100644 index 000000000000..bda416105a69 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5809.yml @@ -0,0 +1,6 @@ +author: "realforest2001" +delete-after: True +changes: + - admin: "Mods can now run votes where appropriate." + - admin: "Moved a few event verbs from Admin level to Senior Mod." + - admin: "Added a log to creating new bank accounts." \ No newline at end of file From 723b6c2a259e20bdf32390a6119fa4d020c7e0d7 Mon Sep 17 00:00:00 2001 From: harryob Date: Sun, 25 Feb 2024 20:46:47 +0000 Subject: [PATCH 116/148] makes marking more effective for admins (#5779) marking a ticket now actually stops others from interacting from it. other admins can still override it by hitting "mark" themselves, and them "override" and doing whatever they want to it. :cl: admin: marking a ticket now actually stops other people from messing with your marked ticket /:cl: fixes #5547 --- code/modules/admin/verbs/adminhelp.dm | 22 ++++++++++++++++++++++ code/modules/admin/verbs/adminpm.dm | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 5f10b8d24d22..4b52f03c1ec8 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -469,6 +469,11 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) /datum/admin_help/proc/Close(key_name = key_name_admin(usr), silent = FALSE) if(state != AHELP_ACTIVE) return + + if(marked_admin != usr.key) + to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!")) + return + RemoveActive() state = AHELP_CLOSED GLOB.ahelp_tickets.ListInsert(src) @@ -483,6 +488,11 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) /datum/admin_help/proc/Resolve(key_name = key_name_admin(usr), silent = FALSE) if(state != AHELP_ACTIVE) return + + if(marked_admin != usr.key) + to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!")) + return + RemoveActive() state = AHELP_RESOLVED GLOB.ahelp_tickets.ListInsert(src) @@ -501,6 +511,10 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) if(state != AHELP_ACTIVE || !initial_message) return + if(marked_admin != usr.key) + to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!")) + return + if(!initiator.current_mhelp) initiator.current_mhelp = new(initiator) @@ -559,6 +573,10 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) if(state != AHELP_ACTIVE) return + if(marked_admin != usr.key) + to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!")) + return + if(initiator) initiator.giveadminhelpverb() @@ -582,6 +600,10 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) to_chat(usr, SPAN_WARNING("This ticket is already closed!")) return + if(marked_admin != usr.key) + to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!")) + return + var/chosen = tgui_input_list(usr, "Which auto response do you wish to send?", "AutoReply", GLOB.adminreplies) var/datum/autoreply/admin/response = GLOB.adminreplies[chosen] diff --git a/code/modules/admin/verbs/adminpm.dm b/code/modules/admin/verbs/adminpm.dm index e5fed9db2fc4..a9a3a90ff35a 100644 --- a/code/modules/admin/verbs/adminpm.dm +++ b/code/modules/admin/verbs/adminpm.dm @@ -60,7 +60,7 @@ var/message_prompt = "Message:" - if((AH?.opening_responders && length(AH.ticket_interactions) == 1 ) || (AH?.marked_admin && AH?.marked_admin != usr.key) && length(AH.ticket_interactions) == 2) + if((AH?.opening_responders && length(AH.ticket_interactions) == 1 ) || ((AH?.marked_admin && AH?.marked_admin != usr.key) && length(AH.ticket_interactions) == 2)) SEND_SOUND(src, sound('sound/machines/buzz-sigh.ogg', volume=30)) message_prompt += "\n\n**This ticket is already being responded to by: [length(AH.opening_responders) ? english_list(AH.opening_responders) : AH.marked_admin]**" From f6a870a2014915aa9c2a9f17d913f0ab6a1ccb27 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Sun, 25 Feb 2024 20:55:47 +0000 Subject: [PATCH 117/148] Automatic changelog for PR #5779 [ci skip] --- html/changelogs/AutoChangeLog-pr-5779.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5779.yml diff --git a/html/changelogs/AutoChangeLog-pr-5779.yml b/html/changelogs/AutoChangeLog-pr-5779.yml new file mode 100644 index 000000000000..e541ab112c5c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5779.yml @@ -0,0 +1,4 @@ +author: "harryob" +delete-after: True +changes: + - admin: "marking a ticket now actually stops other people from messing with your marked ticket" \ No newline at end of file From 7575f2ce9cdcc1ca64c2fc94f95b93656d11bf0d Mon Sep 17 00:00:00 2001 From: Mister-moon1 <109922915+Mister-moon1@users.noreply.github.com> Date: Mon, 26 Feb 2024 00:32:04 +0000 Subject: [PATCH 118/148] Reverts flare buff from #4229 (#5709) # About the pull request Reverts the flare buff that came alongside fancy lighting from 7 range to 5 # Explain why it's good for the game Since the fancy lighting change, other factors have come in to play, most notably the rise in the flare gun, the increase in pouch storage and the buff to armour light, making controlling lighting incredibly easy just with 1, with them being infinitely more difficult to deal with than flashlights and a lot more accessible while being safer to use with other utility. I believe it is fair to revert the buff especially considering how bright flares are in real life, being more of a concentrated amount of light, not overpowering a military issue flashlight 10 fold without the cone effect to boot. With how considerable the nerf would be I doubt they will fall into the realm of uselessness, with them still being a great option for scouting ahead of what is visible and still being very easy to carry, just needing an additional flare or so for a room that would be lit up by one. # Testing Photographs and Procedure https://imgur.com/5VNOQrh
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: balance: Reverted flare range buff 7->5 tiles /:cl: --- code/game/objects/items/devices/flashlight.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm index 58e86998f39a..2af343c8de26 100644 --- a/code/game/objects/items/devices/flashlight.dm +++ b/code/game/objects/items/devices/flashlight.dm @@ -238,7 +238,7 @@ desc = "A red USCM issued flare. There are instructions on the side, it reads 'pull cord, make light'." w_class = SIZE_SMALL light_power = 2 - light_range = 7 + light_range = 5 icon_state = "flare" item_state = "flare" actions = list() //just pull it manually, neckbeard. From 2363f1284d2f7f4c4a60c358e47f8f6f5280e99b Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 26 Feb 2024 00:43:53 +0000 Subject: [PATCH 119/148] Automatic changelog for PR #5709 [ci skip] --- html/changelogs/AutoChangeLog-pr-5709.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5709.yml diff --git a/html/changelogs/AutoChangeLog-pr-5709.yml b/html/changelogs/AutoChangeLog-pr-5709.yml new file mode 100644 index 000000000000..d2e304b6fc02 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5709.yml @@ -0,0 +1,4 @@ +author: "Mister-moon1" +delete-after: True +changes: + - balance: "Reverted flare range buff 7->5 tiles" \ No newline at end of file From a8c0e15794aa14950e9196e9b21fb5afc1f17016 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Mon, 26 Feb 2024 01:09:53 +0000 Subject: [PATCH 120/148] Automatic changelog compile [ci skip] --- html/changelogs/AutoChangeLog-pr-5709.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5779.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5792.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5809.yml | 6 ------ html/changelogs/archive/2024-02.yml | 12 ++++++++++++ 5 files changed, 12 insertions(+), 18 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-5709.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5779.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5792.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5809.yml diff --git a/html/changelogs/AutoChangeLog-pr-5709.yml b/html/changelogs/AutoChangeLog-pr-5709.yml deleted file mode 100644 index d2e304b6fc02..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5709.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Mister-moon1" -delete-after: True -changes: - - balance: "Reverted flare range buff 7->5 tiles" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5779.yml b/html/changelogs/AutoChangeLog-pr-5779.yml deleted file mode 100644 index e541ab112c5c..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5779.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "harryob" -delete-after: True -changes: - - admin: "marking a ticket now actually stops other people from messing with your marked ticket" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5792.yml b/html/changelogs/AutoChangeLog-pr-5792.yml deleted file mode 100644 index da482c895c07..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5792.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "SpartanBobby" -delete-after: True -changes: - - maptweak: "Edits to southyard sci-annex" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5809.yml b/html/changelogs/AutoChangeLog-pr-5809.yml deleted file mode 100644 index bda416105a69..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5809.yml +++ /dev/null @@ -1,6 +0,0 @@ -author: "realforest2001" -delete-after: True -changes: - - admin: "Mods can now run votes where appropriate." - - admin: "Moved a few event verbs from Admin level to Senior Mod." - - admin: "Added a log to creating new bank accounts." \ No newline at end of file diff --git a/html/changelogs/archive/2024-02.yml b/html/changelogs/archive/2024-02.yml index 6b3b809713e2..55ddb5e6146d 100644 --- a/html/changelogs/archive/2024-02.yml +++ b/html/changelogs/archive/2024-02.yml @@ -387,3 +387,15 @@ botony caves flanks ands removes some ledges from combat routes - maptweak: Edits to southwest dorms LV522 - maptweak: Redetails bigred Libary +2024-02-26: + Mister-moon1: + - balance: Reverted flare range buff 7->5 tiles + SpartanBobby: + - maptweak: Edits to southyard sci-annex + harryob: + - admin: marking a ticket now actually stops other people from messing with your + marked ticket + realforest2001: + - admin: Mods can now run votes where appropriate. + - admin: Moved a few event verbs from Admin level to Senior Mod. + - admin: Added a log to creating new bank accounts. From ec4ab3ab5734c5388a95f723d1c98b178519d0ae Mon Sep 17 00:00:00 2001 From: Paul Mullen <101871009+mullenpaul@users.noreply.github.com> Date: Mon, 26 Feb 2024 10:03:47 +0000 Subject: [PATCH 121/148] Dropship turf direction sprites (#3642) # About the pull request This pull request brings some of the sprite work which @kugamo previously did but was not added into master. These sprites allow for rotational dropships. The mapping has fixed for the escape pods for the new floors but rotating escape shuttles has not been done. There is some additional spriting required for the dropships. # Explain why it's good for the game Dropships spin me right round. # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags. ![image](https://github.com/cmss13-devs/cmss13/assets/101871009/4d05ebc2-16b6-4c22-addc-2a9ebe8a1466) ![image](https://github.com/cmss13-devs/cmss13/assets/101871009/13fc8624-3532-47f4-8022-52a6ec9d397b)
# Changelog :cl: paulrpg,kugamo imageadd: shuttle rotation sprites added maptweak: escape pods now use new floors /:cl: --------- Co-authored-by: Nanu308 <59782240+Nanu308@users.noreply.github.com> Co-authored-by: naut Co-authored-by: harryob --- code/game/machinery/doors/multi_tile.dm | 1 - code/modules/cm_marines/dropship_equipment.dm | 11 ++ code/modules/shuttle/shuttles/dropship.dm | 8 + code/modules/shuttle/shuttles/ert.dm | 8 +- .../obj/structures/doors/dropship1_cargo.dmi | Bin 2197 -> 26933 bytes .../obj/structures/doors/dropship1_pilot.dmi | Bin 2671 -> 5577 bytes icons/obj/structures/doors/dropship1_side.dmi | Bin 2711 -> 6813 bytes .../obj/structures/doors/dropship2_cargo.dmi | Bin 2221 -> 24045 bytes .../obj/structures/doors/dropship2_pilot.dmi | Bin 2744 -> 5807 bytes icons/obj/structures/doors/dropship2_side.dmi | Bin 2630 -> 6744 bytes .../obj/structures/props/almayer_props64.dmi | Bin 56624 -> 53887 bytes icons/turf/dropship.dmi | Bin 8052 -> 51026 bytes icons/turf/dropship2.dmi | Bin 8003 -> 48906 bytes icons/turf/ert_shuttle.dmi | Bin 13986 -> 89790 bytes icons/turf/escapepods.dmi | Bin 3175 -> 8053 bytes maps/shuttles/dropship_alamo.dmm | 142 ++++++++-------- maps/shuttles/dropship_normandy.dmm | 158 +++++++++--------- maps/shuttles/escape_shuttle_e.dmm | 45 ++--- maps/shuttles/escape_shuttle_e_cl.dmm | 55 +++--- maps/shuttles/escape_shuttle_n.dmm | 98 +++++------ maps/shuttles/escape_shuttle_s.dmm | 80 +++++---- maps/shuttles/escape_shuttle_w.dmm | 69 ++++---- 22 files changed, 363 insertions(+), 312 deletions(-) diff --git a/code/game/machinery/doors/multi_tile.dm b/code/game/machinery/doors/multi_tile.dm index f943cd696897..ed2874fc3505 100644 --- a/code/game/machinery/doors/multi_tile.dm +++ b/code/game/machinery/doors/multi_tile.dm @@ -569,4 +569,3 @@ icon = 'icons/obj/structures/doors/2x1almayerdoor_glass.dmi' opacity = FALSE glass = TRUE - diff --git a/code/modules/cm_marines/dropship_equipment.dm b/code/modules/cm_marines/dropship_equipment.dm index b162fb7c6a87..cd3c01459b7b 100644 --- a/code/modules/cm_marines/dropship_equipment.dm +++ b/code/modules/cm_marines/dropship_equipment.dm @@ -21,6 +21,10 @@ var/skill_required = SKILL_PILOT_TRAINED var/combat_equipment = TRUE +/obj/structure/dropship_equipment/Initialize() + . = ..() + RegisterSignal(src, COMSIG_ATOM_DIR_CHANGE, PROC_REF(on_dir_change)) + /obj/structure/dropship_equipment/Destroy() QDEL_NULL(ammo_equipped) if(linked_shuttle) @@ -33,8 +37,15 @@ if(linked_console.selected_equipment && linked_console.selected_equipment == src) linked_console.selected_equipment = null linked_console = null + UnregisterSignal(src, COMSIG_ATOM_DIR_CHANGE) . = ..() +/obj/structure/dropship_equipment/proc/on_dir_change(datum/source, old_dir, new_dir) + SIGNAL_HANDLER + if(old_dir == new_dir) + return + update_equipment() + /obj/structure/dropship_equipment/attack_alien(mob/living/carbon/xenomorph/current_xenomorph) if(unslashable) return XENO_NO_DELAY_ACTION diff --git a/code/modules/shuttle/shuttles/dropship.dm b/code/modules/shuttle/shuttles/dropship.dm index ce9ba7c623bb..557e443f08a2 100644 --- a/code/modules/shuttle/shuttles/dropship.dm +++ b/code/modules/shuttle/shuttles/dropship.dm @@ -81,10 +81,12 @@ door_control.add_door(air, "port") if("aft_door") door_control.add_door(air, "aft") + RegisterSignal(src, COMSIG_ATOM_DIR_CHANGE, PROC_REF(on_dir_change)) /obj/docking_port/mobile/marine_dropship/Destroy(force) . = ..() qdel(door_control) + UnregisterSignal(src, COMSIG_ATOM_DIR_CHANGE) /obj/docking_port/mobile/marine_dropship/proc/control_doors(action, direction, force, asynchronous = TRUE) // its been locked down by the queen @@ -118,6 +120,12 @@ set_security_level(SEC_LEVEL_RED) return +/obj/docking_port/mobile/marine_dropship/proc/on_dir_change(datum/source, old_dir, new_dir) + SIGNAL_HANDLER + for(var/place in shuttle_areas) + for(var/obj/structure/machinery/door/air in place) + air.handle_multidoor(old_dir, new_dir) + /obj/docking_port/mobile/marine_dropship/alamo name = "Alamo" id = DROPSHIP_ALAMO diff --git a/code/modules/shuttle/shuttles/ert.dm b/code/modules/shuttle/shuttles/ert.dm index 4c078f3fe6d3..cc6e61f7a26a 100644 --- a/code/modules/shuttle/shuttles/ert.dm +++ b/code/modules/shuttle/shuttles/ert.dm @@ -31,9 +31,11 @@ air.breakable = FALSE air.indestructible = TRUE air.unacidable = TRUE + RegisterSignal(src, COMSIG_ATOM_DIR_CHANGE, PROC_REF(on_dir_change)) /obj/docking_port/mobile/emergency_response/enterTransit() control_doors("force-lock-launch", force = TRUE, external_only = TRUE) + UnregisterSignal(src, COMSIG_ATOM_DIR_CHANGE) ..() /obj/docking_port/mobile/emergency_response/proc/control_doors(action, force = FALSE, external_only = FALSE) @@ -77,10 +79,10 @@ air.lock() air.safe = 1 -/obj/docking_port/mobile/emergency_response/setDir(newdir) - . = ..() +/obj/docking_port/mobile/emergency_response/proc/on_dir_change(datum/source, old_dir, new_dir) + SIGNAL_HANDLER for(var/obj/structure/machinery/door/shuttle_door in doors) - shuttle_door.handle_multidoor() + shuttle_door.handle_multidoor(old_dir, new_dir) // ERT Shuttle 1 /obj/docking_port/mobile/emergency_response/ert1 diff --git a/icons/obj/structures/doors/dropship1_cargo.dmi b/icons/obj/structures/doors/dropship1_cargo.dmi index 699a3cc13b9f113b7a7bf9a7e930c40bc96d648f..be517592324f26a1edb09b82077f1225f35e4cfb 100644 GIT binary patch literal 26933 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 literal 2197 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 SQSjfHz<=Fl-%9VW)Bgt`zK-Jn delta 2567 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 GQvLL?xqRD;i|Y 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 delta 2620 zcmZ8jc{JPU8jcWxR6^5QBT75kiP9@bOQ=}7%v5P{^SocaY1Y2+tkz)4u>-`K^guh06(ihJO~7mB40f346>dYxhYBdBV4YK?fim$ ze+(dz1A+oUAWB~KMF&ONF_>i&t9UvjCAv4T73N3D1_*!edp2VF=4BUfGQZP-WYg1o zNPdCY_RZ3}Bj!Ewibj89(&|-AEgHO;k4iI&4O@IzC8eMo)vrz?xx?JYo-Y8?3M7WB zeaJ>*)U@dz?t576>2xQm|C@7i4ZdUe4>n8$Bk9_AjA(|&c1)%qJ6dSTKF$J$75?hJ`ft1}1Mb zvqsoz+4@B0ZSu_vIEUbn#^zmeSIAB{{h?7IYmBk|b(yo-WmHoWdcf#WFg`mwN$b^yeTJpuO?<^(%0v=K9MI z1sWua11tmiX5>Z~6n3k~nD&;zWY=p}2wlaT+8Z%!wUj`eY_Iz=?)RcV)DZR3sr$BL zAS%;j(O11x=(V>}PP7@z3_ww|{> z9R0xa09vekMAASaXDyEnN2rZi`^l#MOx@CKXu|mmaRDk`NJ;IkY!0z#zoAA&pUx|o zi(=HB-HBzzJmBU_$ARy3{?*zVU2o=^r5@TSuKH(dW#0yqd#Ocq&_PRi=ejjS-MBqgY2~^PuSj4|T^wYP}JFlI3Q<^^Ro=8YNM=S2Ag!9bE|$ zgG)A6Ei_0}{ZXDZN7pBG(L&~nW)}z2FvWWc#Zb2pz3bGpEQnH|hfR;OcQd>FdnAej zGfgXJBaesTd#+4UcB+p>H7YV69H=Vm8@ISQzs*ye!_&C^=$*Kh6v$MLu1Qpb)HG%qalw_ zf*A~S9>nn^Y@+t8*EB3BXb=P=#KTpXr0%_w6u0tehh!AzK*#Ym8xd)ZqHvDt+v7U@ zw{IgEJJPtRFWWiHu-CtV0e_)M0RKAjP9-S8JE^c(qTG9_g0?t@Ca$<=z}!B_ZH}U( zJY?GyjouW~_~^mz671`-k1^uKb&_~zOVrbYhKse9NFTzeTYJTmOFyVCt2{{+86qH| z+H|yT9KHS`K0-qYI8xboQlol7%32I89^9QiLED`^Vhx!57lS{j)LbBjg%xM;(RcF+ zx${dCj}erFI96&!w1fxSt{Z0 z&=}?@KR0ZpEQcPFK1a7_VGdIuOhYJJOYjbJ#xvz?43N;#5|>~Y{@Bv?x(A_CMpich z^60B(0(+lHhRqM{&ZnGX%Tu6nI?y-@?v{Dv9cBJIJ;Fo6EzjAxC8gU7*}d0l?d>=^ zrbf(BPr(2&J=Zlz{SZgTvUZHuTR_otSN@UqJPuRIwHMhnm*#nH7Vaqh%%ZSG$kbV^nyUjm$ZmQ zdhepZoE6v$8Sv?ow$%AQs{*A5kn_O_9Ww?KML&MRB1e?8zo`RDt_zgRRM(4)7h#ZQ zTDh`X(&orE@WM~-4?S6zuE^aB0ov*vj&f|znF=4hppy6%|E#p z+kfnc=c~%`EMzvAiVDvl1f>y(Eh9*tpB>A^~)+`Q|7ohZYb&uHB2M`z;xA-jR$WQjJFJy z%8j^s>=&vg6U+t5on-aRv9sGVimURZT}X9!`O~CjMBR?w(zI-Gv}Q5;bAV0LeF|B6 zeDqrD-HiEz+T+%uwV~%n>t`FgTK#pnECZiwuerC5E`@}OYxZ~GU7LAV!bp*r5tjR9 zk$thsXrl_;Yiw&x@iu(t9Bhf!E<~?+5+51lw@ygAU?q?EeNH-Cn6h}gVEE*dYKnr-J}d-Jji+Metm375@T zc~kS_8mvM1lgH;4cv^}kZ!#di78eer=}6G5bPQe6elG5@8~v!Kp4DmH94 zMY3g!uuv;_e*wW?NRLiyTk+_WyZiDBbV<{lBl@_xsB;&vTx0KIe1Jd4JxY_vd-2uX}RauRDK*!C>1? zpE_|72II7V{>!rk27{f6+?oOYU%KxlBlicSC7?Y1LsB3 z_@T2$4t2D38WdiZ{UHD8i&W>igUv8ksrI)j@)za1<MJNpzS`cT@bUQVTQ@T@ z@RzSE*9f=66hc+W%>x-K(JC>!7oz6(S#35%2suCDgl&Cj_vp6s*##KPZ1d?8$1iy& z%?;~?i(=y?XEN?*BJN(hbG_hMVXZ?r1!^3F}^LaaT&wc#*rKG^laoR3&1x0lvTx(X1LJ0g#f5^UjHd|X@ zVW|5UQ^*>g_&*VK5u+Vq-V1 zY%}VfE>Z6@Z47*FRg{dO@7~}n4INR=VB#XeX9Gi@Y%n-6B#;9JyYxlv=UyF?umE?* zNQo4>&ouYscsiAZaS(7NvmCh_jQX%hZ5xWJ@VHE}gXDng8sERMH~%(DJSW&R^qXIE z*uk^nqt&*&scKO1*S24~Omw)+#?Y2Kk zB*$NEu&-nTcw=f>M&7vG(*Pd34KDJ?s=579nv zXuD@j>H%aAQzy+S^*(v5+*6xr`vVmlZQ(MpS2VNZ;>Y0<@n*#hhHx?Ewy)dJRCMVv zu2;Y0+%Ot;puYQ;HMw5-*=eTEs=;t8L9`&1^+lo5x<%@lNH0gh#`krrbLVR8jh_|P z58~grKvNEHGio2xDm$}rR3gEqu;L^Ojc*CXn{-mxOt(xU<`pBhffl`M(Fuf(s8d>{;(j&^~P00 zJD*EA39-26RY+R38&PKL$cBu?^5DCf z06hsNg~stS-B?_EXL!(2$n=m{)mhP+CA>i}F)ZO1coHHrs`}+9P=UGaB*>Y zWvY~Hmp=>3NNc=_vuWN>ZY0;spo>kPe;Mc3GCnxwIr5M;JKc(ajzfelmHf3?63r8! z&|M1I_ZSI%EF@6QubSRoUYJ-C%$L(zXYu@QeF2&(4xYx-o5>qqOl|GX5^3GL zD)$sc{j{0f==1eccW)!;b4-8`&PS41kR`)B0nEV!Ys+i~EyZg8_#*@iIyLOf6_iL# zzA2=%2BLRXNyl4gli9`D@_8I?Ew$Orc2+xdVo}$DE|M&VXBj~BDl69`OB0e>bV zdbNci6Xf$yI>G=sDoI&9j}n^_q7NleD4HL_on~f3T3>MZE#ccktz2!naqe9eEAO@v z;lWdzR7oV%Gx%r^7I@P2X0+%F%v*8b;(u#aT6zJtTifqHU%U_3@dcq)FF;)EgJ zT)YFPS&+-poB|bAPve>{81N0~@Mk+Sh`JXY=oK- zG3Z3HEa^+?H8h0tqc}5AsVLi&nE5BD7zQJKRR;901)RRoDqEsIk0baPuy346t*z0l zO>3+xKzbXBb39^l6mwzGLD6zFtpmkGxAFK-v&OKH#fbLmF&2Pp_&%Y!IK#-;3I0Gt z4Rs#tm6|g?n#rh(M2k(6eP+ZB_Kgl5)JPDZ15=@=O0p7|N;7(z*hFNCc=ZW5nnrzx z95d>?HjXg2JQ6tUphtr29_&c9>R@%>rI~KJ>vh#Ub~(>0wXxkJfp2&LgPQQ1TA4`2 zVhAr0uVN)EycR~x+LgV(ef``ZW3uFO6|*{`Cj@PjW$$pMPBNNInqC#6f7!(g*@Qkv z<7jGyf2v)H!9_rik0X%7gRfsYF4N8Jse=Y9ijqV_^qw*S`63}>9{e}%r-`MsSz<7M z-?LPH?OClbU%C52bjuga=Ak9Yj^ff$pVf*c?ytRZNYh6{Xa#cP3?8|3m)Gsh0)GUp zb!Y9?Kqb;idid|jh_->D+3+pAJn6tTY<$5qD#$>8bcvr%o_ureV`KXfv6u0V)6Dr% zrt>0$iop4tMMhyt%8-60DC#Es`StA*94Y1x1Hd^2bNeiCVt2?oypE+=no(ELO#W7Q zO-b`Y`{uv9b0oUIe!0V)IzRNO$`3A8u(^vDF|RJRl*%Nh-lTKF%uf~HG7(dI&R9O} zak70{5^cd-UOW{|Nym%oGCV{*c)o!1z|RSmnF9>Pjtvm0$=mw#1#`tI(iXqU_8cT> z6I7FF9J>)e0J!|eUeSv9zC^)X%aiX0R~<&Soo|fXv}}V-d%h*PJnxcUPx7^K{*dEg z64?!&pUH6#X|2%tF-efg>k9~s)61beo#&MReR1vCsyOLQlyL$F#C%2cK762$oz&OL^ooVxPl4#h0PElElH*LrN z*@uQTIjvz6Jb2EE?;;2zv;tmknQKo}R*v1*)6e~tc*t0S^&Z#+z@QH#!>TE?R@|+c^4fdAbUPxsJZ-QKOx+@Sk|7M~#$zf)j`OM_Kb^jGmixKH zmXd>)gV$!}#g4394Y~88dW?xYotleX?GG+5by#(%TC{s6(qZn!v-(8=EhXDMtW}^+ zrJHA~Hb$|m4KTZwWt+5TB|%aukaDK2zJ}t(CZ?tIQulOAPy>W=TlDQs||#mra^gEdpea3m+f6xwZiA2j* z;8q%UOhr{FWh(|hMhLWvJA;9b%zy=!NA}O34RpY9Ye`I|wJ7rCrR)SY`y}ud^xtV9 z@Nf4VHA@iIJNixr7W1EOQ{+BZyIJ&5qv+mZuttFw=7S?}GKgdO0(*o5DqM1tiWUh3 zkCR=Mhku>>n7<7S)1$Q65dcTkUrs^ z;KH1cTUA$1h!&cqn`VXFCIFHD_`h(EriBWYTaA#WxNEMvFd4zE6OC|Yz+!D_!0RP`t}MIBVKab>h5_V12A=_V z|DfK;*Y^IhCSbCi95NfLgwFxkt?j4@%~ijKP|@s(GCN#yg#4+LOlNjnM`i*m2NL&OiWny5jJ&y$k#5j)qkNe(;-U?w}PH&O!whr z_Bc3;f=RcnNoaVPS0`F{6T#TcX*R4DZO0c0Eu^s>K{B<10qDuj#%Arr0!FrzpZW{IC`N%KUz&%Ot-WXq0R4-a$(JVh^?g?uAW<0*MNE?GQ-= z{wy`iz|0Blh@(8&wb0Xt0}%r_{WZ`Gf1lo&oADWv?FaQ@-AC~cu_K;WKNe7RACoHA z;+ci+JV63tDA*Re3px)QMOq(CM*sF4qj_mbZTWZA5;;SnOebUy;_XS{oCBVt z$%jb7w)3+PiFl$~C1pMEsTl-*HGlb~9xA9$`8K|#zjnCX!%p#b*HFN6I{b)Jdqqn- z*b!G}yOmsL9IO3W4^pV%Bj{As@zH$2EPp)$^@VyZ2n|<#?1u#f46Y(hge9c0PE3c8 zz+Pc#g}tgnMb@49{__B5v`*L+RAUy&X!;6n;&r0asFLfH621&clVqWIuXtC+KHIzH zU?&?B4hje1&nd;Rp2oP6v|m)hSl}o#qWt(o5@(4Wg4YWKua#A#F}TxELMPmEis#HK zlR7VdLnN#6@Rcv1kJU76IZ3=xGy_BUsK*$)#x)`+VCL2`%5#pr<=UlGW{wCBc-qSb ztGaVte=uKheP42U!FDK~n5e$;O!Lj?sf%8oQA}^)ATO>uCATI-!fG>#uTC7%Xo^^xf+7S5w>E^T2UkjW6WTPSMt##W zziKn2+Z?9kVF&#Acy`flP2XkN)iH};LnO+BwAkhKbZ~Vb3%@nfa^*5)=xQ221eDRD z5?{jtRq9()(14PTM1#OVay;U3emH_b|5V^IXRS#PDr&DdXKigQg6uZ6%rf3Z+~keC zFmff^i{4=`qM?E3*J6b%ZXHY(JwxyJMCp~y==r50QRMpKQ6B>8AYAS0Gkm0*gTSrGuTmtKMy-N{6+)aC-cpe-Q35r%_5iXcSG96sWo*sUGWIzmoB8-Az5UK6fQ%r9Kb96>l$@0ota_?(UzXR*$D=l>FG|b0ZcwTrPOFm1 z==2=RC!kxf=O@@8VGHkyGX#@4VFu4wUH^U^0=3(O0onzP09GD6`}2Dz zCnqn@YXcs9!;^ld=H^$*_(5m^JNNLXrtfG#@yc44#u`FJ{^wZ;vOxU*zu#IIT=W$J z+N{Bh6`<*MG1M+S2COD}-3Abi{*2>}20JcckCGj0K%MyC7WD(8v{-$)0?bqUi2SoX zHs0S~doR#(-L5Wer*|i*?1BG0VihiF06zl{LQ}yP^aun-PzN@eYQ1|&Tzl5;WM6?C zX_b2ARdNy~B6>Gr^T? zRZEi)v7=r_Oa9p}6IWfi<`{JT|G)?kSSVh?q%eGF-(03R6A~Rq0Kyw7#FO>oC~)>a z4Aq_3%<%_S*21-l`VfvGMI}ewJqTh6n5>!M&O&#}%`9hW%cl5&ab%eM7za#%aE3G1 zJ8kD##@H8yDb~Q6W45$SA84g~8yj7qp~-Q@GE7b2Nsog0;k*1(5%5Y$N)zzo$iv(E zK~%4Ej1MCTsItn+Tvs>+nuy2|R_4rv>eBW;{bcP(eH?m+_R_-9O#t|kRDRJ1p4?XZ znxg`2Os*3}oeW`$1^yXCa6~HS7N_#-Zn~r^FXLiJk3*~Ch{39mWs+B4b5J2_lvXFV zWU0bJK_0h8pvh#u20%no_MjaSJYdWid7m(;ZAPe!+t%-dUYhOVR#1jW>bS~ld31m0 z?N48Sgb$mMkPIu*1iu@wo}v1J6(_!qA8@v@Xfxvd;+3U$Zt0cKEfdYceE<>LP7eER z=Y!#!PY1R*Z+~vom~!_Q{QJ{^Gcyh~zrTQ{|LLES9EY-;92a7?%#Bp>zc}`!Y*6{b z1%_4ptzTizF;TEyu;)<6qYx(`TcKevTUXGLa!y$5mRybTTi;&gF3kk6_I!UAXFMj=eZHf31#W0;(Yzw7vJUs?pp1v@| zXVQ7QUzB@LfvayRmtQfqQN7s1LRpdn@Bo3+vko;4#Oprmlq`IPNPOJ_HXNpJ5?8jA z;Lcv>CO$3a?^ny0yUZhba1=bMiNg>V>s6K;4Up z5RqQyPat8HHJJsY0Trgt%Y>*UkF`sm#(Gc6LT5Nr+N}vKvKa)Rtvfd$wSYs=3DOD% z_u5yc&i?_#!MING)Cp*B9V;Pg1dH~0+6qcT)GE4zTutw&7$r~>ZfbsrkiVsfi~>jp z$2z&IM3QC6;b)g0jpY=uA>fE&hK>SX4nn(B9Xgy{z#Gc>9BcT*f`p$@H(@diRxd;N zh&i-W?YBBl-0bI8QnfN>tEt<%IzpZPvN+bLUg|+zA=FQ%GHpnxlIqbl%CMxW`8q(y zY{nb~WnAFl9}AfHe07yq_BAE+JxbNtqy9_nU$_z9-VxojPwq~jW;l$0OWXB26qPQk z9YbMM__S6d^FW|C*cm+NW>sFi$B^(~1S?%JQ%!3%U_wizD=-Gz;n&5}|FQs6PVt`N zIYHH=_R!McMFk%rY&MyKUb=fLcG#=E99i0Gol0MPiV|nO+BtUGd8IczNoFd&nmI*Z zU8k(|mebxFm@T-{>}&oaG0 zg!*W8lsV90LP=OIZl@38W^h78?k~_O&3~ecwYOdWrv5~GHxz3^fDAPCskUYX{~)2>sxrX8TGBQ}4I8-2NC&;&prvB<0p|e8w^H zB?y=@cEYrtLiFD^aw*!Ra)nN82sJEntga%wxe-MR8U%^!nx-cZiNtD^jSXav?#tJ% z2eIoJ@Mf*2AYpHs@-*#VZ;I9J>N3YC-RT)tGHixtL&FYAL7*`z2n6!TddB{#5@eqc z)(IY+!ND155f>L1)!*0(6058s_Gv8V)p=x}5j9u-1B|o8-aSVJuIxUgM)KKt zaC!ugu`?hAe<2U}#3zMiFiEHc;*g}{6s|;jObHC6o#&?>uN~~i2bb$lwXhml~R&;Ne1p4V-UE~((qI9S$XpT@Fo6t|_tjO|Vh|G#mhg}B*MT*o74hJMfP^ea@$UhU%wq3ga2X23zoZ4Np%}a2?2V+XC>Q72%M+S9NkX0f$Xmd!?2lGQw{W9Rqp=W<&O9zV;vg zcC8hm$e|afW{q|3i1zwAVdO+4$8p>`n^Do32=v?z0#?sOi z$&J&R@bQa%7-iTv@`^HZf~TKOg-aW1g8ViK{(%>qso+4LS>s;_lXv7##C9tfvbMkJ zR`fuiMgUD^{z7|1<+b*uw0sC-+1(l`!|(Pnq^f`fH`PDF(3lEsmbQ})d;oZ-C4As$ z=~teS1}KDV2Ml{dSM0bP#dRkcyZY%})(8G;edEYD;4*>E|0c31L@zPOxv**Agnqgg znzwA9G;}}!=2gnsZXSTrZw}920(%JLxLjvsXo*71P=k~D6dh;E${kt|161HKT-I~i(H=fczYZ%VTnr*)V!zjSSCfTGfYffCb$ zJ~ASONE*?wRd251l!#B$4?9tanm^^M(`Cx?wPW~Db|uNN_L1nMm8H)B^4x~EzsU^o z>IG=Aw;kA#zM@>shthYGaAE^n0PY53R~O8yG2f=B6NsB5)_yp+)yT@FCWOvfTHAl` zQX!PquJjyf-O|=u0HHx2%^p@hoiss@%hD4Pz)9Hi zhY!=G=U*_1GA|REF|&d6uX(Bdh9p4_n5^B-K%h>T1vobV7QkaQj(IBq>yCEg+a4T+ zPTF6JFU}?%TT5S8fxAj(A928*-hEYRlrpn++ByK_41&r^;@{(A=PV18wVzr7l|rJj zlQe_c%`9S#Nt$RDeCSA=B>EOXA~`f%ksPkQ5fyk;QB(Kdh*Mr}hPibGXl8_KAX@rY z8nqZ6b5zSD-7e=v`q5;rJy|Oy$y`;bG)wo{&Jt!(0EL1nco^VsfLsX3UlpiR_nKcp zCHz)aBQ`fFFa<`nKwg@Bw6wI;dz8*QC~=_i)@UjF2xv_6Buq2>^~6Y`t(dTV%yM55 z*+3q?AZfc%@h+lFtN4^`Tb@bjpPeZhxNoNA7M^|sw-N>&-KY&BPEr^KW!662X7mGx zDzfV&JHK5_Qv_tS3Ku|iW57A3PoCNdwg^Df+Y#Y$^N&XNwkMxmnr4_xX3jE=XbwK! z*2*}H!+00H>VQkXCkx7%J&&y3!YlkouvVPhvcN5J+$$O8POvk68`WiuL5$M3snJ*` z4;?_uF#J_Z=bzN72V=ZPm8vHrY6o>4em~<67?4yq26P}s>*z$TY+X(QTQ~Ju6b;E2 z9Hzzl0mXs*m_ub{#39(``c(o3du`L9IgmsXFI_pkFKL2!h#aohog1*!uKcp|$jRM+ zg7}gLXL^stYQ`}NJ`713*7`MdN?|*dSxg)5($az$hg*pz?18~`zU{R@gJ6#GK%EXu zlMoWdU z2!B&CWjatITikiWqmrq#Yh7Z^V^GBCIECf28A&MEQ9cYsj)Prvy~jXT)V}q$c>3Pp z9=KcR{l`r2OrfSMypgMW=E7cqvQjvio!my^X$1-vVS3Up7vd)7hbvxocWe58D_m_E zw;_-CA+Ra$`uf6SSMuD$JdX8D$k5e_K(;QeiMfw$Ux$EA)l63Kp? z*|{jR`#7?%U$^Ng#P{?t%X^qc!_a_=4{8y)ud_iQFzS&4&RCtQi<7vJ07dMJQ>E^? zuH~7`3N*8}p1Q!apFDy(PZ`7q5FAK^tz=G@b^WG`>4O~*dl0;P%SIvHY|OmAZHH%XRwL<3A&}KBl3C5Vso#|oT-@elE+H63Wnd?(2Vd)!NQxarZyl1 zeGQUg-<7D4GRe{F>K9>sv9F$MbQR=SGa##K>rn$(r0@3{i~=nMK$KAi>QiMKuaB^G zM|}KBtwV!2-Ln7@{TS6}mcH?6>}XX0$}+x);a=L#R=kn&K7M0~hPJN>FweaBW#cB? zM<^|&Cs5qjqu_O`(K)w4$L6Ch0$3>+@qdJDwlyP_K5mxAe}$qdbHN%pttfsz!ZEh2 zxHOMp%9eSub*K7g6Lt@q<8u+i4sHN?03j?2WUs-N*ZT63@_!8E+P`(J=^Te$HqYhn zq#)ZM(mS2m#%xeZB&T$l&TG%?v9V;JHx zHP7Fef9Qt7DJhhJK!C-0LPq!>Lxc1_;MZQ;*9q7^K*)YTqOL;`5Uz6U3c^)(313`|xJN-vhAw zU8$^M2$uAYkgnB@K4`cgTDU(usWI?Z^u{$pQrWs^ZH-XENNpaxx2~#*v_SdU?~C13 z^_P=5MbYl14yRmyQc7a~B||>Kf874BLp!c`;Q}D6`@MxPxqQdxMiM$F%lT?bP#dMc z9j`eaP3d^l{B-wn2ZtU1X&}bB^r?2E-%Ot2yt1UC4`SYJFVQBnTy(N1hHi7Yyg|5q#&e077ca++GZz+W8vrpUX9I)f0wT3h2i*f^c-z^ zIFO5i@j!CX@?ntV3u_FAJLR^%%!L3oU^#*IN{Wn4WAtP)8ZR;%Yk7p~wr7@y`x}s?kf@&=eq!^v<^DRS&Io$=j(XA;2Z%F`}ZY@64_={Du2Xef9)UVzS- zAOfcIt*M%c{+ejk>4`ik3nG6hh+SY)o13#=9B+;S3cq^S0r%>%e9nmbyAmC;_9X&I zFDnHcFMZK_VTAi#_|3tK4TQ?yAi9v9j}j$i?P8ltr{+o3Cz|v_moDJg;mDYC zi@Ijx6u{mntc?`Jf?7iUir`}@V}Zc=3Fj6Qhyyh~F<1(xPn~QvIkcBxvP7Q8W;u-a z3n8vI~B?L#`NReMt*O3i=~UFyPfz5J>N<(iT%p^K_E#a4D1VANze%6hyWoWp;nv;g0a|;N2bZ$$K2_oGci=&frf(%eKFr41t(L8#YI*x zi&CfXqh>yg%+B^q#yCse3H?U7;^01WF3M9&HJpPmAAFvORuxs-BzI!HhCK8BVqrnc^9itqz;A*EgbC`aXaWsQXBzz56g{&(MvBAIBpn~_=A0Dju6<6}!t4&;hh3#9JvaH>%7sWs=JGGXobykNn z2tIKs@xbO~P~gD21Ja^C5I38FlsR9qDt&Ik{_CZUJI)VKtn?|m)c z{)n3Ye%MgB6h$~lJ(RaDO6^GnD18`dm;kmi>`1`m@WLK=&G%|9_{+p<`DIW55DruX zJ8^e!K~mHV29~|~|INAO?)R-V5}iBYQNt3W2ERF%;6} zZOJq^`TTP|l-n(P=eMe9WWM$3j({OAwGISx3DHjBhRww>^hGbC@#g(*Yo{vnC>Z}D ziy#jCxE@Hn8czjBoIRGOPXHxU2=ata4oiLp?`IW%$$yN&J1Wk$^Ypz+w;)iJB(B*= zgRrAU6zCWemR91f*df5JmPKGSd%3@;6P1;)0Kb|7`F62R4Gb`4wDq1*=RF)k(u2a;O2gn01FqXtn!9w@j zAuC5GMGNOkpvQ0aveYpyfS&U~Qpnd7`}nME}-%8Ck+X+m>%W1bXmmNV$j= zZVy%lw^j09$x^r1d45Lulupgs8{1DA`qdqRl!Ywf7hF~C_W@Zp5H5hCkQlHXL$DGOTQtQGAO9;k6T|p3B5?QaJ zS=VBwWW_`SjpwiuFm;mDWMGWreM(6Ilu%!{4Pbx41m3Xb1Wf}Z49nY++n08m@S7|6 zcN<?f6eF;uGN7d# zAZqHhf1rSboUd#h-m{{z4Q4ixsY^IgC7Q2 zTNX6?=D-;_()&d7vZ&Wmup(_voho zQWo;VWUYYs6Ve5P%1oO#pw?8m&&_7%D;7fB42pM+bAb?ftXBaEnAk#!P8Vebc#JGJ zs37YTPCg1riradD98fGCRByFS2|+&Gaa(0msne*rGy?Fjt(isjG2cssKxP|ct+S+j zYPbFy0fq!j0L8J|a^V0-0GP!7 zN8uPG!xAr6TuQ%ycc`9Y>;D)a{mi8q>2vEp)t)anpyHrMsc33xz1^sc(~!3!4qBUF z?=bdbl?ml1Ub#Xsv!6^}BYA#EMQ?+e&2&(_1=)3QAP@+|8m=V_CETz1UM$21ll1}u z&s$P5v03G75Uy(>*oi(~G1Vw*4U!I^h7H<-zAfl6JHMna#4+DCd5IOiF-`GLFAjHC zI+6cRfXlJ-)+&|z++uhF|{3hk|+_W!(>A;J7*>vaNq&V#4+Ai^pz!{Us={YU-UL@f~zD(;u}6XDqaj zkePHeqvTsPgW+WOnt;>c8y!)0#Dphq9mPx5o4l4-5N35d3ONTVA1 z7(c53K-(iw;=^=Y>Ss9{`e)gHcZJucHIyRw)DzZL_PG} zKEjrR&~_i7(gDa#ZTHE|G43-M7Uvp=fYtZ|*H7@OPmFRJ@6*f)F8ajVt?&}cH_xzB z&EvM-{N(rv3R#D(Q?mq;6N5K^83C$)m$!yUGvs!QwQREegYW@Eb_owR>`8cf$L(83 zt;~Riu2t~Cqxvs-9mZ3PRx}DziMi_bXSudHY(ZVh0rzOdERd)qhzl>ovCg+J4QVH{&dNmSwZ9slI#Wc5#OD1&15g#=j+1d?I8`srduf+?oTC54 zt~NGqO#*~ER1f%FQK!q#{Q9{zROozr;|A_@%Q|;@gtD^&O3vH2(69Th;VG1Ol~evF zwn~m~7(-jy`5MJSlw%-G@(lhygWxB45Gn*@JI^C-PG2c%yM z=FBXVq59q22-Fa2uElX+A0)?RF>1GB`F7lvy2jGhC5yk#MV$|ZP}MI!J#Z4@qB1(p zgKKg;*Q{`?eP${0xS)iGFTmUeZU2mp|?@5LK3u6Ihk5y?a zZwN?tkgMaZK5EAo1Qt8H;<_y!sVTgho^~o&`Iz_D>5hW4S#r8rgO~f407dc{!N_9L z%+!49#7UB3jFoC8mU-#U(FlaWgun@vE>=-b&wB0lxqJVTfdvB9+_3u3 z18)KQK>?&>V!s8Ft#QJpTzq_tCm_KdtGTJqP(6b63+P$4XpVi^1*ql@t)`{Y;t#R2 zy8r!(wKhLX`2*eIC7T);%$G(gKjcS7KMi=}2t_vu{ePNbz4ZS-;ALm= zPv3`-bWdjO)jxNMJ+v7L^fd@G>TfK0O*XeY_i$weV1?KcIjEqaZLOdoi~^M&ucdgM zdOkpfx9kM(MW!YDAGVVy4f+z0!ETU&fy6Gvy0A06o+E7P^uKkLTKrkZ!}p~s+4I0BTstTb#4kQSrrI?~ffpf)Qx&fMif?lOPn#MHRMACEguA32}JUhs{oqKG)XHC(bWTrmyG#z3q#` z+koQt~-pWXM_X?I@r%_Y)ki#FH?gu<3HbU(~o1|I>BLmPXE1*1+*0`@+ zHJ;*Y=){Q^yAP$VL2Tc8dpOA!n&#jDD0Ag~xMD7NXs72n|J)Vesd1`5cxf#Py!AaVV8xk@EFPc`f6_G-Lqk&`st zF^2K9nMCEOpPK~*=_4GWe=Od`S~IQ1`vmMAOkha@-9QHADq;{gR;>uq@x z!+WZkRP?uejnA^@N6xMtS=7v;1JC8@#gYckAKphZCeg$q%|KdELb+lVA)3y80TiDGU1Xmmrr`lF`?xS61j+2pD>LtJR(pUJWS$wgPD`m>vfhDutg)F7OLmzf8dbVWa1~{1{5IA@stZPt)5w+c<#u~Lc!L>{CKaC zF!1gY&-Nxo?$csB0pGk0{2~vXb6O6WIu^p<-fdv8!fBusNF@byA?dDV-N$QNvr@R; zr}2YQK7ELwTCXv+$JyKJcR1*Rbi`FiAI4M0cNv%`6C4*7Tnys!bi?bq5=f-R5-EwZ zRZoDQSyO%MG_eXj&j5i?4Ns-d68^t$SGo>}_4NJ*Q!v75C{>s6IJPWbs-*HdC2V;t3Ksi+xTa6S7ARYiL*?DI2P>pRcsIk?rgFIeiB-7uU21+NP0-`!sQSEt^WuVo|KG^%n-A+f(we9#BoNY-f$R$Ct zCYA)9Gf>c#t)BY7uZX-d=u8@KJDc?wp>JRyUv537u0x&kv;80o8UnP2pt{HQg3~pu zpQ+1}sx!em-9ce&u`tl!2p;7IO5Js507GnJS$Qd3n4l=P1-YNOQJsH6WIJpbF{fg9cr(yoythNn|%EU1#a)ffG9y zKX)8|%Xir;5fUN&`5gwad{lIk*II8ZPE_6kN9$7sFbq~1CTDT6olcnQsbPoLK>D^5 ztR>k^`;ggon^qv3L87}RR^{%24Gwu=O@{Y7Xe8NpQAY@UEEJ4uP>9g(A?_`-X&2+i$bSn}RJ>U0&7SDqWm(YDoUj?Aq@#fAK zT?lMY!`};KRf5Jv9gik0Hdc?4S!${3E%tR67d1)s5eQgg6q+}_9>}`(Q-P?+9ua)0 z7W#~ez1_?>e0IG)vsxP1d*Yi!L`m8=_(=xIhdW;iv_BY!ej(%l#Bz$b%a1&x(3L+h z#OJ34QRp2gppes%`eWAMq{Z*FvF2*c1%S`dm6znpLu-UfRUz@=+mC_qcQtlF;&KES zN6S~fTe)fEQe^fd5G&TR#ERbFi(pVb?a1lBCH~l2N-MpokeRI9mJATm|JazPUnYS3 za^j4ee>ngq9!nz)tU}|)u1QWGcS!GF@w2+EQ;s_)=Xkpk*aS)I)(6TsRz{7f@JmJR z@4o6zPt*b9^fNAlBx|`Ei-UXTh&OnlQVo{Mu7bz_q{_>QYQKq?Tu`4_((XwtD4_Za zs~JX)&Ao(-pX{|@EO7q4bghgMtmZPPH4*?xOo!2H_W^x%?@7>wC7r*)cRx<%&+5B? zidho){0o3IMf;iMYx4@({pbg=5_M9B;athWc@9W__uUB)eUL=0^L<<_co#F$gYROI zLrD}`YMT~FzZToq+%;#HMSLAPaJXvs+)XJczZa}J>!+y@YPW<2bp)k|QU}zza4*|g zLgzj};YgWPl6%IQx|K{H&8QFyIv;f#5yMF|@{(2isn)%q+V4%(P2AjmruWABOdOD& zMHL2}`tUbM=dnK%Bi8RI)!DsXH96vu$srG{tG)kP*5jx&y(BZ-ClzA2pxNH_j2}fa z=cYpX{%OrdB_{&41S;PS??#0gbyl$HBwsA3S=l?c$f}dV3emrKuP6HWFMPRIF2n>y zk{vl{C;ncCLOq+ejc*FT`pq{iPd&xok~c&U0Af|3ZaqfEVo@pI8wD>le`D8hP)1;I zmEaf`0QB}IrH*DkbWoZ}zvXjwn*+7aA44VCh^S8Zqe}JINjrm9W($weywmNmiEqXk z4kx_G;CpD;Nih&GhWGX)C50b$cvoReZ*`KlACNkk1Fd6GL2;6ddJ1eT7i z&z~X8MEiN=N|d@ZaM1Qn{VpPVy-BmbZ?js>y|X)>~h>xRQ z8rE$``Eo9+j-cJC`zA+y{;ZpFA=;%PqKhsyL^6*p*GzK|4E|!U$`rzj7AVR(<%Y+y zv~ewqjC7ogDpOgh=9#i?pJpm$YD_O+mg0lmRU~Jvp9_x)Q(mx}%z|U8i`~)=?`I}v z&ReNzYK~BRP@&1Qrgql$;`6f(IBO$Z8rs6Ok~y_ z{QGdlns2Jx!pxW}1F-(ygWZOHo&=i(3f)63@Oc2!au%JxVgT8e*CMM;j%_x?#ls%bd;YGu8yV?_YS z=eA}V%RO{eyR%qnTN47z+a>Y-};V|{plp^2br{6iQQd>W05b9 z6x&|Sna7q=6e@Zbc4<()OaUQ-iucQ11{x&+=6=Rz4(p#?giTCWvGOL}N4eyFd`6G= zc!-C(*i6L8%xB&hTW{^ru^AK6lQYyZGa#>f5V@|e(TdMkH|@X}t_1Fwx1G zbFOPP=Tc{Ht0y?J*@B)zbKUm<&B;dL|7!ElGtn5SOepZ{%ExWR1~?A?<~4P%y>I;k zZyYTj=Qv*SceFd?dpd$INwDLJ1Fd}mb#J_+8in08oWFlg@u{eZh=m)e=EJ(gh@(Z$ zdwZC6=QHlE;5{n<*Y~Ru^)0ygY z-t9?xXyT79eGx9)ysp>@B<&o60sg>3EsVoNcD;i}1vfe8s{B?8a!Tdc-cQN*Iayh=??Rn_LXft^f6!s{Ph|M?|@gRqLq%C?bDq7Fls);p*lmbb0Y zeM&n_Zc6pOVeWS=V)U3UDr9KYwotKkLsTt0<6509c{~DDmFUZ8zoKq69Ah>*qF}3XKwp#iwLyNX{<29PU zK2+?FhUJ5vvP7I(KB7O(P#CL+&7ZdPgI<*F+Gv0K{Ip*QoVUyNtZ|(%E70fS&WN5^ zH{No@rVYJy;yvDG{NxY%@b>}mCN~E5-t%pdoBD_8y>9NpfR5WB>n9tfPD;*yg*OO2 zUhur5L1A4n#?eA-IIZHEyzih{iMZf~=7097MDYh6k2{QWyRE3T&VR3Ezd2gEd5@oS zB6Vh!^PNVDe4iH|U>d=yYrda07(gu?h}#}MvE?nljR0W)TbY(SDgt~zOndVCcS7~= z=ZQbC2}*J0^`%;yImG@_OE&r4wn9y|dOfH*|gXGEH7}l4? zT*~{nMRI&X=xxo2@Dv)oYMZ+xWwX|sli`^Db8rNM2+jz`HD}JC+TtbM$%#~C0wP+< z3~rxeLOzb>MM}~pX5&Pt>nw_vfu=LFg?AK3z}^?X|?Ly>~<`f>)kSqtrualUdx- z1!lFo##6DHwYpG}BYg4GJLBcEMw!-~9Vaz(89pKHspNjnEk}GItPe9%XW7ScDyUVP z|5h%_PYdFGxS?GnSNfx*q@>A`K@NXzb!BCedzsxjUbdo8G)|2*-Jm#=Sm zyrvJ);p^dp+6kq!$$d_5Kbpg#PoKRjxHND|FdA&@@5EMWXbv+Z-rX0#%z z^C^0~el-V15DZ2s9<%Fh<%?&d9Tj_+WOs1L+7<8zCoSI{e!&-%21;Ej%ZZY@MI0-w zOOqzuEj?i88Ti!$HKw?; zNOT2!#d2y-Ss(dTEYTOM#J_CP;#=NFHhYE~9h@|d1xMP#a7C$N-X*3@Fzs`G3XT!J zV0#BUUM&jnGhwY6FGwgiGzLl*bmAwOj-|f;?_!Fl`m;#YJ5B+{>sN)Z&1Yu3xbuQK?!L2 znO}CFX7$zshj zcn?Y}x7+1wHk7WeuaixF?f&ccy5~KS#}v0}9sk{*7yr-Y<}K!FdA83D+@;N@{+XV7 z(l$W#%K_Kz_9?xE7hvK1ca1 z_Mi7fsvdl4Sax2z>P+eFSCh3Nb}v8o@@TjC+4INN)qgEscB*Rr`GX zS$%&Rf5hK~Crf>t?%&*5;rq|LS0N`1D5o>vwmT&;Ff!egC)OvXimJe7V}+ zA@1F2`{gvGoZL9=3Ug=@e@w~mTvhNf9RH1=EySNpF@No^Zr7{*-`;MMKL30usHM5@ zPiN6u;2|c}Wp-a*C-8roKOJOY@XpSk%Rz<4eD|&EIYe|ti>zL*ZRl5|5@60 z;A!3ei*KjT0hgVpjlNEQX?WUO{<7)(YhAI`fxqguuU@le8dTfc)M zsO+Y>EjXl4Pp#W2|Lf7cuRC8hjN}NHMMJ`ah*b?0HeKr~UW;IB7rM@Tc?1 zMc3OmnkIBbZEOLRul7zae+oap<}P3VDf$WbkC*N5^If;e`~KT_>5uX;pZ>R^(!XyV z(^G!be{h`{@Z?6JeGFT`!__bTC|=tC|Lgfh*Z*hyXWyO?E;;da+9ZXVV((^r=1ZGgG91L@ zp2|k3oH{Ns#%*txN}V<*6e-lE%pqpyGJEPg=RE!KzH9x~^Srsd?f@Y`tc zGTp~rRasvd27{^6JScuJ7#u6}r;+lqy+Gu3S7!Foy%|)YP^gC4iL=4$erFaLmq_yq z+U4l{cye~H>mgSUZz9EmL_2In*k?`HXXkuym_U%i2(lyQhTtO^1Dx&W;}0XvjmOBq zjh`67Y)bUm$TKGr^6VVIRD(#9#@G41`3$VTm6>aorHivgmy;v)au&htUahWW?5}+# zfd$3al*6yrjo>{-hK9Wc8pjPR1%kf^D@EzQ!;&2cets*~cXl$fV_<^*(#YU zp8R#%dj4IgzG8>dF#JCOC*w7CVm4qf1e-=7Gm=Y}%6LCrvr_@n4zfzdPEEa(o;WU4 z)Igd)k^b=G@0j~3k)hX#JS9KVF~tqVqt_b9aZnOpb$n@P$2=)_D!zcq@t#gydNCIC zh-XBM!}HC)Vl6c`|1iLlBVLl9vWY0exs{3F2F6`{V*koGT{v7#IQH#*Fn%xa_GQ`8)`xwPqxY}cOK%NVsdqpwtztwAg^VcK44f{C#ID-(!l+faw5_NK6z zm%4uJ_@Wr^q3`gq$$pa}5P$yQ=a$_W^jitck5UIh>r_E!>?;JW!$;hw@9LH7KbVr(Kg#Zk*WOmw|PvO0r zySgv1jL}s!usV$cPHwGKQUH_$NZD!mS*dk^`W5ChzA!{^qjTh7xjpH`u+8I)1^cfg2h?viM0ZjZc~E5 z1_P)T5mQ*{NjIz2V8gzY=)eXdTrJ~6&7EkM=Q6MNv!T9m`w{O?vRbT0M!00=Y~}tu zd0>t-T=q;dZdH_tX&z9(K`z@zU$ZpHvO~(ijr&Q9NdvyXOno+lmC}|HZKr;Fhm@O`Wfg^Mfxb2MTe*|T zhX#Y&X8L?)Snc7HT+#)D#l&tj!nRlr#3DCZ3`gucV>*k&IW+LB=8zLZNF`=ry$(zOj~`9K#jg^D^DHjL}M z->O9KTA=`ML2(i;qXHkJ6}B%-rS4U0cLi?RbbCtt0Qm7{XaD}M%$vRy__gO^SFm#& zGjMenb1yrLBE@QSWqfSNmryzJ<-K2;iVa!s+aB{ROnR!fiTjMmlQ_zrLS0qIiL+!X z>}Oa3dEi!V<^t(bNu9j*Zdl-3!TXDLD}rsZVbtAzxfU4oXGE#o??ht3s4J2qjb?*z z@&9;LAmPbSG>}&xg*L1$-gwf7^6-OShG9EvHWf6PZB;Q11LbpB-zihBD=<3;pB56r zvU{5z*AOI*_@Zt+gk9u?S^?qe;2Q>zr|k6ud-T6%2H^c4y_kLSC5WuXSI=!AM$7E? zAOJ~Zj%xIs6vSClsw)L`9=#g}X>D;W5sa;i2?!=b~M0XBhtprmb9;cb(E8i!3zgI$;uvBNX7q-9nuq|p zJgctPmVFKyeEH#HpEO?}_=UxYv|6P>RiJdYoOl&QDZwQ*Vlx=Jk2%&zoVM*n>=T|R zz5m+<-x%ts{4Cd=!=I$Be{w7k-APGrJ)-{LJ@aE_36{!5nWdUS4fBt*fpBGCV2}E_ zXqm3+5{4hi9Yoz))~%xZk-kUOHgBEef0}HCu-@U+520k#FLvcb3_5CGk}VGDulu;n zM#;W}7^D$pFAHQC^XIC>f%eciJZ>`CMvu%FwcBT-6@sps rgqCA?d~oj8JAm7p>hP46vJKa{q3EpAR@(!E$wm(v)rZpP#)SR?y@=nK diff --git a/icons/obj/structures/doors/dropship2_pilot.dmi b/icons/obj/structures/doors/dropship2_pilot.dmi index 9a77adf39f70223ce89e981be88028e306eb757a..226249be4d84fad2da612800071e11bb95ca943e 100644 GIT binary patch literal 5807 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 delta 2607 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 delta 2383 zcmZWqdo+F5@+UNVmojAxs zn=eCx{X+HE z5{PLyaq{T-vFeQtzykc`LC*IkPd*m?DSPSk6=B$4WncVBL~M@(Pgs|2HBtS+IHj~%+0~eG_&qriQ)8$h@$HvpnUZdJStmoV>0U|llcrWRLA%V};Y;fVu z@xLM;IK-Wcd3(3d<-ux9#;U@6BROZowQuZvn4xj{70YG5pDL|qwasSc`1NUPM*--z zLDh{(ZF42))AGx)<$QC? zFt?f=@2CI)?<%vOMKZ(e6CrN2l)u=KDg=GFGQ02d!>A3pgyfRiQAxq6!fg>);M1K#D^dhDOj|>a4i%5N#?>^=!$Kv{oEP zy;})>#p*D>cZu0n*Z9YB(;U|?-ogX^)~OE|D*hiSBJ6WpLA_A$xzzXoi+8754s73g8~ZXWD0s<967?i*={Wkbr& z5w^JJW~XI{b;*LA>3a$_O+=td^M z9wgddX03l~jGN3VDeD4AN(4TZUy$zkHVx8U>hT%_6RCVp;E(olHEkQL zoE9*!00sO!ejdIvQ`a+FuPzlzzW4^quDqIZrABP^WQ!XOdLK2jfQ2oAf~N7YQ1S}m zmAcB%+qBeR2t7)Czfojm8gw0y#FbXK>`B2vS`3Y8`Tb?n3?6BP3O~2EQDT@^mbAgn zXJUaEF{)`d4Z^g#0MYY=S*tVtz1V2%nb0UhwQh04s#7Qs9~0kXmjx{%JL4Wn(2nJn z=GbyXYNB;^DbFu68F$$j0ibJ}JxuGwS`2`^1CW*g_dPDd1qHkRbLHl9;wOZnK&OSZ z;ZXw{PX5}kQ<*V;N7>=tn*}lN-5InX_FySCPt-FWU+O;fXyryu@**=^px*n5Ta4Z> zU=E`~9ZYsLSkc0m6*oIGq_zG12KmBGK4j&8x*^1#VBLg8SPQ6d9V1tAUWFtYpx<5( zRn=WYvz!aKnxXBt!A#3;Te2p-85LZ6)zOxm$^H&Xmg>8`H#Mhjhq$Kyz?Qr@^aY(g zEDJsv^dUQ*^uZlDqi?TW60<#P`!N^m*Wt+3n~pWAnGrSLQATlC>Q34P!e43^I6pI#!;u~zf<}i^9bxS?J6F@ z4rAAnI*`6sQ;556VQEbg!uz`_=n+MEU*!(%HM#Gjcj!dVO7izJ)|w_BL-NP$?m9n# zswj7|UflM!A)!gx9Ir_Cqhqu?7TaiJNl(}4qSdG|8M3unE(Sg|r!A$nhc_u@U7}A` zNz?vdg=x;BSG_G`$(w(CHfi9o2@rZ}|*#I#!63+|w@#L1RT|=jFDu#=(XkNZa@Jq8r)e z=cNI;Cs=b(0NiQ<8Sjlhd#Z=^-TkCaWEWLyn-*zpSG0aZ?KO=#KlXY9l5gk9aPt?) zzA;bm|5bgu#xh=duYHp-xp8e#+W;~8v=a?N$zx-^~8js1ENqsU27ON?H^ z`uEo|x{hJgI&*Z_Vo3M&5qd3oWI$CX*y6?Kt((S`dMM#dgEj1VO>EL5f!v@>WwiDJ zpmPea2OVlF^U?GF1ZTty$;o}9_Sw$V;0KdAeJ`f)v9ur?5hDjF2CS~arc>;c`vNh=c=23-b%u0S#>wfY;?-$B7{+6_OcU*6TlA^L@jlyBOMDo+>FUM zVzruv>6M);cDpy8{%-epWH0THHQ{CP{{;nR^t{!i%52d#x%pI@8(U<#%MzSL2kFcarem!GB4UPlD zha>PSqM+{AMV%P~vp+W3QXm2E-7)(qk3)6eQ0}lYsO2iDzrAvd5eFk!7NxgR9ZkOsfCqaV~IoSr^KibaTarSql>+^G3K^Z9!is!ade3OupwkyKr^JFu>Hn7LH^TffhhY$aO#< PI0)oR2=uD=Jelzigb0~k diff --git a/icons/obj/structures/props/almayer_props64.dmi b/icons/obj/structures/props/almayer_props64.dmi index c45b37d6ef15ffb8435ebf5bf4e55076f4a1131e..f47f19be90813323e8a76095feea5a4ea78a5dd7 100644 GIT binary patch literal 53887 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 literal 56624 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 P0Y7TW+Dg^Wtt0*)@Bxm2 literal 8052 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 b$Akx$D=I$^nO>qCtpY~+=6W?cxaj`_OBCg0 diff --git a/icons/turf/dropship2.dmi b/icons/turf/dropship2.dmi index 754c20d9ead4749f96a8af672d5b611696b26f95..53a44fe75b71fb275148481227899da07df2ece9 100644 GIT binary patch literal 48906 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 W6#wx<{813_qpYZ=Q2xv`@P7e#D@INL literal 8003 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 XfAROzv=-KnQ^3~J(W2UnaOM916@tW` diff --git a/icons/turf/ert_shuttle.dmi b/icons/turf/ert_shuttle.dmi index befed9f547b7a2d7b76333e9a13de6d955c77f62..39018d4f16118c633134827a33e95024407541b8 100644 GIT binary patch literal 89790 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 literal 13986 zcmYLwc|4R~^#3z682i`>%|y1cjfAN%vQ+kpP{c@)h!NS%OqM8X$&$5|%38`A^B~Ed zR1`7FzGRGj%<`K)-|y@D`(s`+&wbwa+;i_e_uO;d_s*Tub|;1SW%&UB5VAaFeii^A zIL^m}7se@hC+>8L^Kk#PjiUwUQBF=?NlE3Px)xeTPtV|(v5CczV^|3Z2_zD!rlxl2 z&>=%Z!)w>Boj!d!H#b*T598zGqoSe`;cK3G%ONZ*EREl8LeQ#mL)x+rhr%u}+J8mMoPccMENogNaOI=MJw@9gZnfB!y>Mw^_R3=a=iP(5g1Y>Yi+E2(m9kAX>kNl9>Q zteB)EXFBX*D=f|zB;>4}17I>U;?4Oz7wPB{Vtysq>xM5r#5XVi0KyBha*qYJp(PS# zr<~2JoiU$>KR<__6TH$G^+3u@@v6z4m(#?F#S_=|TqyjbdEDdo;u>D5q+@O2O7ns2 zszt`ordia&-O@`zx;?rR0T-VdtQ{JV9sMh3FfLdb>ZGlDvMIQBw63tCS81U3I(BYA zWgs+$>DjqRrX1ofGOJI2IvDIW6rSNHYyU)gZ_&Q9;nSyr)SWuJgK_q;0)KB_A3h(W ztl;$_u&a;ZV!w)z*f_PYwx~b*JEi@T4gP4h+d(V46hyjjURc2JTV=~>@$7nH+xPPwDX>P=B}WkZ>}rxq^)Dl{Hv+L323E+jkln1>Y9}GBav(q z1&v##n1lSDg%VZ=9{zUGNl@#!A1NjI@o}2iAMnK8nq*q?C;w+^x=CO8kr%0Bv58Uz zI<5I)OL-zbc_M9;tNizbTPG!d&q_S-8@vxXb?Mxs*R6emwi`zI7pYx3@~oufJ~2dD}!M|GBy4LQ5a_>wjM~uVtoHcbQ9k9_S!kv@u%h{dA3E z>9aGl#q<4lWmO)%dUWT`c)+XTOudE1jkUB22WNWk`xj>&$MmumjPJCoG$$lj_*z?I zFNAL%xiX+-<6Fr{&(3yyE+Ei6#&X;J_H6&1-oE6bWBG->-GiSX5g^Y~^i4*z0atV@ zP?VovSQtat+?k!7J)B%w>Fe&ue_^ga@!RMH+vZ;))G@}|6RR_;V{Q=2Y*FEtqWypv z{4&I>OmJU&U)mQzleB$YDgN%u8461bzuX z@6iX}PD!nn@qPMyYAqrDFz(%%h-!)_&~sO7F7KS2bnNe5fk(1>qz-j&!+O7i%ofPs zYagXG_-%gz!gpRdc@>So0n-Pm(bdFp@c!0{n^8T)o4iajBYLl-3a!G`kDkj+HYI6cyel zvsECoV%`T+IgFFsFG2BX)a{RJ7dakIEqLiDQ5`5GqUh~-bKu2ZT@BokHYXdJfVb!n z)Tt&Z`A1F0o^Cf$N;tBhlJJnn(8s=_*D#k$b#SM@iz5>)idgl#dldMx;{LUf_-s9 zxShc96tuADq@m1LNdpC7G1BI_6g~iH0|aDIpTOUXiE2U1cMc-5eMCbZn_NHREGh%G zO58S0?(lMNm_OL?t-=vVjELqbhRAi)umqw<}!`*>MIA`**-yG$Pli>v2T& zmd6u5>9|bNp9nNxeT=S-jHnjizhedFIA$zfJ5&=X^6Q5%6<2*fzYf_2O`B=`7&ot? z6$#cFMZJUD3|Y;z`tZq!_QOJ>xhd0Ej#O77YY%Ny|1qi;=#8xAmha$b;IIB9Z%!j$ z#<27i7t+5x8X4_P(wt;LBi^OH&#U`f7o7z!8yp~c_HmJBzsZfB?uC?8!d<~2@h@>Y zIP!gKHw586(*M*&glU+{^akMmXK;liO|`PtSDO0VIFleyj` z5O(ohYhFP!l3{KZ@2&R&7EWP|hf{mYRdmbX3MX!velToSOa?mFaIT`?;^8S8Ze5an zaRb8D(3=s}7lgyl)uS<8eSMZ1x&fQm{hglCLKRbQNOu-nOB7$-;lf>HKKp36y#(~s z(XSbSW%_SVfw4tMhJf~6lu>llH8b^w$|kS)z&)@3lg}kAS~=eECW1O94lS3j7sf5O zeU9_-ULX0k-66ixI%zoK;S?f}3ZR3GMk3LJ@%bf_kpi==vebv7?$spiWL`IM>LcP0 zNYNS5Eejp|S|G<~6g96fU*^3z`YKdPL3@R#q!s|p#ij7h z1F^F+g9UAF_QH!Bi$xJ!BT>i(9co|iYoMB9Y2 zTwJLoU|R~bwyeRbH?|n?ZJ+(ynvas1BrRV3ZMQFBG^m&N8 zetQng8Jk@tB-%lG$rPhzsoRL>+#u=J6`*l^rHPLlQfc>|{Vq~U<0jd1Rql;DC*i~~ z&^^aO^|r5gULnD%?yt7{#my+=d_%;QNxuxw4=-JC8uEsOi_*?Jl6mufT@Bq)z2o)k zHfvgiq-_nhEm40Z?3r}yb`;bf=Ib>D^94U_Ur2~{fd2-Q8x>3VAoa&k=gQSF14NYE^ z>DtF?)VZV0`oOlZ!u=6tRd)i~9EUvr{fBRGjQ}oW6_bVOz z3)~!+cVjk@n_iWul^usQF!k1J#t-ifL!+209teZ?CFxK69{nWC{Cs0LsHr(P9qeRC zz#XQXJKs+EY2v&O`H5CGy&LSzur%shc(jIKPos`jnMEz94#&<`m6=WL+ru`uxR1xgF2rj1$zaYT8KwMu1Nr|Fd;)Nt7807|LtM@p9H=UGWS(* ziFE+d8LvP&+Y%42>oz#X0$o6uWT!3n!t@2r347?wz%S1U1y5k44+Rds<)*tYw}wRL zUOTAJ*ppiPD&ryCL9#q+r4&*_zgScaw^_aNN?^UYJMKCA(r!-@BbKbD{Upu%@J?{)umbmp=z2OD) z?S1RNszB-6bVE;p+?o7uCmTgtY0FhxRUYJ)C#>VTuJqxT%`uUTm{+&CaH}exCCe)& z--QQYxx){(@lYQ`7s6|zow;!HK2V-R&C?ZM68;~1$;bOJF7iN8S%{~p>JmWz<)1X? zI`#Kf&?KJGnhX=hu05wc(}k$94tz$K$qd2V7r5!3F7xqSNznBsk?I;K$iy=qZ(+}a z!Qx3z1lHTdZWk;6*;K%l5C&r_CFT+#lU>*vQXwJi0-^<(hRRlhlxqjIWm)Z;=v_uY z!c^0=zazG?8K!}MpMCZW26QJMo3`w?QCiww9R;!BiX@>)WmBw1AodH% zdDxJm=d}I0+I%iCM{q&{S2ocHt?fC)2Aito$P;%Fvp}bHs|Y?4%QN<^ZkUfrz2pEU z#}n#H^M=}<77)T3BdUWukFh>@Mhkuff&}fB(}A+qOaQqDhqB&; zJ>cHeoKOb=#}pV={alcyv&ZQpV+17nJ3<@WWG_mPqHn?at47&YwNz z+c?I!DKZ`hm!a(ADj2ti6b+LGXXm8EkQ(4Y(C@(NFX-x#Mt7~Cy`NXU154VOdusmJ z%ijm&wYa^&mrUO3uCnj@jZY5q;}}O86~Pnartz>K>5mlSw2u#>HaE6+@0i`!k%2zD zgeIe4+1NELb8ui#8Inxrri3u{|2;?owP)(dET`A-&h_t=l~o=Wt&#V6mJ%cn;{vcK z#m|Ph5W`2nko79}@8FPWlC}ZA=%uY*LBkS^IcDd1Hjf3ZZ;W7UPKm(FQgPS4y{~6* zr_8pV2TjOL0a*32HdAc0{Fs-3)@-irVj#JB+#X3Y2f~ggfoqiYV^^2^42Hj~h}=NB z@rQr*s0%xM3frH++v+S*q-c(bDdVoU`jz=->m+jQ9g-u}l8<1?yKrxfB9E(@xJXk|aM6IOa);w`JDcJk`s?Aq6>{c|3K z+MSxdzCOAAxO0yZ@5RH8EO$&7^eV$2eWQ7^BM$Lye=Mn$17FRSA89kOQwOj)ujL=r zXtCd>LIwL^oAHGOn{Y6q3^F3_bg9AFV+Vr2^$oJbr`|AIh6S{$FOWnhQGm3IRJEZv zy**CtF)-WzM7aj241PWxoc)S?nV3m8!dYVU^$=-%+EyqhQt%phKjPp}yN`9xtj0NF z7fWRW2FBw3C3AM(_?Vj8VVg2|-jX)R$F19Lkb;*>7jhCsc8GDC*6Xb==?aw8uuEl6 zkeIfk=2Kr2kAU}%>Rt8mJpjiH6P^${a+Ljl4qUXge&D>}3g+Sc&lRACMfFJ=(*}%% z3rvlO(Y@nNKD;h5fk=E~ObcN;Hb#*h__?J?h9@7N{u~}WeUmASHmkRq>RgtLpkCsy z{*rZ?tDvR)CA?;%YEC`IspD4!P@A^PNZ~AB^$--}# zPWz?E`ZVD;a|Q*tw~=_;2w2P`VanVsKa_fXGb=~N<8$jq%Wv!3Nq)nrGcb zieJv#d)6boY8{u_kUsw8GViB^3@1}AEyOyxYgH1W(j7-P16_ZH8BOGGDs|3u-h?f| z4PK;R7a=8fm##y3R39J4J!0FY*+Yxm6pc z4r>^s`Yp5;wA7=Drsh`fNbwtDv=9pjAnu15Ci&DSr<-CNh#WTp)0gE z=@V1i<}eFVP{e7ho^3KjmG;L9WOwIs7hK?<&HmB{DcvAHT-ChnBkCA&nhY%Q)gTK# zrRM{TKr#H^OLqCBE|GhKZ10bCr}YshI68?@)!>*c)Rt=C#u1RcJbUT+(E5$btZNq{ zm2-yJQYqTx`|TVUKVH#F27KS*97!em*hJ!o1QwnndpkZAuHaZ5S&ZE?EvU;j0{2k~z% zD&W>nyez{oC+boT?F4nW&P@=zM##kzB9s4#gq3hGd+oWy%LzJ^XN<$8#YR!!{AMtH zqU6v1o;bQHpvH&EK^c@5UypPpucz@06WrOO{?V5sPP5HLYW4F{z6PRgd!{@4=6!p9M7Jc@jFa~xUd zF}zYYy|o#-ae+0{x0Q8h26mCXJZipplP0io#P27uJV$C)CrD#pZuqwIQ?X&=dzwM+ViwuPQKpM3Ey5#y_?}MT`q&} zu5uL&UyDP$aAKbfB6yD8uWn-zKWt!ou}j<8_vllZ_J$PpRdMt~kGeg$yXZ_08LB21 zLv)nAkBzr&$uIUd1w}oDBMwj?97!7B$ld0hNj?AdI1fjiQ5n2V?k8<|+P`Ktal^!7 zV!g2kw@d-+MXGFA4}gJu~(%S z<`%?=sqE%FJb9Mnu!eK@5SXdrnp7j>LFs|G9oBw?y8uL;ojP&FAgS@2qsu@7u|nm8 zq=IkXj}xL43^_omdU%+%Syz3$2;Kirm%rFe+-IV=BD7_OO?t{`^aYdfpXIGFz1nU$ z+D-RiOlM@upZ1pN`~j@tUP=%Ty3hjylM&$|{n|l@m8=PLMz`l^eq*Oo&+dT=?^q$m z4Wid}64i&k_N^Yy=1Ex-m<4KX^9o3-tO>xtv_Mbx>fydE4*;1aN?|e)LKD%fNdRs8 zFhkHAlDU&m%9Fx-3{)dm!`(g^=-37`$>F|NJ7=S)lNFL>e7*DfilD*%?omo968FF( zJQ7s!+!Ozj(I$*P;K90-zCvzni328NB4Y4%5nMp$RR|>#X)`OW1+lqpWiA5<(*)of zff9}vzOaw2TCIJ2ae_4|Lv2!`tYS7NqT%g~HYEz*`;HsIUYPg6oxg;56}U++*Xx3q zC0FsukiUCuRT^00))A0;Lv}T{2CpmPW14)jy8>lG&+VZ7QE`unT~C51uU8}}*S@bx zw%qY>k?X?5b71%r)@|o|!1rRSw|Gs{8R^?8`@~u;1Ii-(PDNB7e^3p^g_-9{yD3&1bLA2_IY7BGklC zA?N+6gI%IJgeZm}gYp=O553lGI3ez{)Ns z+Dx63i(Rkt7qo+J(kTUmBcClK+!41w_A4ea+LTE_gh^2u$~gNVEE@J5t4I^b0cx4E zK+X)R(k7x~xUt%F76nPxzd?eV6DAK+B7```h*UO|DJ3f}qC|HR68GuugN0{6meyM% zz(4mS-@Q87nklL%A1KfITT8h3MEJJ#v=T1Ua9#MGN4+G7A>&1HLqzX9rvhR<^vUm;OcVD6snRm^F>XY zDX!6xVvv^DbnKX`KfHaas6j+Wi6$^anrF0W;0iqIWvKh$7|s&kLs>l?g7@+BTb${e zD{?Df=}Rl#{$Pj^;w+Z}8U=?e;1;A4x4u`@Gi5o8VBa;pFHUSOzl%>(&1NoH+JYBF z6sd-oJ&J9Nwxz?GdGKMt&<3K#F%RXAiX-`W&N6M|L;Ssf__#*#l*Jo!33Wx_g{xP{ z03$$*Ctm_xpBs79&|K-792l!56n3`}Fj4&l3~j zmznF^-94En7ISXBnf1bV?t8hy{1)}Vx9-QN#ZF?E*DX=l_R^NaPoL+cxz#La$!^%G z#hl0b%i@B$gIix_coTOL9W0)mfnB}YK^ok?3(>7$1zM5id8@IjI$FiiCwkLnseg4D4m5P{yUCm#cc*HX_0R5qb%K zcEZ(adkl8skDnk$MFX(bTQ2^B(iiPGM_F)K?@-JDdu^swu!Nm@j;{Bd=a9q*aesqGu2AFS1QZpx{# zgU*9*TZX&OQzz90C!a9d@jz#B?WIl&(x25UkYMH?J^^r;@A@O=Oz5)}A@S(*%zf7N z8tm%5B;;|w&<8v=Y1(|4Z`h)0VCh{scr`}*=&78AHDk92#1WxK=h{wkeCFzNh`mMb zDvsH=>@qQ08iN*9z7~Pck54~D@@3xOLI1*rvEt%y5gMMX+&)WppZVx3pZM!r`L9?; zI}TWOl|_Ho{?AAD& zrmVv&rph8#cx&gTSwv+EvMIk0%Qy_#&!nxB%-UWN$~-Dl1de*dpOIOJiVJk$N{nMP zPI0feu_jHyVj?RdFzEFx`!LjIF~=Ine2f(3AytJQ)O@y(@1b4RW^I|SWH{#A{4nZL z1Ec*pl98z0GPlu^p~7Z7eqkepf8n75u~(@kcEUfKwp~3CF!fG@La6^TuL_JZ8s%}W z8NFCHc}3Rt^S4EGcKQ{IpDzD=qlwN}ZL_v_5D&yLz|L9+m+4_3l>7Fm&URT9nblY~ zBF-kBb9u5C44%Lw!B3Gjcz4eqs+@qR*x&G0^mIPz@^KkO;)thQW=+bfHdM9HtpF)@ zjuZuwNxLA7-;(Q;Uep&(W16PJ{H2{(x57M!A!JFEFm3S-$zdmvo1~k6LcW%(zU=7- zoyVgXa9TUv_1fd z1LNfXdByo0ggCN%>fHf^lverC&-VY&he$&^i3*hct$!#YXV&DtJ*Dsw{gL>3M?0wg z?+-9j@|YlX<6YU}qVw?mM9yd(rr2;c*XsCS(tpIL{JW_87=8H2JnxT@&SBk2s8PUzq`%|_5~bnVq|`J9bhJAqK4Gq6Llfmz z-4kBC|34>2{pR#TLGfiVlZSeBFLkihV9BV##oblxpQ{rJug>NZjjh^OVEkcrcsi$> zk6E7UPQUZbAaTK<;Ce%`!Y2kOi?&=R)7Vji7dNe;{47F>fJYk9dkt06s3FA=C{EkA|5PP0nj-f4bLGB&nfraBJEudXi+mFLak^b;OY4IS zxX}$KT_;dN{~>=fnz#>*08|)1{uWCL>NKI4p*{d@k%skWk*mf-d8)e*V`3B4>~jx@ zb>`g35b>c0?^#YM)LT5!>5$%RXOAJAX$mBT%y(NY-82P0rp3WZ_LJqVlK9u_n&F2j zu~F{GYC1ASc3J>%pnD6WrBNk$R!Lo4{^Ur_)|`ibx#_Naxo!uhH|n6&xT3q0GWgo} z^e3W{mjo%>`MBRS%!hD9HY-YEtuR18T4t`SY*;M1XQQsz{yF&_>6<}=JW&>Em5l%< z_Cq?S_k&x}N&9vxC8ps0^Z!9>=oSLo2pLZAHrKHAGDw(8&n~kVSyt73Pho~aZEaS& zJ^Rx@VP+gAr|8o1W9ijb_ZL-_?tb7fl=Vkif|A0ir_H(wlvPO{HBM_u=FO?%!wecj zd)NAA;VN6Po9Y=vgPExK4=!(6n`PSMxo^W0n=RWk^}X$0U`Pa23Ty0?V4id&L-og; z(nG(A_*^(b0#_7hj72v{&z1eFol#HV$GjfG9ysH!m4%AlU4|*%p6zZD zS)+_5=d5pBeMY@_pbue_KkV$hkF6zApS^mM^i<@`BeJA|Da1X4l%DpqYp+^XniF?-q&+qmbt$x?2z{VUd9VJhB@NWnslQ(0VA6YEyJ&NL#M#Y5o8Zd3G)MdxrUbar@KVjyIif;V6*GrBu^o%e|;4AFaGOTe>4O;``Npk(<#)l9Go zrPYI2O8w56S0fFC%=Cm2@Nn(ZVyiNJbl@iQ(yNk^XIo}q7mbsB&~5?vUJ3zW%-A%nQ>?!gih1%RBo%DA7G0pfHoIRvs7oF0a4l@S`06K>B8X zhxOgE)D)bj$>Y=ut#Y&>{!j7xSUi9AS7#Wwe$w)vx*a5e^*SUzl?JWOvb!adW`E;y z#8cZ~1r;GoF$yE8_>5y5J7Eq;`QEr1lHVt@ijadqfu=p=#Mabr+Ufjk9=HA2YJ&?N z7jH3|{)=mixhWT>pRZe5mqrU#LAFmCe|WZA%rP55(ZxUku%Qlp1kn%C8lJeYv&f8` z_5!U3jf~t{cqkn6J&;LXxchbGzRKedkv|Jgk>pHHV3*uUnL|T~Uyw%ho_PAe7iznoCrSHB}Nuj}JFKfB=7ZeaMknJY2o$o{z^vSL> zKW5IuVlK=#IG*FrUn+h%OR}bIo&7JqJ;S~WF{{y$8Q1OMgtahxc)cNUWe8%k85jx1 zDS}1lUc?wceWXNOao|eXHPE9#?kCRh#W6q!sMco$_8jQQ&Wlev#L1n#K;@mNVinw1 zG7qWGNZn4vS|oJmR%yP4#8^!-&?EZx(tUd=^dMOf*GL4YKmR9yMeQA7fJ1$8FCkMi ztv9$Ta;Nei!ZVpY5S3l$tSPuR@9-ytVIe^VMp(~rS~??2spl{Zj%-7UBLR0GpUMD* z*4smYNUn+>?T2x1h?bxm`_&r;s5Hr0f41xG0YHTq!3Dr9c*vrMuy9N!Dp$#Et~GVN zod9Tx5pp3mTiUSPzaHoEP%5A?_9Mmd!gpyf zgD(g;Y-D_#aFy`ksj0O@w?@_(b_q}U@K32bob!oU_@?wI<2>t;(myG93~4zr``m%? z%a6z2B~=q`0qJSDO6eKyom+DA9NKppS)ld-QnKp|#qe(gyj;5HHcNvAlY;+yy&wE3 z?iY!6;1GFBD8B7guMzS|)z8Qy;FX~g zpe;pEe;TY5QfhaDGdA`Qse29Q^~!i6CG9NnU$Z zX!zpb@^$r-q}QEpEqJ^1gnpVt}) z+s_L9z=GGLJFG0=<4%J8|0%V)L6N0%;FP#!e$~<0G`pP zI=gcUqbid(s)p)1)5JOE4(146CEcW*mQ%zLCWroYK+F8u8qDA;CjvxtWG3nyZW>&o z*^6~H3R!}lY%5c)e(mTB-##IF6Ox`0YG1zJ(4h<-r6j7R|A@K~^zVHUTmYQjxwZ5B zhADPbrh4C!oqIZmM#qfakn7W8D+QI;W_JD;>52Bm`Ef@268-{q)Df$pO7-zhKLTE6 zi~a9$iE0*+J=fdnsXsZ)F5@wcH?E_0`GrIeM^D`HHgb=FU3Tmg=yIF##i+ zZlKS|addWHd2_cV=OXdCW}!#!_mOC4ewn$zGc5PMFe{;fFmq;nOU`%cMZ4mneazrW z+pomFt-^b|c^eB&D{gg!6h87}Kzt`*=%9`)RlkBPw6=A$+|m#69ZkNYv|+t145HG5HmXgPLw4-Iu9QV3}69iC8=K~0)n^R zyRqD3R~#MqbmadQ$vP_>ADJ&+tKl6Y=B;>h&!lsCB65HC*a&$sE53gBf0`u*lry$G zd&3%kQ0EWyP6%uajIHWSCaOAdROs0xVpKS-oNezG4<%W)=&jd{4xarwwst5`=l+V7 zz)qC)`hei1BC}?m2!^4c+34^#DRiGfna5?La7}=5aG)-THLl3iwXC;cm+vBW{;mXG z0u4Q3;Z`m0;Ze*A8ju~h#%R7m_qmV1$2z}(>V%W(Bd=n~5LcHPPJocO=C6g(!JWWd;6rA`f4CVybz`8t2CiX|&tVdk81-f_9_#boM8BOVzq#UnuJ0wW zB_9^u4M-h_0^aMdp9ox#5co$Trn4iif&U}K4yIDUMfDX2OG__E$W5KAiAQPo1(BK! zAB;{ovBqWTKEn93Y(WUIzUpz?yMp&4W-#}QYouY9$&PuB%lo;%y^fDkOWXSXnRB@9 zK==3NeE(f>!JTqps)cuch!-sNIZDWud>7 z3!^zSVfOB5*MzGXn?t3P5{-kwQV#Pc209_TR{~Z4Rn=W=J;2lz7~%RYfrB_fYUcwZ zIIfO*XF%{11bG=i{OtZ$yBA`&P@Er**ZIfC@lvl{QXanaUmtkz7uW@bC0Ev8>+0@_ zDHjq&lkpH-DcN>8aQ}beg)mQvEm3~5AdDZ~{J>C|CLj&7E1LTGpHlxk8LMFrrS+%a zr~jkyrXF`OHK+c~*Nmz88)j2ofF7@C+&hEg1kcbsslK>T=$Pq$Z4+J=TqTYO;@wS& zru}ijq-K_WGnr#@oS{|WDIJw2P1r(N=loZen`>S_cF%5Z{`ITbXqSJv`J}vH=>aya zrmtA^x>D-*;kMnH1-9J&Z>59yJ(5(tWjN8_GGx2Mjkz7}@C}Xv?Ggv>pM1-o8_8YB zgu`+NhoL9B-bQ)*7XpcA$cpWO$Z2xn4^ux!37O95{XeVQ*-=3AMuREHr zh*Jyy5Eanz@Y0s)^>-s(`z9}e>|6|aa3kHH8B#^u9c4&euYi1yUv#zekP{g}@RBba zwT;q?AUs_}J*2-hCTo{p&VRcJ*jr+rS1GfBw#V?5lj)m6xW5bzXZ>tZ^_VS81#w-J z8WQgnQ?Z3Ue50vTv_-6P%FvTbrf`CP5hXMrhx2iD9W2Qol=3?5(R2qe2YZpQa6=6N z(NDy+joou=&y(HA))g23?*NxC_le-fJ735AwCCK0$n1hCtNuVwCZ&5If=h!?`!Tl~ z7A=0}HvPi(UkjyJBjIZ5YYiNoqYuix*)WmBJ$k)6PUph)(;fnD8nnapzhKB;mU~r~ z?P!dT*){PikN)zk>NTwT1A)F18_|JuG7q)M6HYnn8exApBwm3^8ANkQ5Pc?$MbgI)}hSVl2HMi z;|Q)J8>;T)>BU5!#yfS#IMCJH&k19YgaruaUNYJ$BmMx$^%i$h7#)3Reb(Rx_WbAK z`P<^!9nEG_77nD>T2pD-4&vz9){mi|C+1?&uTy~nJwl$8>#wzZgL88{(3CY;`iXdB zdO5I?QoH^l4BEz%K=HdM6A&PPzx&lO+P2}2Ju4#d6QUflKW2R|wQoKGtkcU8q`1}v zt}OX4Cv|O}T3t)&h#d0&7l8d{e;j&y$jO27ji_S0GrLz2TMbRw7=%_IJj)aAQ~D`R zdGNK8zI>t%7%0EkBh0!J%{5)DaF= zfK!4Mu)^PI1Fbcbq`anEkd{x>^kDaNl60*#n~yYxkCs9anz zbSt#Bwl-jV3a|%0&jSuhIePz9iMVbTL4b7}Pm&Q^!!5S98iu>5nonhSXLfzI zZ8(v6k1o_3$RYm3caHh<)K4i5e^N2VQmaFd{-)+H;j@7K?Nq@zKWq4P2w5Gn;v?L@ zJRniD%>d0VAr0j@5~o`){%N(%%elSLydCitVl)w~@_2dqcYCm~Nyt1;!N+scXSj;&MVh=BI`f1VJ*eEZ#Q;>a2EQLFBd6{M)^RL=XS`Cg7-kbP zUzoba70z#|{e0!Rs(E~TG9Z5OC&rnyXYkKRD7ut=-N4+W?TUipFuSxb2V$58(T#T% z7R|uJz(2vl;Wm&GzPi1N`zBvP(g#E-LEWa{vv){E0Q?078(7%uEfqk3&r2I%OcT;; zeUz;Ns8&u%oR_5p9Kfvw+d(o{lX>L#MwTEo0G4Jr^#nfAbN>>K7h`-lSkniiK^__6 zqK3=wu0%jm)+;j5JQ@fK`pEh_`7@C&gx5Y+;61gSXo%gst0>M2m0yrxsqo<{X8CZ1 z2)?Z!MtRo4xhH)f#{Zg>cY?~0-4IKk!|*u`A3p%DlQ_kf9+zMzo*L_(_fZ~3QU)Uc zoAKeWh3{!}pOmlMR0Y$uZ}G)eNiv0U;A%{aHkpfNYb6an+yY3XKC!UwhY|EzZNl3~l4f_?$Ewkt< zPTC)%u~!kCbq?bEL&?ni)3EQo0co7+M0X_md*^-iNy^%=r}3NGoNfimsYlVqKa~FI?+7}s9 b*ogYmDU({v2cew5H360ucIK6)xY+*(ZbILW diff --git a/icons/turf/escapepods.dmi b/icons/turf/escapepods.dmi index 089db3cd3e19837d99c0c51ca28b693c278906ce..96aa67789bb16ac4d68007ba74d88b9286e07cea 100644 GIT binary patch literal 8053 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 N002ovPDHLkV1jZR#N_}0 diff --git a/maps/shuttles/dropship_alamo.dmm b/maps/shuttles/dropship_alamo.dmm index 7ea59dbb1185..dd799ca7cd6e 100644 --- a/maps/shuttles/dropship_alamo.dmm +++ b/maps/shuttles/dropship_alamo.dmm @@ -18,14 +18,6 @@ /obj/structure/shuttle/part/dropship1/transparent/nose_center, /turf/template_noop, /area/shuttle/drop1/sulaco) -"bc" = ( -/obj/effect/attach_point/electronics/dropship1{ - dir = 1; - attach_id = 5 - }, -/obj/structure/shuttle/part/dropship1/transparent/inner_left_weapons, -/turf/template_noop, -/area/shuttle/drop1/sulaco) "be" = ( /obj/structure/shuttle/part/dropship1/transparent/upper_right_wing, /turf/template_noop, @@ -81,15 +73,6 @@ icon_state = "floor8" }, /area/shuttle/drop1/sulaco) -"ed" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds1{ - dir = 1; - id = "starboard_door" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop1/sulaco) "eD" = ( /obj/structure/shuttle/part/dropship1/transparent/engine_right_cap, /turf/template_noop, @@ -229,14 +212,6 @@ /obj/structure/shuttle/part/dropship1/transparent/left_outer_bottom_wing, /turf/template_noop, /area/shuttle/drop1/sulaco) -"sm" = ( -/obj/effect/attach_point/fuel/dropship1{ - attach_id = 10 - }, -/turf/closed/shuttle/dropship1/transparent{ - icon_state = "28" - }, -/area/shuttle/drop1/sulaco) "sA" = ( /obj/structure/shuttle/part/dropship1/lower_left_wall, /turf/template_noop, @@ -319,6 +294,14 @@ icon_state = "63" }, /area/shuttle/drop1/sulaco) +"BM" = ( +/obj/effect/attach_point/crew_weapon/dropship1/floor{ + attach_id = 9 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/shuttle/drop1/sulaco) "BS" = ( /turf/closed/shuttle/dropship1{ icon_state = "48" @@ -369,6 +352,15 @@ icon_state = "39" }, /area/shuttle/drop1/sulaco) +"GQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds1{ + dir = 1; + id = "starboard_door" + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/shuttle/drop1/sulaco) "Ho" = ( /obj/structure/machinery/computer/dropship_weapons/dropship1, /obj/structure/transmitter/rotary{ @@ -401,6 +393,23 @@ icon_state = "35" }, /area/shuttle/drop1/sulaco) +"Iu" = ( +/obj/effect/attach_point/fuel/dropship1{ + dir = 1; + pixel_x = -32 + }, +/turf/closed/shuttle/dropship1/transparent{ + icon_state = "33" + }, +/area/shuttle/drop1/sulaco) +"IP" = ( +/obj/effect/attach_point/electronics/dropship1{ + dir = 1; + attach_id = 6 + }, +/obj/structure/shuttle/part/dropship1/transparent/inner_right_weapons, +/turf/template_noop, +/area/shuttle/drop1/sulaco) "Jb" = ( /turf/closed/shuttle/dropship1/transparent{ icon_state = "80" @@ -415,16 +424,10 @@ icon_state = "62" }, /area/shuttle/drop1/sulaco) -"Kk" = ( -/obj/effect/attach_point/crew_weapon/dropship1/floor{ - attach_id = 7 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"Kt" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit{ + dir = 1 }, -/area/shuttle/drop1/sulaco) -"KC" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/shuttle/dropship{ icon_state = "rasputin15" @@ -449,23 +452,6 @@ icon_state = "64" }, /area/shuttle/drop1/sulaco) -"Nv" = ( -/obj/effect/attach_point/crew_weapon/dropship1/floor{ - attach_id = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop1/sulaco) -"ND" = ( -/obj/effect/attach_point/fuel/dropship1{ - pixel_x = -32; - attach_id = 11 - }, -/turf/closed/shuttle/dropship1/transparent{ - icon_state = "33" - }, -/area/shuttle/drop1/sulaco) "NQ" = ( /obj/structure/shuttle/part/dropship1/transparent/left_inner_bottom_wing, /turf/template_noop, @@ -506,9 +492,9 @@ icon_state = "rasputin15" }, /area/shuttle/drop1/sulaco) -"PV" = ( +"PA" = ( /obj/effect/attach_point/crew_weapon/dropship1/floor{ - attach_id = 9 + attach_id = 7 }, /turf/open/shuttle/dropship{ icon_state = "rasputin15" @@ -598,6 +584,14 @@ icon_state = "rasputin15" }, /area/shuttle/drop1/sulaco) +"UN" = ( +/obj/effect/attach_point/electronics/dropship1{ + dir = 1; + attach_id = 5 + }, +/obj/structure/shuttle/part/dropship1/transparent/inner_left_weapons, +/turf/template_noop, +/area/shuttle/drop1/sulaco) "Vm" = ( /turf/closed/shuttle/dropship1/transparent{ icon_state = "78" @@ -634,7 +628,15 @@ icon_state = "rasputin7" }, /area/shuttle/drop1/sulaco) -"XP" = ( +"XH" = ( +/obj/effect/attach_point/fuel/dropship1{ + dir = 1 + }, +/turf/closed/shuttle/dropship1/transparent{ + icon_state = "28" + }, +/area/shuttle/drop1/sulaco) +"XI" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds1{ id = "port_door"; dir = 2 @@ -643,13 +645,13 @@ icon_state = "rasputin15" }, /area/shuttle/drop1/sulaco) -"Ye" = ( -/obj/effect/attach_point/electronics/dropship1{ - dir = 1; - attach_id = 6 +"YV" = ( +/obj/effect/attach_point/crew_weapon/dropship1/floor{ + attach_id = 8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" }, -/obj/structure/shuttle/part/dropship1/transparent/inner_right_weapons, -/turf/template_noop, /area/shuttle/drop1/sulaco) "Za" = ( /turf/closed/shuttle/dropship1{ @@ -683,7 +685,7 @@ mb mb FA Oq -sm +XH iz EN mb @@ -700,7 +702,7 @@ Et iI JP il -XP +XI mW qn sA @@ -717,7 +719,7 @@ NQ mb mb mb -bc +UN oo TK ws @@ -787,7 +789,7 @@ ax EB Py tR -KC +Kt dU Ph BB @@ -796,11 +798,11 @@ BB OK OU il -Kk +PA il -Nv +YV il -PV +BM il mb mb @@ -855,7 +857,7 @@ Wg mb mb mb -Ye +IP oo TK cr @@ -884,7 +886,7 @@ iv zV MP il -ed +GQ nC nE rl @@ -913,7 +915,7 @@ mb mb eD Gw -ND +Iu qy Jm mb diff --git a/maps/shuttles/dropship_normandy.dmm b/maps/shuttles/dropship_normandy.dmm index 0cf629e638e1..969e5927d3f8 100644 --- a/maps/shuttles/dropship_normandy.dmm +++ b/maps/shuttles/dropship_normandy.dmm @@ -15,6 +15,16 @@ icon_state = "rasputin15" }, /area/shuttle/drop2/sulaco) +"ba" = ( +/obj/effect/attach_point/fuel/dropship2{ + dir = 1; + pixel_x = -32; + attach_id = 11 + }, +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "33" + }, +/area/shuttle/drop2/sulaco) "bc" = ( /obj/structure/shuttle/part/dropship2/transparent/left_outer_bottom_wing, /turf/template_noop, @@ -36,6 +46,14 @@ /obj/structure/shuttle/part/dropship2/transparent/right_outer_bottom_wing, /turf/template_noop, /area/shuttle/drop2/sulaco) +"db" = ( +/obj/effect/attach_point/crew_weapon/dropship2/floor{ + attach_id = 7 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/shuttle/drop2/sulaco) "eu" = ( /turf/closed/shuttle/dropship2{ icon_state = "75" @@ -51,6 +69,14 @@ icon_state = "29" }, /area/shuttle/drop2/sulaco) +"ft" = ( +/obj/effect/attach_point/crew_weapon/dropship2/floor{ + attach_id = 8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/shuttle/drop2/sulaco) "fx" = ( /turf/closed/shuttle/dropship2{ icon_state = "69" @@ -79,14 +105,6 @@ icon_state = "54" }, /area/shuttle/drop2/sulaco) -"gH" = ( -/obj/effect/attach_point/electronics/dropship2{ - dir = 1; - attach_id = 6 - }, -/obj/structure/shuttle/part/dropship2/transparent/inner_right_weapons, -/turf/template_noop, -/area/shuttle/drop2/sulaco) "gP" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -95,12 +113,22 @@ icon_state = "rasputin15" }, /area/shuttle/drop2/sulaco) -"hn" = ( -/obj/effect/attach_point/crew_weapon/dropship2/floor{ - attach_id = 8 +"gV" = ( +/obj/effect/attach_point/fuel/dropship2{ + dir = 1; + attach_id = 10 + }, +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "28" + }, +/area/shuttle/drop2/sulaco) +"he" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ + dir = 1; + id = "starboard_door" }, /turf/open/shuttle/dropship{ - icon_state = "rasputin3" + icon_state = "rasputin15" }, /area/shuttle/drop2/sulaco) "it" = ( @@ -151,6 +179,15 @@ icon_state = "26" }, /area/shuttle/drop2/sulaco) +"lj" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/two{ + dir = 1 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/shuttle/drop2/sulaco) "lz" = ( /obj/effect/attach_point/weapon/dropship2/right_fore, /obj/structure/shuttle/part/dropship2/transparent/outer_right_weapons, @@ -175,14 +212,6 @@ icon_state = "62" }, /area/shuttle/drop2/sulaco) -"mn" = ( -/obj/effect/attach_point/fuel/dropship2{ - attach_id = 10 - }, -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "28" - }, -/area/shuttle/drop2/sulaco) "mz" = ( /obj/structure/machinery/camera/autoname/almayer/dropship_two{ dir = 4; @@ -200,15 +229,6 @@ icon_state = "rasputin15" }, /area/shuttle/drop2/sulaco) -"mA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ - id = "port_door"; - dir = 2 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop2/sulaco) "nq" = ( /obj/effect/attach_point/weapon/dropship2/left_fore, /obj/structure/shuttle/part/dropship2/transparent/outer_left_weapons, @@ -267,18 +287,26 @@ /obj/structure/shuttle/part/dropship2/transparent/upper_left_wing, /turf/template_noop, /area/shuttle/drop2/sulaco) -"vd" = ( +"ut" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ + id = "port_door"; + dir = 2 + }, /turf/open/shuttle/dropship{ - icon_state = "rasputin3" + icon_state = "rasputin15" }, /area/shuttle/drop2/sulaco) -"vh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ - dir = 1; - id = "starboard_door" +"uC" = ( +/obj/effect/attach_point/crew_weapon/dropship2/floor{ + attach_id = 9 }, /turf/open/shuttle/dropship{ - icon_state = "rasputin15" + icon_state = "rasputin3" + }, +/area/shuttle/drop2/sulaco) +"vd" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" }, /area/shuttle/drop2/sulaco) "wX" = ( @@ -325,14 +353,6 @@ icon_state = "56" }, /area/shuttle/drop2/sulaco) -"Bg" = ( -/obj/effect/attach_point/crew_weapon/dropship2/floor{ - attach_id = 7 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/shuttle/drop2/sulaco) "Bi" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "97" @@ -362,6 +382,14 @@ icon_state = "rasputin4" }, /area/shuttle/drop2/sulaco) +"Dq" = ( +/obj/effect/attach_point/electronics/dropship2{ + dir = 1; + attach_id = 6 + }, +/obj/structure/shuttle/part/dropship2/transparent/inner_right_weapons, +/turf/template_noop, +/area/shuttle/drop2/sulaco) "Dy" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "35" @@ -477,14 +505,6 @@ /obj/structure/shuttle/part/dropship2/transparent/nose_top_left, /turf/template_noop, /area/shuttle/drop2/sulaco) -"MA" = ( -/obj/effect/attach_point/crew_weapon/dropship2/floor{ - attach_id = 9 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/shuttle/drop2/sulaco) "ME" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "96" @@ -516,15 +536,6 @@ /obj/structure/shuttle/part/dropship2/left_outer_wing_connector, /turf/template_noop, /area/shuttle/drop2/sulaco) -"Od" = ( -/obj/effect/attach_point/fuel/dropship2{ - pixel_x = -32; - attach_id = 11 - }, -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "33" - }, -/area/shuttle/drop2/sulaco) "Ov" = ( /obj/structure/shuttle/part/dropship2/transparent/right_inner_bottom_wing, /turf/template_noop, @@ -672,13 +683,6 @@ icon_state = "25" }, /area/shuttle/drop2/sulaco) -"VW" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/two, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop2/sulaco) "VZ" = ( /obj/item/device/radio/intercom/normandy{ layer = 3.5; @@ -715,7 +719,7 @@ Rr Rr BG SQ -mn +gV sk Xr Rr @@ -732,7 +736,7 @@ OI GE lJ PJ -mA +ut jc pU nS @@ -819,7 +823,7 @@ LY Bi MQ VZ -VW +lj GN bJ ZK @@ -828,11 +832,11 @@ Bb Iv rc vd -Bg +db vd -hn +ft vd -MA +uC PJ Rr Rr @@ -887,7 +891,7 @@ RJ Rr Rr Rr -gH +Dq yl SY it @@ -916,7 +920,7 @@ fI fx Tp PJ -vh +he gG RG QK @@ -945,7 +949,7 @@ Rr Rr yh UP -Od +ba zt Uu Rr diff --git a/maps/shuttles/escape_shuttle_e.dmm b/maps/shuttles/escape_shuttle_e.dmm index 0ba589df217e..65efffe43619 100644 --- a/maps/shuttles/escape_shuttle_e.dmm +++ b/maps/shuttles/escape_shuttle_e.dmm @@ -9,10 +9,10 @@ icon_state = "wall2" }, /area/shuttle/escape_pod) -"e" = ( -/obj/docking_port/mobile/crashable/escape_shuttle/e, -/turf/closed/shuttle/escapepod{ - icon_state = "wall9" +"f" = ( +/turf/open/shuttle/escapepod{ + icon_state = "floor0"; + dir = 8 }, /area/shuttle/escape_pod) "i" = ( @@ -53,10 +53,6 @@ icon_state = "wall13" }, /area/shuttle/escape_pod) -"z" = ( -/obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod, -/area/shuttle/escape_pod) "E" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall10" @@ -67,16 +63,16 @@ icon_state = "wall11" }, /area/shuttle/escape_pod) -"L" = ( +"M" = ( /obj/structure/machinery/cryopod/evacuation, -/obj/structure/sign/safety/cryo{ - pixel_x = -18 +/turf/open/shuttle/escapepod{ + icon_state = "floor4" }, -/turf/open/shuttle/escapepod, /area/shuttle/escape_pod) -"N" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor10" +"O" = ( +/obj/docking_port/mobile/crashable/escape_shuttle/e, +/turf/closed/shuttle/escapepod{ + icon_state = "wall9" }, /area/shuttle/escape_pod) "Q" = ( @@ -87,6 +83,15 @@ icon_state = "floor0" }, /area/shuttle/escape_pod) +"T" = ( +/obj/structure/machinery/cryopod/evacuation, +/obj/structure/sign/safety/cryo{ + pixel_x = -18 + }, +/turf/open/shuttle/escapepod{ + icon_state = "floor4" + }, +/area/shuttle/escape_pod) "W" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall4" @@ -98,20 +103,20 @@ w t I E -e +O "} (2,1,1) = {" k -z -L -z +M +T +M s "} (3,1,1) = {" d Q o -N +f s "} (4,1,1) = {" diff --git a/maps/shuttles/escape_shuttle_e_cl.dmm b/maps/shuttles/escape_shuttle_e_cl.dmm index 490f0abdfa95..4b605503d7de 100644 --- a/maps/shuttles/escape_shuttle_e_cl.dmm +++ b/maps/shuttles/escape_shuttle_e_cl.dmm @@ -25,31 +25,24 @@ icon_state = "wall13" }, /area/shuttle/escape_pod) -"i" = ( -/obj/structure/machinery/cryopod/evacuation, -/obj/structure/sign/safety/cryo{ - pixel_x = -18 +"n" = ( +/turf/open/shuttle/escapepod{ + icon_state = "floor0"; + dir = 8 }, -/turf/open/shuttle/escapepod, /area/shuttle/escape_pod) "s" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall2" }, /area/shuttle/escape_pod) -"u" = ( +"z" = ( /obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod, -/area/shuttle/escape_pod) -"v" = ( -/obj/structure/machinery/computer/shuttle/escape_pod_panel/liaison{ - pixel_y = 30 - }, /turf/open/shuttle/escapepod{ - icon_state = "floor0" + icon_state = "floor4" }, /area/shuttle/escape_pod) -"y" = ( +"D" = ( /obj/structure/machinery/door/airlock/evacuation/liaison{ name = "\improper Evacuation Airlock CL-1"; id_tag = "cl_evac" @@ -68,11 +61,6 @@ icon_state = "wall6" }, /area/shuttle/escape_pod) -"K" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor10" - }, -/area/shuttle/escape_pod) "O" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall4" @@ -88,11 +76,28 @@ icon_state = "wall12" }, /area/shuttle/escape_pod) +"T" = ( +/obj/structure/machinery/cryopod/evacuation, +/obj/structure/sign/safety/cryo{ + pixel_x = -18 + }, +/turf/open/shuttle/escapepod{ + icon_state = "floor4" + }, +/area/shuttle/escape_pod) "X" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall10" }, /area/shuttle/escape_pod) +"Z" = ( +/obj/structure/machinery/computer/shuttle/escape_pod_panel/liaison{ + pixel_y = 30 + }, +/turf/open/shuttle/escapepod{ + icon_state = "floor0" + }, +/area/shuttle/escape_pod) (1,1,1) = {" h @@ -103,22 +108,22 @@ a "} (2,1,1) = {" Q -u -i -u +z +T +z E "} (3,1,1) = {" s -v +Z b -K +n E "} (4,1,1) = {" g O O -y +D I "} diff --git a/maps/shuttles/escape_shuttle_n.dmm b/maps/shuttles/escape_shuttle_n.dmm index 71f8515daba8..a7a4e9a69252 100644 --- a/maps/shuttles/escape_shuttle_n.dmm +++ b/maps/shuttles/escape_shuttle_n.dmm @@ -1,23 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/closed/shuttle/escapepod{ - icon_state = "wall6" - }, -/area/shuttle/escape_pod) -"c" = ( -/obj/docking_port/mobile/crashable/escape_shuttle/n, -/turf/closed/shuttle/escapepod{ - icon_state = "wall9" - }, -/area/shuttle/escape_pod) -"f" = ( -/obj/structure/machinery/computer/shuttle/escape_pod_panel{ - pixel_y = 30 - }, -/turf/open/shuttle/escapepod{ - icon_state = "floor7" - }, -/area/shuttle/escape_pod) "g" = ( /turf/closed/shuttle/escapepod, /area/shuttle/escape_pod) @@ -26,11 +7,6 @@ icon_state = "wall1" }, /area/shuttle/escape_pod) -"j" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor9" - }, -/area/shuttle/escape_pod) "k" = ( /obj/structure/machinery/door/airlock/evacuation{ dir = 2; @@ -45,36 +21,64 @@ icon_state = "wall2" }, /area/shuttle/escape_pod) -"F" = ( -/turf/closed/shuttle/escapepod{ - icon_state = "wall3" +"n" = ( +/turf/open/shuttle/escapepod{ + icon_state = "floor0" }, /area/shuttle/escape_pod) -"H" = ( -/obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod, +"p" = ( +/obj/structure/machinery/computer/shuttle/escape_pod_panel{ + pixel_y = 30 + }, +/turf/open/shuttle/escapepod{ + icon_state = "floor2" + }, /area/shuttle/escape_pod) -"L" = ( +"v" = ( +/obj/docking_port/mobile/crashable/escape_shuttle/n, /turf/closed/shuttle/escapepod{ - icon_state = "wall7" + icon_state = "wall9" }, /area/shuttle/escape_pod) -"Q" = ( -/turf/closed/shuttle/escapepod{ - icon_state = "wall11" +"x" = ( +/obj/structure/machinery/cryopod/evacuation, +/turf/open/shuttle/escapepod{ + icon_state = "floor4" }, /area/shuttle/escape_pod) -"V" = ( +"z" = ( /obj/structure/machinery/cryopod/evacuation, /obj/structure/sign/safety/cryo{ pixel_x = 8; pixel_y = -35 }, -/turf/open/shuttle/escapepod, +/turf/open/shuttle/escapepod{ + icon_state = "floor4" + }, /area/shuttle/escape_pod) -"W" = ( +"D" = ( /turf/open/shuttle/escapepod{ - icon_state = "floor8" + dir = 4 + }, +/area/shuttle/escape_pod) +"F" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall3" + }, +/area/shuttle/escape_pod) +"K" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall6" + }, +/area/shuttle/escape_pod) +"L" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall7" + }, +/area/shuttle/escape_pod) +"Q" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall11" }, /area/shuttle/escape_pod) "Y" = ( @@ -87,29 +91,29 @@ g Q Q -c +v "} (2,1,1) = {" i -f -H +p +x L "} (3,1,1) = {" k -W -V +D +z L "} (4,1,1) = {" l -j -H +n +x L "} (5,1,1) = {" F Y Y -a +K "} diff --git a/maps/shuttles/escape_shuttle_s.dmm b/maps/shuttles/escape_shuttle_s.dmm index 82391a5218d5..db3f602bdb5a 100644 --- a/maps/shuttles/escape_shuttle_s.dmm +++ b/maps/shuttles/escape_shuttle_s.dmm @@ -4,20 +4,29 @@ icon_state = "wall1" }, /area/shuttle/escape_pod) -"f" = ( +"c" = ( +/obj/structure/machinery/cryopod/evacuation, /turf/open/shuttle/escapepod{ - icon_state = "floor12" + icon_state = "floor4" }, /area/shuttle/escape_pod) -"g" = ( -/obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod, -/area/shuttle/escape_pod) "n" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall2" }, /area/shuttle/escape_pod) +"o" = ( +/obj/docking_port/mobile/crashable/escape_shuttle/s, +/turf/closed/shuttle/escapepod{ + icon_state = "wall9" + }, +/area/shuttle/escape_pod) +"q" = ( +/turf/open/shuttle/escapepod{ + icon_state = "floor0"; + dir = 1 + }, +/area/shuttle/escape_pod) "v" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall15" @@ -33,11 +42,26 @@ icon_state = "wall6" }, /area/shuttle/escape_pod) +"B" = ( +/obj/structure/machinery/cryopod/evacuation, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = 28 + }, +/turf/open/shuttle/escapepod{ + icon_state = "floor4" + }, +/area/shuttle/escape_pod) "D" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall10" }, /area/shuttle/escape_pod) +"I" = ( +/turf/open/shuttle/escapepod{ + dir = 8 + }, +/area/shuttle/escape_pod) "J" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall14" @@ -48,9 +72,13 @@ icon_state = "wall4" }, /area/shuttle/escape_pod) -"P" = ( +"N" = ( +/obj/structure/machinery/computer/shuttle/escape_pod_panel{ + pixel_x = 30 + }, /turf/open/shuttle/escapepod{ - icon_state = "floor11" + icon_state = "floor0"; + dir = 8 }, /area/shuttle/escape_pod) "Q" = ( @@ -58,14 +86,6 @@ icon_state = "wall13" }, /area/shuttle/escape_pod) -"R" = ( -/obj/structure/machinery/computer/shuttle/escape_pod_panel{ - pixel_x = 30 - }, -/turf/open/shuttle/escapepod{ - icon_state = "floor2" - }, -/area/shuttle/escape_pod) "T" = ( /obj/structure/machinery/door/airlock/evacuation{ dir = 2; @@ -75,43 +95,29 @@ icon_state = "test_floor4" }, /area/shuttle/escape_pod) -"U" = ( -/obj/docking_port/mobile/crashable/escape_shuttle/s, -/turf/closed/shuttle/escapepod{ - icon_state = "wall9" - }, -/area/shuttle/escape_pod) -"V" = ( -/obj/structure/machinery/cryopod/evacuation, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = 28 - }, -/turf/open/shuttle/escapepod, -/area/shuttle/escape_pod) (1,1,1) = {" Q D D -U +o "} (2,1,1) = {" n -g -f +c +q v "} (3,1,1) = {" a -V -P +B +I T "} (4,1,1) = {" n -g -R +c +N J "} (5,1,1) = {" diff --git a/maps/shuttles/escape_shuttle_w.dmm b/maps/shuttles/escape_shuttle_w.dmm index 8f81c83b500b..b6b7452c798f 100644 --- a/maps/shuttles/escape_shuttle_w.dmm +++ b/maps/shuttles/escape_shuttle_w.dmm @@ -1,20 +1,25 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/docking_port/mobile/crashable/escape_shuttle/w, -/turf/closed/shuttle/escapepod{ - icon_state = "wall9" - }, -/area/shuttle/escape_pod) "b" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall8" }, /area/shuttle/escape_pod) +"d" = ( +/turf/open/shuttle/escapepod{ + dir = 1 + }, +/area/shuttle/escape_pod) "e" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall6" }, /area/shuttle/escape_pod) +"g" = ( +/obj/docking_port/mobile/crashable/escape_shuttle/w, +/turf/closed/shuttle/escapepod{ + icon_state = "wall9" + }, +/area/shuttle/escape_pod) "j" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall7" @@ -30,6 +35,12 @@ icon_state = "wall2" }, /area/shuttle/escape_pod) +"r" = ( +/obj/structure/machinery/cryopod/evacuation, +/turf/open/shuttle/escapepod{ + icon_state = "floor4" + }, +/area/shuttle/escape_pod) "B" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall10" @@ -45,21 +56,19 @@ icon_state = "wall4" }, /area/shuttle/escape_pod) -"H" = ( +"N" = ( +/obj/structure/machinery/computer/shuttle/escape_pod_panel{ + pixel_y = 30 + }, /turf/open/shuttle/escapepod{ - icon_state = "floor5" + icon_state = "floor2" }, /area/shuttle/escape_pod) -"I" = ( -/obj/structure/machinery/cryopod/evacuation, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 +"O" = ( +/turf/open/shuttle/escapepod{ + icon_state = "floor0"; + dir = 1 }, -/turf/open/shuttle/escapepod, -/area/shuttle/escape_pod) -"M" = ( -/obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod, /area/shuttle/escape_pod) "P" = ( /turf/closed/shuttle/escapepod{ @@ -74,39 +83,35 @@ icon_state = "test_floor4" }, /area/shuttle/escape_pod) -"V" = ( -/obj/structure/machinery/computer/shuttle/escape_pod_panel{ - pixel_y = 30 +"T" = ( +/obj/structure/machinery/cryopod/evacuation, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, /turf/open/shuttle/escapepod{ icon_state = "floor4" }, /area/shuttle/escape_pod) -"W" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor12" - }, -/area/shuttle/escape_pod) (1,1,1) = {" P B S B -a +g "} (2,1,1) = {" F -V -H -W +N +d +O b "} (3,1,1) = {" p -M -I -M +r +T +r j "} (4,1,1) = {" From a60a7c7b041bf371786f2690c96dbd812bb579bb Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 26 Feb 2024 10:13:20 +0000 Subject: [PATCH 122/148] Automatic changelog for PR #3642 [ci skip] --- html/changelogs/AutoChangeLog-pr-3642.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3642.yml diff --git a/html/changelogs/AutoChangeLog-pr-3642.yml b/html/changelogs/AutoChangeLog-pr-3642.yml new file mode 100644 index 000000000000..35b044b0b37e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3642.yml @@ -0,0 +1,5 @@ +author: "paulrpg,kugamo" +delete-after: True +changes: + - imageadd: "shuttle rotation sprites added" + - maptweak: "escape pods now use new floors" \ No newline at end of file From 64d528e554abea15df13cd2cce4918e04e45fcf5 Mon Sep 17 00:00:00 2001 From: BadAtThisGame <79063506+BadAtThisGame302@users.noreply.github.com> Date: Mon, 26 Feb 2024 12:07:35 +0200 Subject: [PATCH 123/148] Another good Sprite PR (#5681) # About the pull request Adds new insulated sprites for both the item and on-mob Adds new CMB uniform/jacket/cap sprites, as well as a deputy/marshal variant. Adds two new overall sprites, tan/red and updates the blue one. Gives two heavy vehicle operator survs a blue/red trucker hat I added previously. Adds three new hazard vest sprites. Orange/Blue/Black Adds five new colonist workclothes. Grey/Khaki/Pink/Blue/Green # Explain why it's good for the game Removes legacy sprites, adds new sprites and puts said sprites in rotation. # Testing Photographs and Procedure
    Screenshots & Videos ### CMB Deputy and Marshal ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/8e56cfd1-b2b1-4a66-9bbe-79ff35af0959) ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/7bb2ca88-ddef-4fb0-97e1-bf1b68cd01c8) ### Hazard Vests and Insulated Gloves ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/0ba75249-984b-4c20-9685-12d7c9a0bcc0) ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/d58766a9-a40d-467b-ac68-38249f9571ca) ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/51ff0d16-b1a3-4fa2-974d-78f1c9995279) ### Workwear ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/3a747679-6f50-4e64-8054-1766ce3be8e8) ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/3f4965c8-1472-497c-956f-05b1cd9729e5) ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/40d6cbfd-ac95-4839-bf2b-11d320732755) ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/b7c9e8b7-178f-442b-8a7e-356d942f9cc8) ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/f3199711-696e-49e6-903a-5b7a0c3be370) ### Overalls ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/27489308-3c60-42ca-a8e8-aaa854b0eabf) ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/dcd1fe5d-79d6-467d-afee-d46303186e24) ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/9b1f6194-ba31-4149-a157-80e1a0fcc460)
    # Changelog :cl: add: Added trucker hats to the Solaris and Trijent Trucker survs. add: Added the CMB Marshal jacket to the CMB Marshal. imageadd: Differentiated the CMB Deputy and CMB Marshal jackets to accurately know which is which. Courtesy of AmoryBlaine. imageadd: Added new insulated gloves, coveralls (Tan/Red), updated the blue coveralls, Five Colonist Clothes (Grey/Khaki/Pink/Blue/Green), updated the Orange/Blue/Black hazard vests and updated the CMB Uniform and Cap. Courtesy of AmoryBlaine. /:cl: --------- Co-authored-by: Jeff Watchson --- .../clothing/suits/marine_armor/ert.dm | 10 ++++- code/modules/clothing/suits/miscellaneous.dm | 16 ++++++- code/modules/clothing/under/gimmick.dm | 4 ++ code/modules/clothing/under/marine_uniform.dm | 39 +++++++++++++++++- code/modules/cm_marines/Donator_Items.dm | 7 +++- code/modules/gear_presets/cmb.dm | 2 +- .../survivors/solaris/preset_solaris.dm | 2 +- .../survivors/trijent/preset_trijent.dm | 2 +- icons/mob/humans/onmob/hands.dmi | Bin 11020 -> 11151 bytes icons/mob/humans/onmob/head_1.dmi | Bin 114934 -> 126966 bytes icons/mob/humans/onmob/suit_0.dmi | Bin 337554 -> 339425 bytes icons/mob/humans/onmob/uniform_0.dmi | Bin 422404 -> 379765 bytes icons/mob/humans/onmob/uniform_1.dmi | Bin 3679 -> 63721 bytes icons/obj/items/clothing/cm_hats.dmi | Bin 52251 -> 52277 bytes icons/obj/items/clothing/gloves.dmi | Bin 16533 -> 17864 bytes icons/obj/items/clothing/suits.dmi | Bin 165377 -> 167158 bytes icons/obj/items/clothing/uniforms.dmi | Bin 133191 -> 135642 bytes 17 files changed, 71 insertions(+), 11 deletions(-) diff --git a/code/modules/clothing/suits/marine_armor/ert.dm b/code/modules/clothing/suits/marine_armor/ert.dm index 17816b93dc15..19009606db35 100644 --- a/code/modules/clothing/suits/marine_armor/ert.dm +++ b/code/modules/clothing/suits/marine_armor/ert.dm @@ -482,9 +482,10 @@ flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS /obj/item/clothing/suit/storage/CMB - name = "\improper CMB jacket" - desc = "A black jacket worn by Colonial Marshals. The back is enscribed with the powerful letters of 'MARSHAL' representing justice, authority, and protection in the outer rim. The laws of the Earth stretch beyond the Sol." + name = "\improper CMB Deputy jacket" + desc = "A thick and stylish black leather jacket with a Marshal's Deputy badge pinned to it. The back is enscribed with the powerful letters of 'DEPUTY' representing justice, authority, and protection in the outer rim. The laws of the Earth stretch beyond the Sol." icon_state = "CMB_jacket" + item_state = "CMB_jacket" blood_overlay_type = "coat" flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS @@ -531,6 +532,11 @@ ) pockets.max_storage_space = 8 +/obj/item/clothing/suit/storage/CMB/marshal + name = "\improper CMB Marshal jacket" + desc = "A thick and stylish black leather jacket with a Marshal's badge pinned to it. The back is enscribed with the powerful letters of 'MARSHAL' representing justice, authority, and protection in the outer rim. The laws of the Earth stretch beyond the Sol." + icon_state = "CMB_jacket_marshal" + item_state = "CMB_jacket_marshal" //===========================//HELGHAST - MERCENARY\\================================\\ //=====================================================================\\ diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index b5859bb6f2d4..54148d4f7076 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -143,8 +143,8 @@ valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL) /obj/item/clothing/suit/storage/apron/overalls - name = "coveralls" - desc = "A set of denim overalls." + name = "blue coveralls" + desc = "A pair of denim overalls. With a large pocket in the front these overalls are popular with workers of all kinds." icon_state = "overalls" item_state = "overalls" flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS @@ -167,6 +167,18 @@ ) valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL) +/obj/item/clothing/suit/storage/apron/overalls/tan + name = "tan coveralls" + desc = "A pair of tan overalls. With a large pocket in the front these overalls are popular with workers of all kinds." + icon_state = "overalls_tan" + item_state = "overalls_tan" + +/obj/item/clothing/suit/storage/apron/overalls/red + name = "red coveralls" + desc = "A pair of reddish-brown overalls. With a large pocket in the front these overalls are popular with workers of all kinds." + icon_state = "overalls_red" + item_state = "overalls_red" + /obj/item/clothing/suit/syndicatefake name = "red space suit replica" icon_state = "syndicate" diff --git a/code/modules/clothing/under/gimmick.dm b/code/modules/clothing/under/gimmick.dm index d8e0a16fc7a2..793bc0593735 100644 --- a/code/modules/clothing/under/gimmick.dm +++ b/code/modules/clothing/under/gimmick.dm @@ -11,6 +11,10 @@ has_sensor = UNIFORM_NO_SENSORS displays_id = 0 + item_icons = list( + WEAR_BODY = 'icons/mob/humans/onmob/uniform_1.dmi', + ) + //JASON /obj/item/clothing/under/gimmick/jason name = "dirty work attire" diff --git a/code/modules/clothing/under/marine_uniform.dm b/code/modules/clothing/under/marine_uniform.dm index 3b41b2db02c7..ce0784392e70 100644 --- a/code/modules/clothing/under/marine_uniform.dm +++ b/code/modules/clothing/under/marine_uniform.dm @@ -692,6 +692,40 @@ has_sensor = UNIFORM_HAS_SENSORS sensor_faction = FACTION_COLONIST +/obj/item/clothing/under/colonist/workwear + name = "grey workwear" + desc = "A pair of black slacks and a short-sleeve grey workshirt. Standard uniform for Weyland Yutani employees working in colony operations and administration." + icon_state = "workwear_grey" + worn_state = "workwear_grey" + +/obj/item/clothing/under/colonist/workwear/khaki + name = "khaki workwear" + desc = "A pair of jeans paired with a khaki workshirt. A common pairing among blue-collar workers due to its drab look." + icon_state = "workwear_khaki" + worn_state = "workwear_khaki" + flags_jumpsuit = UNIFORM_SLEEVE_ROLLABLE|UNIFORM_JACKET_REMOVABLE + +/obj/item/clothing/under/colonist/workwear/pink + name = "pink workwear" + desc = "A pair of jeans paired with a pink workshirt. Pink? Your wife might not think so, but such outlandish attire deserves questioning by corporate security. What are you, some kind of free-thinking anarchist?" + icon_state = "workwear_pink" + worn_state = "workwear_pink" + flags_jumpsuit = UNIFORM_SLEEVE_ROLLABLE|UNIFORM_JACKET_REMOVABLE + +/obj/item/clothing/under/colonist/workwear/blue + name = "blue workwear" + desc = "A pair of brown canvas workpants paired with a dark blue workshirt. A common pairing among blue-collar workers." + icon_state = "workwear_blue" + worn_state = "workwear_blue" + flags_jumpsuit = UNIFORM_SLEEVE_ROLLABLE|UNIFORM_JACKET_REMOVABLE + +/obj/item/clothing/under/colonist/workwear/green + name = "green workwear" + desc = "A pair of brown canvas workpants paired with a green workshirt. An common pairing among blue-collar workers." + icon_state = "workwear_green" + worn_state = "workwear_green" + flags_jumpsuit = UNIFORM_SLEEVE_ROLLABLE|UNIFORM_JACKET_REMOVABLE + /obj/item/clothing/under/colonist/clf name = "\improper Colonial Liberation Front uniform" desc = "A stylish grey-green jumpsuit - standard issue for colonists. This version appears to have the symbol of the Colonial Liberation Front emblazoned in select areas." @@ -735,6 +769,7 @@ displays_id = FALSE has_sensor = UNIFORM_HAS_SENSORS sensor_faction = FACTION_MARINE + /obj/item/clothing/under/tshirt/gray_blu name = "gray T-shirt and jeans" desc = "A comfortable gray T-shirt and blue jeans." @@ -755,7 +790,7 @@ /obj/item/clothing/under/CM_uniform name = "\improper Colonial Marshal uniform" - desc = "A blue shirt and tan trousers - the official uniform for a Colonial Marshal." + desc = "A pair of off-white slacks and a blue button-down shirt with a dark brown tie; the standard uniform of the Colonial Marshals." icon_state = "marshal" worn_state = "marshal" armor_melee = CLOTHING_ARMOR_LOW @@ -766,7 +801,7 @@ armor_bio = CLOTHING_ARMOR_NONE armor_rad = CLOTHING_ARMOR_NONE armor_internaldamage = CLOTHING_ARMOR_LOW - + flags_jumpsuit = UNIFORM_SLEEVE_ROLLABLE|UNIFORM_JACKET_REMOVABLE /obj/item/clothing/under/liaison_suit name = "liaison's tan suit" diff --git a/code/modules/cm_marines/Donator_Items.dm b/code/modules/cm_marines/Donator_Items.dm index 17669b0157dc..e534997ddd42 100644 --- a/code/modules/cm_marines/Donator_Items.dm +++ b/code/modules/cm_marines/Donator_Items.dm @@ -972,8 +972,11 @@ icon_state = null item_state = null min_cold_protection_temperature = ICE_PLANET_MIN_COLD_PROT - //DON'T GRAB STUFF BETWEEN THIS LINE - //AND THIS LINE + + item_icons = list( + WEAR_BODY = 'icons/mob/humans/onmob/uniform_1.dmi', + ) + //END UNIFORM TEMPLATE /obj/item/clothing/under/marine/fluff/marinemedic //UNUSED diff --git a/code/modules/gear_presets/cmb.dm b/code/modules/gear_presets/cmb.dm index ae6544fa3d63..fcacf8bb638a 100644 --- a/code/modules/gear_presets/cmb.dm +++ b/code/modules/gear_presets/cmb.dm @@ -162,7 +162,7 @@ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/holobadge/cord, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/cigarette/cigar, WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/CMB, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/CMB/marshal, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/weapon/telebaton, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, WEAR_J_STORE) diff --git a/code/modules/gear_presets/survivors/solaris/preset_solaris.dm b/code/modules/gear_presets/survivors/solaris/preset_solaris.dm index 91dd05ef8154..2d0f634a6948 100644 --- a/code/modules/gear_presets/survivors/solaris/preset_solaris.dm +++ b/code/modules/gear_presets/survivors/solaris/preset_solaris.dm @@ -6,7 +6,7 @@ /datum/equipment_preset/survivor/trucker/solaris/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/worker_overalls(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/apron/overalls(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/red(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/trucker/red(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/big(new_human), WEAR_EYES) ..() diff --git a/code/modules/gear_presets/survivors/trijent/preset_trijent.dm b/code/modules/gear_presets/survivors/trijent/preset_trijent.dm index f62010539d77..405496d8f496 100644 --- a/code/modules/gear_presets/survivors/trijent/preset_trijent.dm +++ b/code/modules/gear_presets/survivors/trijent/preset_trijent.dm @@ -64,7 +64,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/trucker(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool/hugetank(new_human), WEAR_IN_BACK) ..() diff --git a/icons/mob/humans/onmob/hands.dmi b/icons/mob/humans/onmob/hands.dmi index 83bf9960ad12f7dbef2e9101848330285c2835d6..923a417f4f892857afbf2243a1f5000a7e03887c 100644 GIT binary patch literal 11151 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 PZ9xWlCfCZZ-i`bZm!;Q0 delta 9399 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ⅇ)_d}Vu{SUO?UJYNcd$l zZ{;nEvhGAQQ6wQzSz0C`U8iEtj(m!a(&RRl{fr-o3UO8hYkyucb{QF#Aop63B33DX z(y<=*=ddHovxCu(6mUBq{+JT->=0+}KhW(iDyIa|biey(w-GzM?TBdYbdt#QMypL% zZe=GhJL*Yk`|s?-YXvAJP&*-UYD=3xA6Z{QYk4&Nmu*Nc&jiWdMM={7eVNG87txG) z^^q9#il=v^j-~VnE7VYRI!?sjw%8Sf*Y?y_WKf9Nw_!H zy!Tqx8l_nyf%o9S*!0}KjN{;K#x1d^sN(I9tyH9ByZ_H2id77c>{K0v&Z^5%INggaiS3*~jp~u}#T^ zl4l_Npzw9`Konj!>{!!Sr|lJe7F&YCbGevmwm_p4z|jb}u#1T`C51_M3DSg?ve|i} zes_+qNMA}fjUEt!bcT9qcDU?5*!D)R0!8o8CP)HGcp~OE40qvarIr=@goa0Cd{1_M zq2+AG3rjF0eXwzh_SHdoccY6!`6xz`rR3deq%cmT z4wp>*LLYaZ$@ryCTW^m^!tD?TMM8fVW_ZVJIK%#qJ`FMdQ_HBj<@JA)oqI82>HpCJ z)DoXFuz@h;omAy!F6E``V^UC4S@=k^3G4Zc;^^_Q;D6( zRG!zo%}(&9g|RybOaMJ*q@f8Bd`!&F+^V#7Cz@W!RcqL1P{IG~Gr~8_FyYmU@3M=< zlx=589RKj0?v6mQ>_1fMNTac}JNQ4Wsjk@nkqqkp0`J?&x6Wd%$Ib3+nAmUKbmBP( z!^V`7!yI<%p``$cs@Gyxj-c0?6y6ddD$%(eb+W6q=jmq5CDf{!1IIELLwb@q3*J5? zbeJlM(B>iy$;1)wz+Ku#{+v&>t7qXR$N=R^snwpRYCw895~?soiNaEDo(i%aw6F}H zVi22$!cAE9ENB}}QfcVa1XNj&8iIz6Y%xETe9?)0r#dj|TLjUou-p4ybCQj5a(e%- z12iLR$PeJufAdcq8G=k8^`CAPUYCY=31y zkA7dEvtom)?o@?n?!Y#l&!mCEJ}uY{zIpxo?#SnP$AV77N=DKI2@ZkHOVW7RbdVFRe97TjH9NT&sLoRojPX#mK1XZ)Yj z1etYkg2VrLLRJyb)J_ZCK{zFs<2Tx0813p|LC{Y+AiY_W07)ymP`~W|V~z>CU1Sq%D3My56ge6oZBU#?LV*K)IlhJj@lU{8EL^E@kM2#?b=@Lq9n61BaJ%zC^6Y z1>Y?O_EhksFUd1cvbOz{fMzfZZhsu;ryuG|sXXk2OYslXRtMFbvoLs&1;vy*xl<}2 zp-VA~d>}4P6xq_J>tEta17z@G$W3(?TmfNM{t!d_Hr1m}iyL=a$H(h)s#=w`XINWn zNtZBq>KuNhy5dB@e8*=7(BF*hl!2qn+yg)|wQCNNz6bNTSMb$J$*ngK=S%e>O7gw) zic+T!wWW+_yPYs3I!B%5ARHTpSC85TdcENzeu^)CYHKQchR#+D7{m>KgWd-_-)#jb zO5zDqml7$q7^gFKgxeZ!kMK_0kE*76g^*6%MwT$i=;MF*t$o}m{%zxCX}HjF$X@S7 z$pw`{I3Jf&<6Y%DC3P+H6Pqoj5mep6{^vdENNC-}CC*1vBlu3zM9cGE9*C*Bvc`ZX z*_tHPtH&k3kB0cdMMq);ep))`A_?Z09J$*$a}-H{XPfC1hIv#VgcK9yQkYk<@Tc}z zxW_E6<8D}Pb~flvG$HWiO(6rmVH~%838(;~U2@K2$~X{?-kr%)p>)N)8_d{(Va}sV zfKmQ?mYB6%dwRMu@7S#}i+NOKIHQ zIUFY40oG}N^OgyTbX-)^*?pf2&td)#%o3Hh}S{XQfwmv;aBxT)D5lxGcWBH$7rsGIR?x_*uUY-OkEZ7^X=j6jQqI3Z z^8OIsl(_$m-JW{NC!?6vX$?Y9?~chCFC=+20>6=zHK9e3Ej{H1IlQ5yr_)F8#;ysmCfrdIUyf{Y^*r4ZSCq2R9Le{uE46z(`@ARU z%#K*OvOg7J315 zilA&;+=BGoK|XQj!(j>Kdi(~akhej@>tguQIL)6Y$;oMtlDYM7)dU=`4>SxPELrr9 zK@$>wWpxR+H1`c3nzY(Cf`ZVVNSC3o@(+!xAO%h(rAg+Z;%e2I>|V0PyLW#P9ATUb zE*MW34L5gQg~9{#NjyNM+h#afUwopF8_GjuRTQ)t&L z=!mjz1w&b!M9jZIY8vxQOE&enDNM7bG1dl;Wbr0T0#Bm*4Y^5w%xeKlonXh{q4Uo< zT7b=Ug4rgL`3!ky;qY1z0pR?Vm6e-9+4@s>=-yWA*SBr>_p1Nd^E5r6HyU@6A(gk@ zTvkCMJl&%k|n>z-8YyLa;a#vXRlp0z>))8`R+_Lv9|WM8lfRD%?;R#ouBW9m>)cPgn#i3<*O4J83_v7 zsem!}|1>gEBBA*S3hyN$W-NPjUk7Kj#TEOJmspiIrSIbeME4@%>VJyqGX{Bgg|%14t}Mwo4E zjv)lSJ6WkT15L&eUBdn|CviM)Jc@_bq4v*s+Btt-9n0Mhb!ncTu6`GHr*+eX=?>x` zzqt72DWb_;h&G9~K-OFBQ`0b2INo3DM_P+*{6RK0B(x&@EsJc(<;xY89NNs-dU%g6CLl0XVtRMd1APYweeh^7fXo74f@u#APozJyI zaoFuAK+-OHHrJXADgNf|Q27^B)-8B4R$xaQJK`!}G^%D`nN_=9n@>0ZEz6UyXZ|-h1FFP%VMr1B^Q-9O4XiXw@xAf+ znF0hybRkK-6a0^Q<6GkMPEMdi321L^;f%3Fdi8o?%)}pnU_J!~=}rAWwgYLH*Suc{ zqAo`S8w`&j$zGM9$6QsHAEWaWF-C@I4IW#stPBTc>zWjVUE?2}h>$#O3T$8ov7X*V zNv_V0{)QpkTKk!jTP!iKvcjN@)hfkKsMA z`m@QYYT~>d@o)Rp3#|z|{UN4>V`Z0tD*5^1AL^30>vrzppIr-FrTP&u+<9PD1n939 z`N=(;`VeF$jv0>?)G#;yuBB{ta=sS$FF^w2-q`GcaN5Ge*?p*+Z*ngvC(db=)cZ?= z;<(Xv26p}*&!@toa7jDsmgvnei>YJ>YNR=OIc%BBZG9yShFOd9#h5yS5-n9|qjhN6 z$As7A9vo+&Pt5Jtmdy~{=0vVu|^P>C|z=_YNMS9IA0)RB^}(k*C(xts2V zxfOI~WD1cFTWsE07qk<5YSsKWyVX>`Qr%A-HMtzkjO1pn@1CGLQjF z+@dDXfXyg>f*?q)Ck_nqoYGq9JWQMz#6`)*1HkSC+e{iJ8wYCJyb!I^5};L98hYIY zAkon}*x3<7(+TS-r1CmbbhZB>iyC5y>$xWB5!Z4R3Fg}VIPlK5y*gWfp&$16F1#Ax z>ha<`W$4<9uLQG}ZXMBl#T31_1T#=}f(>_Vx$lVK6o`YKdLMoxmdpxiAA&7PzfPh7 zKYjxrU9T^z%fI=U==JuboTEV%LPpoo;Hi|vY_=h$tl7?`Vb7-ba&`No5(`OxkEDR} zEo3qaNfXrdC{!t#Z0C2IGGJbTInn*|Wjj|4OrSrDU0%#5_n?crLy(C<)CG(1+n9u= zBbR2PSE*3K7A&7g(A`Z)$a<5`v#DB(OSt$|T?rZ}+u*U4VhlONfFB#f0a(O3y+v*t1l_z*?@YfdZ=T9-;cScMuv;(Wxdvp24dx~EjgX4W}97$ zBd564D3~?r%il3Yv4mXjG>Ky|h&L^gCC-F_4Rj`xDI}pu5oeLdH%B zf^b)ip`E0v!c6emB7+kfJSJbkLa;mQ>+hkHI`SgyhF;j3zX!F8#$iVt-EsE~pM|a` zduoa$e9$oys;}8Ox_|&P$FgrH{Xvan*r!I#2XvbgWT^8c53rN72w&_ukxVhZ^p<@E zPPjfGbo#e9tu-FV$?=jTljd=G(G*OXm6MnI)r%MII@hN9yuTS=-nQJX3m7kB9hTPv zFGo8ZCs2dBu{_$Kpj{q=3yrP}dy0$UTwRbEApSd3c9}LcX3@6H_?JG0eB8ReTDBA|m@*yCqWzocg`_C7#ifLdl`EjvT$TIG z=P7AXJw)se{RQoJ#cG)N!qZKcw4tshM&AcbS}MtOk!_mU<*RMMABpCHD-mSkTfbP8 z#-5Oxv16tcEUsO73N2!S!#DJ1ie{0EDC#8;;ZrIA)#?i<6qaxxU$p@b`_m(ge;vS^ zN}YiMH8piSwmj2>_2S|Z4|HEKR_k7?(U0q(K4KmDFR7vN>;Dqt|L;{U{#RTf&mHu& z#XINYxTU-u0z*eOqf|7QAx%=MSRK6&ven zvgsCju{A2l^;_FhVg|3k80LHrZ3y-}A>a(iKWYX$Xs;r>xV%s&z-eL3ZtM(1k z?T7`3G9JhIbyKten-t#UuM(iH6DP^yIFXP3dmcSJF%j0CruLZ>b2`6yim)kyJm>0j zf_Hmyx?|31=o?r{ou;hG3pUosKzfb#U+ebvyby$--Le_z%mi!^^k^#i5f+oVgQ*MH z8PPRYB|WBO=LUXrG!~hJ;5wgf!$N*>G*D&eidYC+*<;(O5#%?01!eBSdnH5v(?$Mt5@gRK2bLA3V_g`>rtsV-1)Jc`Oc0E z^Oe{)N8_CfPCy^w1^+k&bE15b6$bJB3!8Xv587b(brvhrXVJ_n8S0DO62+~oD6$2< z;(kjvFkIIa7a68vJpwwkw5Wv)@umeEuO-p5Kwj2gxI{X}#Ho>sQq&rQ|7Ui`ELZv3&Bhu=&!#O~W(D+qx<4uQM0RiJR4C|f$^K5U?}SWM^hD*W)FyFo_Fd%E znZCjtQ<$w5#{oF^(D57(cKLVa92DeY*=^(urrZ7(bT!z-2l09dzb4Pnnho)vE5}Q` zBXKr4l}K*lzhMsGjQMS+dE@9#2gO=A;Lm$jf=lvyoYG730qKn5d&(o1%fXBr`lf3C z1%@kpr~LgN7=AII;y6T@jQ~u~k;fhH7hY=Sv6B^um>d9?$JrZh{0HZSQ&)UVE>)F7 zy+{Dd;|=&9`q|EqzQvOsAhv-3hJc?!t4)B#EI zo)c0UAhr<^gLI~WU^1P-PN;-YXqMC!LE5aE#q6tQb=nR9oG;te<46Dt`?SH#GKVNr zZzd%SGL>v&xbWXYv#>cU`+t{2t@5d!t{{G!nwUiNFykiP8A1&APX=92vNn5CrshiQ z3A;7bu%i!jeMIhQyzv^wy~{p!eopbc_DKl~ed`&KbetrX>-X=Njxo(Fs@M?Kmk6l6 zrXWEerMColmXvX^n*Z(L)4iJSN^x>_(eN*%)tiu!xIE);MFji}a}H#yp4!B?Dk+e= z$HTnl0f>$G1L{KRJYm8#D-g0*XB~DnpXg5(1!uGmT!@+4FaBS7dpiA)d zlMG;O{`dTtnqCH1IUsr@)w0@_-qxB*{kd4$hoxR@Ftz>7TE}#sHZ}Up3f(2pLg8QI z=%0~?Y&eGp&+BW_N8@ilBN^b?EAWA@-$;`D)wp-x`*lWJ#O1xu!%xqM<^Xt37Nm89 zHi(Do&&Ym#>f`0GPb^$}GLx`t)IZ$kg|*Hq)>#Gw8`(CmJ%>p{0SWJ)tPoc$5BdQN z1d>+g$cX|B^?y!HrVS(uPy8@IF7gO?A&wxnzImVwzJquJ-=gyd1hn~t(#4_wPDwO1 z{{HjAlHX?(I1Ac(T)_z<_{GIv%w>lMf?)cb@Vs@+uTCDrx=IPP%h4+9AHFPoiGY)=OOj~Q3zkIyRf7uNcW z^6KCXsO>}2apn3tPC8HUtTTW@Bh2ezj99+)nus2P!Yrchgz#TRg(wuWO+@$ zkc10Y!l*0saoC0s@i#A)?F)kV+j@MsMn+hsR(YEb0D;mnJNT&M4rMN_0arw2mEmiP6?ksYJPz=Ig2Rg;E zoydD@e+sF~T3R%LBJmNaZBk>NZcT_x( zs&VHKw^F)q-`e|M%{yEeh5iLZ41jW^64oTexz0>)P=OQd@pW1LedEl8cmsGFfeO%i zjf(06?-7Eqc+;H_e|FAHaO<(t>o`2n^*fn|3%8;oqC?dbStk-m8apfpaE&_S$rG0T zR~%Zkq9gjA1~aJ-Zd1|`_C09;G&Pmi(5iLup8YJAy7hcQ{3m*Wc*JJ{(1+t8ITI86 z2F_40DDe>FlGMPMX>*VNe*Gdju%%S{Aa`OSxXBnpy?5UaZNtVQK9TTow%Gimiu-+F zt9ifmCgOaiLZFJrc&5vHO*mT((#p2G(jQGzEJBHCC3gC6+;BnEau}(R^5MpM6TbJkp8C6U1OC1i8 zmkl57H*q^wVV~FQ>;DlmB0N4iNxUrR{ufrIg1T?>xqB%;jca583K&d}FOYE@VuKA_ z-h8$o4Jr`}cnJ#|0df>xf6~nTG(P^`M0mlgtsuGKyd$MwpIx7-`ZWpkZ#MYn-unz) z?s%=J_U@W@-{@2K_2%~vO63I22HE&Zk~BU{F$5RfFCMKG82kXmsC^7TN)4P?2WKpi zyb){t^sz(S)LHXa_z9gID}*?5w|)*k`p6Ht7}ovqEQhr?S??-Gv6GYvTIF!)UiQFG z>TnqBWI>T^KGvkHLdhuYNzvtU-1d!LImW&?KIe7Ms{QSIUAZWd(4O>OqPHIfhIduc zKubykpY>6gC@Jej20|iYXW`&_ES+Fwn0Y83@25!p;&`p~s{?})yT39gl(p`JDh7{| z;o)Mhrk$1PXMGz)ErXO#wuZB6+rJ-;-_rY@#KAutX~y%+5jg<+$pbmd(YR_$S68FS z-fN8~CQS#hE?%7$A2ZBC%wk3@lr!$Ah`WP6%;oEalsXO!%8_jJ;?qC=B_w+hbXB>D z9btMFB*p%*MW#UYvqdvs*^^_Rp3$e!(vaSu{sL71X0<*c6Z~(fCZ{s9^Bx_QETz`4 z;K}e%yE+|}Df`7+rN|~qW5`6#duP6;WALZak%!jlPW`#K47kPf_c||Xe3<|l4KjdS z?26YXhC6=S9bSMseRH66enM-+?E65m4&E&i`fWGYxMvA-^R}kOx5FnnfR<&qq^xRX z4vs9#YtYz1G=k!LN@MGykL&dHsm0Xil)Da@UJG5j8^8N%{i>b=3a)0w2SOoZL|&XF zPp_()8bkF;@72ikoazj?>SW(|-R9s3)Bc;6=l9nSGI
    zQtLtzlSb$&AIKrMUUl0 z5%&K7RzR+)bp3b7|3>Hkcd8-(_qV2caFIdD>g&N~+1>)N#-3?bP(ed|u;m0CN~~ms zI}H=`A2s@vJ5LI4pCEUei*TM$2yllz1Ol@*?Dd2;MTJb3&h=V>4ZDsm*#{TthPUj) z6}t^?T4Bk!^D3k#W<=2YgmPvRK2PyrVHXa6b$SNuMUpjh0!H}MBtPWtk3;yq?ZplT z{Msoi+Hn;s_yc7yHZv#k0uR)nRGxLMw3L+kE4^$z9LXJu$54{Jr1{L+=b-2AU(cWa zJo&v{{|oN*rXKJwH|;vJ(~-U6S?B3@2*;wG00oz4mGnoouo4-P$FIF^lH!4g--tJ z+s$}BKP2LGNYUdcRvG(&kxrXm@8hoQk-GZ!dU%s>0i_97o?eGmdoU+I{}m^v#j5S5 zCfT*^?T)2)Me0n%&tKGr?bF^p8$H=J7XCAqAPXo=Ek(r0vTp8Zzh;|1feSbK7R-VS zFmyJ04l_3}<4JH(TxSXuh!grz_Se}D}yi9XY&WC8WS(8ji*au1_ z@1vq*AZ1Er#@qKX)n@2VpFVwnMmzBDGjb?$PY&|HJ)d~ulBbwQ>|o8Rfd9z)V-pid zcqmnMagMqgQK!w{N!>NcPKQ-#9=<5n>H2qE&Y5cDb9%7fmH0_73H$`5(8*z(injzl znrUH-s`G-_(faP|D5eq?US$VGINhEyT5C>MA$1JuqO;4|sNx(xAwJH#mOA!AD3Z^1 zluE>z?%jM0q3de9q?#T@XZ-tCN%VTV+D)>ve(=xt+t{vl6k!IqiL!h>_FThRRp?Vc zy`5eIGKlx>Wm!V;+ofmsJPwzEd02 zo-7R+qJfxBA{33V$Hhbvxdy9O!r86Mh*#p%O(*NvIXG109b41f82o*^`_exO_{=LI zZYqtke#^@VFJ}yAFIgiV3jNcemhIZ-t3a?O}WXU$Ec@E5*%e&rJOGp!mqJOIrr}292{9Yd!2Sod%w|0yj!}? z%$ig`8h2NS#Qt+(q?gbz8KS?yG%;@5DjxHAxH`ed4(r45cXibgXudQqxG5iK8J?M3= zQXe+4mBo0w=vkW zZfR+de@;pYWiQzy6?pXmFaO29j{45{8%N6}u*1QT-S6N9*U&ZS!!GVzI`-8{*-wP+ z33?2$aIHGH@;Vu^tj_fo8~%Wx@%&YT?g{&-$|^XMKJ}!hnqCH*zzVIKkHHAr*3K!L z{f&5PtXJe)^3RZcy+msgn-U)(J>XJ3$`EHiS3l^-`lg@OskY(qpPH)7LrZp!I%ZCN zU)cT4bO&lUZXy!(J<5l=xtfn1={Td0JB2a-lMKUN2_S14a4lwBlh4l5?>>X>ax@-+ ze}P26uq!DGY4|yT9L-S_lnsN@RHsOMN4m!@i`g?e2)+)jy;FXNExuw8RQh`+f!zU$+IWvh5YS%Z&C*k+?w$=(p*lG-`k}bzyHu&_|~n2ryr-g zsmO1~0+&giKGraz+qE+*PRMa>+OiHGb8Em=*Hq}aufKVtQ)S><8%D=BN0O|rtA6$J zdxdM)T+(jeet-LOU_%uek7u0yERq1UdJZympB_^8O9~Ep&szNIZyfX-ly03mK)WM~ zd}I^JU{a*x!Ell?0$|Sm3NLZKu-%3$(JuC}!SqTzm+I`wqMATpqb4M*tFiboS7gS@SLwX@4E=Tt-TEXzq2@pE!M22U&j+-4f1X&<6bJU>G>G(EkoJRomq#+x_^AJoARG%#9?(zZv zfp0k`+fG5x(sbo{2*uQ{0vHk4+qC;p-14gSDI%^E;n@A2u2l9ZJ;4VEh)+myJkF<} z#_to%Jpk*N59n`Vba!-^U{a;5-zn_+H*=$9S8a9|`O<^LEg6~3YE2)Rd$sT>__9$O zJ)+7js%5xmW%XA`=)t6%`oqUhupDs|g`@ znmH=}i#5eRl6_0*jThy$F0Q#8&X)YR$(|JueR%pTy&Lk*q<-gw|J3s+LHX;eGJD`Q~^6=^#3*_`A}95a60V9cF;ei zH#0HaR)JIf^$Q@(V1SAHl_4u&H+%n5y;`xy;h_A|>6|w9J_Ax+$tUpd}zQ2Z2>{i*xg zR6(vrYrk8W{%xCL{Gx=6sO1kwh?dhJ7c27dJ2~BdyQpLlBvnuB8U>oBg!~F3`ERon z{>plSf4&8jG?n_#wOlk;A^2}smj6FCKUzuNv@DHFlHbGk?ZWM?FDuzC+W$ZQrm5DuQ}9jtE-#52ROcsyqf~BTnquv@X1AqDnVj>WGH3$-;fqfR27<@^stocuQJ$&hhGY$ob zM*NE^_CPob;J~I?d&~EEMNFymx(>pZ%5yI_q3C6xandQjP1&znT`oyuq#%yOTvYd^Ey2 zh%atl0ff0!TkJj`#vSA8rfv?xMGn$ue;uO0V+(Wqws-=1R^ErGcG@eu*-n2&Y64#1 zca@(E1#RHWQo6f_taNT9(hwn??`%Ci-z`3zbT>7=HB=~E|KKBhIxpRmP|)h?FD&&8 zmL;71wPf9y8^(R~$yFv4dg?Pth;lQ=UvfX-I&3WdOGaJJYpn@jfNwxo?#S~cJOX|rv7S#q=c4?6#BQ}QEn;i-E(PU}cc7<)EG3D04Tfp)0 zRIJlVInN6_cF}R2Y_7>msrP)CYExP_(Ehb+3G=5D-^CfDVf42m?F2=d!IR9Z?BsTM zG6VnhjqMI-1m&J25Czu{k0Pbl<`{Z=2_%N(_om8S@|yX??sQb4y^Cx#P(wy}2@9 znck$Frp^h>{|ARj;603krS(B54~4L^!rQUujL`9P7_zf)!TUXWa?tYK=O!%06V1LR zkDgD-$}PXMR2!&!0|j$6g~!QqN@@s@zZhVNmNe^l^u%Y9OuqkI**C?9>a6zOpYJ>H zqQ!Fxv%iOZeS4V0U5Rv>aA*W++RLJ@;~=1}vnsN-BXS+kyd(~M)mP8hRSOAi^JXv6 znIdI^pH)4AZmBczMFn*&0)_vC43vR#(PTE_b{%_`U9a({36`TT@b=JcrOGLa$eebJgKqvPbrvtlxTcXc*f^};Y#50aFf3;UriM!~@;C+G3} z`sGSelYVe$0Kw~w8yS&*_|oLlZbqeV21qC6-9T-8|8`%w zguv8o|A{cYu{z-^^SP=TPYXj$1V~d7!f1TvL-P5c-7K!jP)TxMg6<0&BbUJsCbx7PFEWvMVzLGo-#gui(AvclhzBdK zKhkvx3nQ76p76t?Ku%tIHovoUyoOp9>z7giKA|Q%+T0g3dFN3X6@|h}DK41_^L=Y74R%L1*83?$mP zCQZdXS0&OZzXI}_y+T$?J=bYwQ39ZK%JtrA+vUOo_%NLjuxr!}(v$OCzOvL8L4cmM zOBWt|n7?)IXc-^`%78>cig>MXC$2D<{HbU>A6(W5MH@XG>>zvISV8cE70WI?Nd#~s z&tK~vyUYfb69OD15t@b}WtR`-%Q9o&92H~gd@Ynedl%UXef{p$aZ?Ch_q%*R@iUb6 z?w2dT#USR$v^1)lANfjDy~j}VvmQ9mOOl_a6J$E?sm=#r?s8O+QV72PE^(4MjY_yi zZ?yJdIV$~TRJsHK@M9s2=i^U6P(M%+6|Bheu`m;=lG48VblL8~b-zT2FSS8aWXm%|fVd{@KLcD-mB z8L@cdqx?-(pUx?6u!gAkh9Z}ok=>O<_zJ3U!v7fO;OgU#q1FPa>w!g;fol{c>6ewi z%~&+#S=_IpOIF7{+zJb)MS;PkoSkvs9Hf`*KW-*CwM7v4kM4_EE-bHpJqQ&*3Q~Ly z+IWcmZuPmN=>c5qCLa1tH&xk>*g*HgQ@i__$bfE%SHwkDw(lucmgPk(Qq^pM+ztT< z%OqWKfWF?1uU`%Sh}L945fBtg-GjDkTnUD;uyTjILXlD>|H#ZIe|6ZoiL8m+4$v;d zSCe_jgTkNF2=)!SubI;kh*~ZT2k(#pIF|{?)Az2HM%YDAw0!yd`i?i%YFZ0fbum+i zomHU{!L;Jaye1~J08p*f5ObA=r=KzKwuGtg0{e!9znmHwYnN?X#KRVaeOjYm`+edQ zH#FYc3Em>>mp>fDia_<*7jDR^q*O_@g4WV@nCzAUsPMRY<>ZR3Kq*154Pgy+5E>|J zY9tNvize9RB_0*G!->31D_8KOy6hrCIF*q+dNJfiP?V{Qg~E^hKS%PJnVSM051gai z5epn45e}?AsKGl*?WSK5f5htHq&b@@YveY>iN7wmpBAz)c1iW zisNn&m*;C?Bzrc5%cW{7-hwj?_Kv4(NtT^eC(K3AC0UW2G3*XIG`&yd=~@`No(Fxk zhaq4K5de+c5u%8V7)>p=lmHs4J$S(?oq69DaQJSIE0^&DRLHXMnDiqIOGva@i^GlC z-CO+#$+kOSHmd##21C7wxKY`3o&|rm3q|OI>X-<0Pz1Y_{@cr9`3~FU7`|KDT@OChrhk(%CAgU(Ycu{O zqq&-MsW!VmS^PD$QOLosyjhh^1o%_y#@#^GapAI>ht>P#uj=|tYS&PY#?hVOc{r5j z3ct2bAbr&*S@r_+hZi0%{go=^ritRB5I$%stFL(UdM99@dHuxWc@wT{B7W_MM|YB7 zh3x%kcEBVxlo0r2Vsd0R5PXFIxKdriy&J%2k(Kx*DfBq!j@Ng|Cmkm4k2&s?{YMMn zT3xUYVJM=LG&GjG?}LbTx5Ot~T7Y#!0&q9TsSuaou!C}^(g4w% z2wK?XaK(Biqgm7CasK%>g@!rm!<{51X$ZpYG#5-*bXt`q<#!T3;qJe8 zpPs1W6B2cn|MLq+NF2^#d2?`sRrh#`$cK#mAiQ>RlZ}{@jH9HAHHYXb(=)um6~ga~ zK1@hc+u(0mvj4ev-{1!u0NNw@zV`(%W2NN}jm#g^%5PYn=Wt8_y0gwEqfUKTGMn+7 zR0z9Fadto{Szo{^7rSIO-?L{%6lOMv8x_o5zpC%Kz_go>Whua@Zt6tl7u`%yRmu~nA?Qrg>SYWkJa8sI3FT$x~GdgA3F2Ary zIEPBRlQa?T|M$&d#l0jC?FWX=CG`(?Q7`B|n&5GgH`+UfM}`x%W1@GOrK}k&j-u90 zCt|LLFg*dg|IQgMx9Q}2)P<{#;FI?m85xOrAjDwi-P?q8uMcE`wXOW(zb0IxS(C@= zqH(+b?3%c{TP*jBbeaj$gtLoN8sW`YAQzsFp@#ZNAUyLR@ry(7cfQWmN~kNNd4!^P zV@I@OKm2n8)w8c&*Pp@hSrup*u!$sQY0F1cd%MlRT_&=rA^owln_Q|^d(g(Ckc-P% zg%6P=LXks=i-fVuPYy0|f?%mD8G|G5iGM;sW&YAHU1RshBsI4l`LeLail;A<`A-!Z z)BY>%L03q}p$WA50}X z9gUzVtrfp#)$aRCXrV+po>mtb6PRHq*2>o(miw!sr$B_scE6f50<4c61S{>yeiWi)XAH z!qrJ2tQ^3KKJlt|T9^oJy)lq57dcuiA0KoTP@$lK20b=OdkE%XH5s1IWNN$_a=fFX zAGjwV1I(Hxz;z7#88H2Al?yWu|isT27P%gPnz7~Lq=+cWPyM#JI59fI86T7cWN%WTH z=G{A&;;053Yh5$StrHIL@>^Dq?Cii|9Xtkl`H~rC{e3EECrXHMoiP9bp1AK#tHD|- zQQp6+CL*<3T;zQT;NbSI(Kl1d-roDFl5TYAAVVW*1UQH6N6O2{`X&>J8?y!$#Y2G< zk7SFL*T~zNP7%|VHtj0b|OG{hZ z+9Ey~PdjIaeb5hmYO;_o3d}-E7J-jxlOncr;I|g&r7=Xk04;F|X`Rr7#tQb5>X>|T ztQ9TdYh#rn_Gu)b>+Ir^+{b7@xSh1WWzxXz1;JnR8B*s_=eDI1uL7NO%tN6SKpqma zqVPADJFE|j42y2skFeJ z1r;*@LgRQ%B-~!V~@4Pc?A4dyUJ3cl_NLN=>@io{t$?om$K$YmrSXVO7SM56~BOrX0 zF}TQA)4iaqkeRJ)MSHf$v>*{R8Q4&A4Vw8QPpL1b?dk)FZ(fdYerRU@Vl-3iY7JPE z@EEdaV9LtQcFHKCzT0;~z(`tY?=5tYzAT)VuWQSL47OKehjzcG7jqJ`+R)L?y4hMC9E1)zcgTD_lRg{jN8vV8~<&;EF1 zjQzc{`!cdkj=YVR(Bng$*m-xb9IP9Rsb%k}*}Bg|VW%EoMY1jjlfil-h;2I|&uJ8p zEPe!AwmqDjU9zY6AypW*ud>;TDt+YT#XKbyJ->fvkW)_Tk<}KLJ4^Dkot)0=NIP{; zEM!AJ_z{o^emkUoZ2D@QjKKGrN*@d_2F$IkTe4F9CKWjtJOo)+!MOJKoYv-qTaC^V zZg}jIbe@6vM3Bo}FUI1Bb%KItApl4w$gdI$ujD zt0@P|{b-#$D19U0gJ(a19?6tg~>RYs4ly=`d_q< z?bH=Kjsuu5)C>?e^`y3I(FJ;lo~@G5+ZP(;KMpEJCMprX4otqp@(4YB-mlW$Bk+eV zXytmEZ(5woHuV$iM(0?Dh%A)zh)vqkJYycp2*qN39zRjasxPM-u9?qm+W8Q>`p5$1 z^p;C{cxEKPpusK3=Y+~}1;3fagzk7IK!u);7BJ*hQF*|VL~2)C_t@uMAbz^~9-W6P;J%ssFgyGQ z7NL{>3!JpCW?E;=mH|7*Gj1QkGqS0`-4wMF^*Yi)d2l5t_?pQg4KE0_P8J65>Ba>};vWwBU+N+#$;(p{u{(L1C|u+_KS6E2B(ML@TV}5W zF3bjX9SaE$Z{LyicFcG-(=`4&HOoXu%t6L&cQX53Zck81)QL7eZzZyeHL><)@nrI5 zQS6uGP)nqvuO2j(5Jkx;GFc$wXR#~v?u2b5T)@0omiD=;X^~%lA#!-klhQ0jo6y6m z1^%kW>dusu^8HX0a&>Hl{(9&_R+aw~G&6JZ@j61w)w&swZ}uohcl^vdmQcR3)fT_O z_H0lH^Tfu>{M!$yTd?%6SoGJ91zVzJidHBbfC$-NaL5xGzB&IShdzS>#~S>h8vEAz zdh0VAnAh4ddsEq?QK_5r@$kjcmZPI1Aa(_Ny`p@OVaDb2EU9UV<_e5$a|GsX)FJk{ zb8)>?wrl|d`W|O~{mPcJxyM_-%C##*Pr~13(+_vjn3|l;;!hL;JN5hxy$?B?)C|F4 z3LY-y{03TM=bx7v@!1U8GR<3esgI95$b2f+>Xr(Wk828gK^q6ZB^NwOb}?6HZ1=F4 z9>hElkg4*RUC1D5t*o09GYaWuzKdY|IOBbC)9uI-;i~&bh#q$3-Ek7W=-FyTrEP+C zOoBj}1$FL{b89=K>!q+Uc>Y??x?f7_F!MT`%RL2eM!W09ARBK3 zP*!@dR@v()1?#jU7BCY<`z3O-mk| z>xsRv>e`>9sx6Ul#$LvntdC68zZxi(s6e&f0s+BJx>8hFEi_1UJtZ{g&NW0UoK-6H z=MRbD-?MDL4{r+bznHta7cFGqab`pP-SQp#D1~EnwW}9F??k8i281U@L_27NzZcFEBy$%;}UNRiwGYDS(p*z*5@j%^F2Hm%XZ{#X6%9e_0p5)rNmIi zy2G?N{lo8J-s0xfR?ym$K$30ModmZ{Pd;fwi)3^b!3s+idhe|{$9Ou#bNSVxrpEot zsqotrVo;=SaY0){3ARKQRD@BN4|IT>?X#DD(%KSBuw?C+E8a-bqs~Ebvy<>)=zNbl z#pz*yD<;7gRcj|(lBgS^c{wRU z$Z!7Gj0)1loNI-w7j}JAyc?So`+;9gz-_mf(n^|3wVNiJ)lG9;)X1$rPD1p)R`fQ^ zr#|r)9Lm)53p+Q_zV;U~m5qn;nUL^;Tj0p&b%ny{_I{vi=9-E5mX^80c;cy;Jl;$D>)oyB5ufo?9*!457YSabB4Z=}9^*Ruf+a_P*$&w@d4qO9#p%M?#I;5cF0`V&jm~@pF9ZlRHZ`x`P5Ga3FkO<*NTWCQ;elm9uPyWE!Jdnxv*7=Px`+bYKem)_K!1@Wt^1XB# zI`$jyIlH{R94njXr~Z)Q5T4WK;V~r3lmcJ>_mMJN!bL0!|A2ky-2b169U8EY@FN$i z8IBBQQK=R{r5+}v#q)LkSUB!d-4WLu)k^wJ%4149X~!>AeA58l=xV{|bv~Wjgm2r% zqUtN@IX}8)jk-*K5tsM}b;n2wo@1eve{%j0|El-^RFrL=S-G}9Oe2Sc!jUAmE4nw} zwkO~G4|gjIXISBsG|U`C2LeN;8<r|n%ak0s+15h_qYF&EzHZf>l33)xgM1ZL z$9>J*mwYhI;C9%E1#wMlPBX*>#6!f`gIak%PftnWK&!hD%S~{TUz~sLHq>k@$}MNR z?0(5@gioJKnXOu#`}vCm!9`U;)Kah;NSck zq%XMO7_KvrbPg)j2xgOWgbP65su`&o<^VmcY-sTP)Rfe#U+>@llCNBd9{75jt?}4= z+IchbtmYJ@7hIlryZ?ThE)Iu+?v_O2U_5$=fEqXq11f-d6sgF9&CpNR&v!W`g)~rO z6Tb=Vg1P#;-$UcIC}KjifVAnyUlI^*aFx^7IW<=+E=XnCKPFF(b^r$yEm7UFUC#|~|HJHWqc%l6y1+w*DegdLZ*5?YJ3nG{P3MnS0$B8!kW+MC@D{!bLFl1j2Td4a zbNJlJcTA!YRx{IJdYS(Rxkx@?zp)yvwas}Ro4BYbk-y=4xh*T^{t>EVXhpUVEvfqa zO$9ak_PmN-nB0}U1W0&Ey?Kpo|H}25M|60|I{zHHN{2SXU5)l78+P?%H+yGNIwlf0b+G-z-n$en3N3GokA#k zXb>J3^)*V#bd+CI+tU<}t3_n*>K**a_ShbX{?b`n4-shsNXWL|QIid0v9F`?q#96h zx%pobf#|SQ4umYtv};#e1_ohZpHFcHLsTtf;alCyunAx6wQ13mMdzpubj#2$`8ip9 z90Im1LX=Zea|QaZLMc6O&WI-{tePU8vj(>gqhsy84bh7KKIjk3`fiL`dy5y7xcU*Rh_VX>V+M(5htzcqZCK}1&5e*^E--( z@aMvUje9^=nGF@5-2;u72+vwQC zRdd*l=F?8sUjaHzxcb42cbGoJ6;GB6F5sXT=}X#(w@ZBePGs8d#>Bxs{hcoOc9l)X z+3}{vt5*RaCLJ8Eh2u71%1TP4P%p>;wHm*yEvmgKtMM>M*IfHBoXyV8?gxlJkLx7! z{~^?~km=w=|tmS#Vj)@#O>pdH}i}Ww(luJ-Pn0OH#B^2W|*iF zgGDfiq%cun>ED9G3(wOrwc;QYG+dJ0W90@fxKZdfSLyL$Js1n%a!2}O63(>-6k;mb zNqa#E^Acv5t6pEM=MkoEJ%B-+$2Twugi;+119$w&kE~>xmoOPbIB1o}oNG0M2#C+R zAWaBr6?(Ss%flD4Io0)-(lBWdwHqzq$u@HNw{I9fB8g*zCu;PvdAXyDTBq=NT#CcOm5Uo>d*CW=w~kCv)|nr)9> zQQThh3<%QjnyY{PK*5Y)Wib-|__UR10`@xUY;fvW z{KBEka`fZ9?%*y2DbTWcjA7eFd-sp(Y@8=Yr4j=_8k!YURIa=2&ffUFA5E(IJX!P- z71fMmWW8+*+5}B5`hZ>g1gG}PuWtS%=|{!5H(UJfWRQ>!EHsz%?*0&hx3y+ldbrV) zy=H5I?YH>zbbanmT+v;B+6cd+6LP%zjX62Xy-)3@_gj3?i_$4WOyxcr=^X};k~x1>gsvujmqM=2t5os&|?R@ zO4z#4%@JV@O$`-HhMj6c073kM=Pxqxd@Dsz>jkRFPIafozbLzqv9zk!rL_2P!XNfr zv7l$>BNQ|bJ|{C}(PTq7;9ZDLpwzG%{({H<^ywS5AC64H-(AYj%PaX4mW6BvuY)8a zT@I^%c%=$^DBnpJ4N+wmVYbE8p-Fe?<4$GewLw@-p1!~b^eSwW&I1aES1+RRd-tA( zL`RXo0f?rKaQ92vx|Ee~I+*Z7ECN~M;ON*GW=ltm!l>sJP6XwEuw#Q3Tp1KlMcA|f z>QY21pX%a0W4GU2SWlmx!%S*>?&ijmS?`Bn54+s-7GE28#zWd?7P8@C8`j^nJ8$)s zIl#>%?-v%88;$W=>W%t>^6y%R-sTVj+TZmJ|b_JTiU}po_$HItDv15RY}2_Z2|z|?aaKKdT+`~bBRhc5^iavwyggVQt(|f zQTyx0qVKFmg7I6;h`}=fAckUBN-(&AdcLTqJ#IiDDaN`hv8eRtYJ=OHiwA{#9qr+M zXQ38k{>lzIP=x9tEXr~ghf%&0dZ@rAfJ-$wa3t7U5N^UHhpHxmsj@}oawbp}?vlAu z{Qj#ev65a&Nvd-$zs)MYb0G?Q?IPsV_G>)IoQKt2CX()S%J(mG5bDs7%fE zvvUz5TO7w--HT)FfIoC!zs2$BnEXnWlJu~Tnq3`S5Zrt`MdlHvy$@(W8;+D$N6LznrqxQc_*qAv_!BIu_m1S+)} z5nTurjDGV_H%=` z!MlEtRXrJdaBI5;S#~<(uE>l;H`bI0e88tbzK=1TCR|L~jd%t$vl%;TzGBNk)bey|jgiCvm+q!4WKwYRf> z82gvNW&Ob7%*@y6cmu6GbDD}S1_63RBD#w0uB3_5UckbNb=I1B%_h<02x97jQaN0gSt^XzARK9>zb%}$4 ziHV6@D3cH_r!%278!RvgLh*}t2FlZ&&mLj-b$t~qf5rA#e_q|Ip$~JB<8-#JvHe_l zh=B4hz2e2hd%yj`T-y6-t7PPX^gpe1BwWri63cvheRl z(rBjsLz3yO3W7D)PVS$o+N(Y2pO}qt?XccoxKZ_wwyw8oNg_8HV~XlCRJ@b z-)Xo7^LwaZIn^*rfjnS{q3=)6*-hAN-6~pFKeN&G^&Q9uum6?y$#bQ=Ev!#+Nwt^u zv*4u$_g$sgR2E0pSy!vGvt+VknSf*h&e9LvCPcFa6d7OuY&oTr)rUFH^F;`P5?UEO zN7Qo=UDf?)kf%>XfENEsP0Jw2Ypc9#@6Ri>d1d)CnyM?fui%l^d%$a1{8HqHn? zSnBbjQTl`+{wCF2W!z56D(OrN>}?d4LT%C&*83SaO;a!27_?3%8a+kaxC^l=(CXc` z<=INNfpeqN!Gpr@ldFh`8~j-0w=6qoAK$=N$FXsb^U(R;%P%k97xO<%-Nu1`U}rQh;|7QD)DJjt++~K{WmQN@z#bum$e`Y^lUxiDwBN2^3SEGIC;f7Q+F}u>0)&VXSJdydYJ_MG20NT zr>6zY5rY=9O|O$D4jHNg9PY8ofssT4V6))oEqCCIl3Zc?{MtqFhycU;H0_w3k@1VL zxsEM#BmGvwK5jfih*NH^fl+V>d?UD6?QokRCtmU*#oF1a&z1Wep$cNmB#EAY_m=o} z@AI{Er)NMTKMW7k#S=R@n{dp=)CO?hMiE^o*jv=#7}8FQpMS>^uH%Cwz}twFf+Jug)R_(*rqnaf;KWym?z_CEHU~5 zY2_Xb=K8WHFto0!^=o=Hu9~*~t~DUHp^CV4dC`PBvwv}B?M|T)4@_| z{pb5wA+Y)58~m~W;nVwmu6I)x$vDSbG?=@c4So>dEp9!9s5&rjC*B2_^e}3+D{vX}!RyRs@ z^Ka#o6blqt2*27sTiiG^JUXcpt6Wg)>7&CV<@k6W@W}z+>QYTKHNW706g9B8?r6W7 zGBUIE$B-q0&+dSK55%zNa0ZDF0nOE1Ujis|PV&=zeD}dIMOmD$kt<01`pK2%&YU{+ z#FY1tJaKmWnBTbbrmc!$NlbYTv?1|>K2(ACM@29?GqOS6O{0O zGs9UfzcWHv!omc_92%SLpwzx)PBO#{&Ov(Iq@G{?X#TgCD#HYsMfcYfPl*85*jXMY zNH1&2^XK&aze3k}lat02qRZ+mV}3?c<$5d>H>Zln0u7c^QH$UJc+D3w_H~PrVeInpa)vX(g>>K;V_5q_^ z@_!Z~Ir-&-1EOaCU0$Tw6mXk$F=djpXwltUW*3tohGx;TL1ec zFaG2K-+(;uO%v>C*w-n|xFs^5B@2>i`7XsX}^2Z}8h`HnZdP*772mE^o#ULy3Ljao35A5j^XuzRR81)gS@Z~K z52CN!>@lYZK~0ZasNn6s&O_oUvR;Lc)_*p zcg(0=!jrn@Pj_DU_+1ZvqxUE|7}C!E*x=#3imMZ`v}Hm?u<90+moo|AR^fUxlzrbK zSOn+?&!sPvFkjQWRUO))-^V{_DY$Nq#)U~9mME)a*PpUOH@bcL=WtbIpE|)B(X9gL zj;~U$Tv|??fS6 zQFg`_vdoYzJK5K<%f2(i%v|47pZk8E=ll9Df582N*O+UrYpyx3b9*nxalAG9e|%^W zD>qtdw=-TyOoV}{P_#QQR(xXet)W@2Uh5j`_8>jL92bcu^g=6-pTs1m&}(@KI6i+5 z&?#r!bg9_$T&MRXGyaUiLjqw;SmILI$Vs>_+LQ{9H_dd6{ z55X&K`Q05+kL%AUnkv4R@!L_r{>3E%5y1@pErK*uYDzZ7uG_C4;sk&^L&$BBb!ff2 zcWuis53A8)q?Ln7Qd+2XYb}$VKQp#*%`T{7LyB6j-s+I-a=JX)vBtC&6OhYXuU!}k787L<0&Vf0w36`{RfwjQ@Akz z70zg$137ohxt;D~`$y0D)y3v;Z5B0$S!2uVy@nmBEQBFf%26)Mh=|U^HATh-9aBTG+mDgq*B?Pw;;3auR;ggPviz5&L!Nej-Ss~dz;9^W*w;PEGe0o1 zFm6v29bVB(uR;%%=o+h=kSK&91Hr$hN3VQpwT=EnsTb;yg2_)%_Z#|zdqZFYm7`w)Qxes+*(_BsV< z5OnKE?qWY4u_5msa%}en-kR-@WcCXQeqHoG_*nnxIcmt{Q#-$cy!=vBH5d(xwgdNn z=iZE@g#laoRp#hk3m6L^tdhix1XkN7b{~kT{>E7dX2CumI8`oSF)7#1G!c%R?goZs zWM#x8S}KBJrEq5DLEd5||3AhZ#k40W=`H@C^X-R4L>+-b3IfavZ1`~ahBq;)ByE3W za6q!7%&Be}x07W?nT)h5*GL+KG+VfrMIKP@Vr08d?m;Kd8)nYUhbCIQ0ai*+g^duZ zJ}&#^mqWk0wqaQ)Xroeu1u%*L)u_3;cJj&`yv`3>qgJz>R3SIWJiDU=EZke=Wq^pJ z_L+n;?@A3Uqn#9k047|^P3)tT7yU;xA+rRx7>oRn-+`HPKEu*Ff`1KguT;#FApqaR z0p8kc(z4`I8T|#wj|AFFK@IangKzd7n7@tEO+nVuf`&m)q#*Ec5_DKu5wy>Y6c`^c z8vuKF*XF#h#a09g2|JWfQC$?B=V1LqxP6^O$Vr^BD&>X2teHye=X;IBhgIIso?#pE|Ub#(8+(0uH=MW)%X?sxiTaHiEWKz4-&6dR4W?#v~_X+gVv# zye*ewA~)`7kpZ#;pW1UUWX+ZDVX)I(4;m}q-z5H-uiW4@Xr#%_$r=*zm-V zdrJ!#!w$gcg{kn34HoPx@%^=v_qnU3*6+KO9w@mVCE^s714V3`QrV@^#T%yF2@V9{ z8Qie(b8`*x+S%zw494-<_(_r8?1WKlV=O!q{{p`o8R=gn-R&J!4+GZY;a}jl28NX1 zhPg~73o_Lrn)i^jl`|$}*_{45Y;e{_JnANT0FM|uI)0#rT}O}#0`i;ZF4`y1S9c== zwi<*Xxg`SkGG2_?_vZ~LH%#StfGWtJtT{M8^OWqfmJOL~GtzLH7QHpm>FzSX-5FxX z=L4HOn7TiUQPn=N6}7>w>q0nP_;71=)p*rLJa{I3q)v6pQ10ZuC`aRvnR1561p{%vhZEWxrPZ=b?mvEuwsCF)>IH|&eeyPX1@A?V)0OA3M=Y?(*^l7bIRE1J{4yySWYj+T7DAd-H7|z-EHVcB0rsFL61Ff!sCO`ZA~MqZX7?g(YbA znK7e zo$Ze1+I`P33N8J$y4Y^PCi*n569^BZ9~Q;%JYQ}Z{HatgSAJlny;ZKTyFEWVk2mLV zf6^tq6z@e!iJT@^WY{GdEF6PRO}CV}whZ+w_y<3HoC#8vIolHmy4e11|9M!x3{>C) z#oHXa5>7&pKGtjykKA=G>&8R4QlURbsopp`A5u~RWKRG<7NuWEH!*6KNd^&UXMx32 zta6|+RcF}1>-0wmm^=L^M2`&^VBGwXr1;hqQMhgkTRy^C>P<|zXQ5d(@`V(EnJPrt zdjFw|H|jU8d8Yl#?Eqf3K2P2Eqa0EP3a1zJB+0IPgL{>G(lA_kY|@VF_Q_zSf?qRC ziVo=IpS@Y%h~sbN*R5@e@Ac^Y_SKo9$DRRZzc}aqm1kEzVYkfL0sNolBP95V7M1{m z$@j&S+%U~sPP}*=H*sh;?D+IyaDh*k003ZTZgHo zay_y`u85!oT$f!80P;Zl6OvmgNN+d^kgg|Z62?*61f;pQ1n_&{_B3(hh1*2)IHHId z^8(qXzCXSTgDyZd@J5uRY2KxnI8Hf3Yt?Sc6_;#A^)p{dC;VL;#Lko|6XN1*>-^(- z-Pa?|W+wy~htuz}aL=7#g*~2qavYFC_~2Z_pRr}Ni0-%42U2@M1rsW&zWCOO*xhvc z9_(Vt4TL+M)3ieN*lh(qttz_Zi1_b(vipX+gPZr;xH!Jm$y)fLu0PxE8CH{TdYbQm z!@h?RrlnBVxL84VbiJIk`s4N%#n=TDU3PS$}~Nda~GofN9`2{$=rNRRtQEeR+adux~@0dl?*~g^ZxkYZd3ykf0zF_atfTbYqb4 zj$cqK4;O%z^k|>7-aZnG2ZsMD#iRXN2eY47<%<>1tTb-NBLVlO#iEA&N6s#VeDB-- z{{Gv3gty($Z=12`PoJpIyyQ80PC|GdaB*vRFGfKwvOi8d3iS6sbD8buN8nlQ97;Le0h0U(1VD| z%Tr?-p6X$wud1#lg9%{>w|@8a^-chZ=RJcykNczcR}3IBG^G26*bPuJ^)Y8RzeK6~ zd}a=sN{fv7u%PlD$#%d%ATlH)XMHqyROb9#?Mb}NO3XFV+U(vaXR%ekFirtOnpPV%L-<;XIOA+{6m)grpwfV9 zGIN+G%i^B^28~x-W9W{wc@XR}SopDQaW~ zb)@yrG&i@&d4oJD)vM2^;9vydcO-N{$Hj1)=MscY-08mM7N5%UgH;PJyFEl4$(m?4 zxSuK=VMp9u|1J4syZE~o5Gk(Ho8anXo@H=M$f!BpH|9D`+Z%2aJ-rS6J`yU3V3%gb zzQ6}O*Ko2oC57!cH9^)}2l$Dd4Z%C*t>Faho)A_Ce#b-L6$!cd6Ez6b{lel*v)*!( zveoBr4hzqk2pxWwH1iUWc`iw=j%fZl54k%rp^xz2zg?3dTUy?KZBc%CYZ&@inDSnn zZF(EEjf=-)U!dus()lPW&+b$Ob93HTx@gyxly8ohYnqE#?eQfc=sL^fZhq*n~o5NU*Yd}m$o zHT&iw0%C)K@`gtW;|T;3V!E4T$75eT;W4Hjvj~C9`xzEUJ~w=U>?qTr3t__1X2`G&Up-ss-plyaVP1lg*;TpI|Dhb?x6` zGc7&5R$HaPEmAWU{hQf@BcG+g?3it~ZA6r^ej!MbsbaUxDTdcaMmkw|dd5zb|B#pIfLr_O z&xy-O_L85Zj!g62AXLf`-D^{Gw@K{CNQk+pbm@Kw3h_L5nYJizEaSYSQ&W06S|Zx< zV#y#)SRLoxnR>>kPvj5nNfCL`ZmzE6Oda@Z4@}b9za-S#JWqt+f;EGR>w0Q0qT?fu zUk_)o(iP>UrD{u3tCCL~iKt>eXGR$l63clBhIO*(K7jdlZ;S7Mm<*6#ozZKSrfI$% z6?zf8Xwt(adVSo$Xjj)W07si|y|{U82eKR?lPb+oM?hMFHA^EUek7BvV(5n6QQdE< z#~RYG)*a|MUTlYeobN`~qb6UX77aAEntly0c3XQ;LiQ_<$M=vjSp>qy`Z{{4;gU5$7q-l%!v(c|<+Y(av z=V2i2O<_U0cn=8C`>pVlaPPh_GjsQSqg0yeYnDYei#{A%92Ei(n8r6ch2>9FJd(f2 z=idKF+}rBygGrSi(2lZXNZ-(X;iDB)gzLKG=kpEFT0GP2%31Ouy4fu5Ycc_Uzyd?# z!5cgk6#jnIn7Ejwm-o23Y9Ix+t;T>ay4Wh_^MM6BMW7(TyD;+KrgWINYQkToA!4A1 zIo5v5;P{UgdI9gx&R+cz0?$|}wA5(3ENUx}t!v+SJr$Rnd^MtpGUvAGaom)1N_7-Z zxcQV^Uix(_SFuBH{+xNg=Gr^8Bfl&4uzc*~i??>Knxlx9SOThnW*#KaEaJjRa%OdbF$+ac2qCqHN-Zd2F?^dS;)pjSVfwD^4l> z_`_R>?o(|WH2AyhuBkN+h9yJ3vRW0R?|!K&o75qL$ZwB2H}++JyZ9)-t-mpB;EULB z-mNE5Bgg~(W`hmiQ5702f3WqnkMJB5o2iiK(R`EJh5<|E&SpI%FXob%bjsVT?N z!^~;^Pwy@dy*Zs4=$u~5>Glyv!;m}U=He-$tAo8OlKWAYHJoW}&0b=5Gu8mo7dn&k zl7a>XDw}+EesafWi$07YHa29v%~EPNuizn&2FZMu`gOHI(S(p}5li5aIb((4u(A}s z;q+^#jJukbsn6c|k|!nzB(ZSztcZmJrCqsh6EC#nJ0JH{WrN$;2i*M>@3W zw28{?TQ8zGy>?o63}|QfGz3G%*PKm$~SzaXFQ8dzQ$vM6YSxxWG#9?PAg{+m)_o)YHDwRCjJ zccx4mR#%+Ktfo*mY|L@V$eH3n8B^jG&)$8YSJ8WXl)s04FIzNApxdt<1XY%h3c%8>8O!=j(N{*2_X2W7Wsus-JmfK6L=^qE z5USRHm=J1lp5P+%D$F5x$_8w%YkgwoQzB1KS@_9j{SB1<3uEBDf2Im%0?t|ufAIAx z@5c~^lHSu@g%EI|T4oKH+HE{WWtMynvh*Z>#xvf_D zJa#wDY8gK5pp_Jl44bv;c@WxnzGNa_R6IHHBL1MtDghaL=72yU`^+qGGO%s=h1!Pq z+4t||^pRF34Mi3WD(=J%=tB$yCX~o)V;_Z!Xwr9~3r=Q*=-R_gGO4XyyQlm=Pp}v) zoSUB-BwVV|^*)6=8OLn&YHNNy2pzm~yL58_?FdC0CusUR46n^JpCl!9r;ne3$>QI> z5HBAKU=ypqg%%ct_06y>E{4MU2wO}X{IB=iRe|Hz^y|EtwEyw(d=bUh@W^aCzXn?t z{vV|oZI+Z@i(uc>iqnsLwO;lszw-w;09QKwyI?UsH^)WI)WTl zc1?wdnus77=)7Fg^TW}>f~%qo+Ju{vFu~eQyJH1Yc_iyC_iKNefg5JI0*_|gE!DBPi6)(C;42#aOuEVAvw8d(>mOFd4m7|$O!>$_Ba$1w z9#w2H%Pf5rM%WSC5Gy#ftjY<5l|hj9#JSkzjg>WgE|i}sJO%~bQAQxh%>V{RW5%V=q+ z!yY^~5?x^Kytj0KOmE>}lO_Y+L8VnEOA≻LrNHY6;g<`z_PH<{QH$Ky>_eGc#?O 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 literal 114934 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

    vEU4U8X$F1TwYCh-%eG}sh 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%0A_V35!(^ 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

    o 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 delta 247226 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±J9@jn2~4+c`2`no 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 diff --git a/icons/mob/humans/onmob/uniform_0.dmi b/icons/mob/humans/onmob/uniform_0.dmi index 0613b6e6662363e150675bda3c202c42f714af35..9126bfccb699ddd0e0138adb21cd56128d462e20 100644 GIT binary patch literal 379765 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�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 z zBvN30SBT|elCp)?n`H5WVZT;6vipt%nb@A9n6)EBsAS2mpf~Ybse97c3KHG%Q<^Em zXThXBd=_)V@;-dC9@VR3A7y4v3sbz}a?~S8@%Td*wxi^v0^Ca$y05)j@=t_XC8e~z z`m5=**0a1}$my zyV=4y!bxp0kp>)*yYFr*6!jeU5E(~LEzcI<_AgP}KO}y%@q}xQ{rX6q{3L`kCJm@mHbz0H21?|r%ULa$!T>6d{`pOM)#-KxJ3-$Nh7|4aOpVJ-<8LMfq zCnBUxV8>8JI&%~=kb71lZrgbfO^QX1;;E5h#%i^Dw-N0}ndJu&LqD(4+&Q^Gk9IVo zpR~<#YZU!=rEW~E)XVY#q5nN!?q_!`&B*4jlGZ*!vxyq#NG4eFBbYq1@qZ-(BG*2s zEB1^!z7HVj%YLBJ(OJ27$DWwivI1OomVmr$^@=IeA1Qtxes&hRXg?r=!?A7IU8{|7 zTYU9vC=)eZ`HbU>quxOxg1K4;mG>0m*N3_Y0M(rh^wZ84i#QG+X8m{)0bP(zV>)}* z2}u7Jr)m|des}h!RP|$hF5pRYT)VxR$3&#hhEUQ0Say2{y}T!_oqnUQ&#~mPJ`G={ zgl9z=T1pOyz&^_*-0x_WeU}_PW*U$eE7&m1@PMlfb7>%;o%PFWVoVae3*GLmP`it9 z%ZNwC^%-}g2^8@K!GPyL38`w3*8$l&>#W5;w1F>OrPZu!cFYMb!eG*^FD792Z);tf zzHfzMP^#IN-FiO+S-bhtY~^}jMLD&ENTJaDfzZUVgW#ZwdcE-|m{8)!Fj|bZ_VE(y zV4kL#fPJGcTX}BeIkoySX4_5V@$8du|zgch%B4g0yzeel^ zYxcnuqMhU&)vt1A)^&HaSU0l63X{btbG4`Ho32s^}WZ9PHNVm>OG&mO8|1a_TXvu z777qsR*#1HN?54hd%V(;=4MT!w#|`nS-TNI^1IW2b?_f{;IH2hWfk?!^h~fXZ@;}8 z)0=R!4s_x{LK?Hu6Gi==mnSrR!wK$Y+O@ucr_{U`$7p^eK!1tDfA|g*hQxAxi^Vl> ze0A{;(gl(RkUQX@Rn13Q7-2sv$>I5cU;`EDtEs1tz(x6QMrw+@!CY$-6qZw1>}Uc7 zr1j6Q%piaP*%9$RNvwu>FDGMe&V%(p|6mKy0hogj$ZR`3bPyB35zLp9z4LxMj!ljI zPG_XV^z)=|$~tX9!Flp!6?y^W>I0odrPOwh_PC*KDZ zWTMO;QUY||o+!SDcBp{o7=WYNNVg-Pk1d&rzp5ag`&Qj70NwNtos3ds%$*>3s(jKf z<&HQ<{C;qG6;*}9ga4H93wp=YeMc3w{aAuC+M(v&umhuUrZUv|l9I$smg6D1$p9{N z9y8L70EI}e+q>EW{6{K&)q!A8cEUQ0t=8_g#rzDaJQrXM#9QM5wl3A#2R><-eRgn+0}}xA#7n>h>Yt&fKwMCKjfr9aVbLIRXLz0PSY~CNjAAU6)$E@rma* zF|IQg=W^mgqZ`!tOWo8}&op?~eJ!LmAJrd_Fblm?Q%XU=>(+}VgwCJqkItLhD}v!l z+BZIwiX`ZJGy#SPl+3(R2w}O2cZ%H>fFz@$!~aLyjU`XFG>?y%0pya^Q5K&Z9Re^^ ztXx(5yIa3k+BrXF&Zf1?A=^aG$6DUVPX@0&L`8XE0UMCFSJqJ76CzN|#eePB_z}JF zpwD9eVQr=f|NJjo(CVDg@Wi2uvL#zf-u@Cg#Vt2oW!HjRIsRoUKtG@W=5Ln8=hXrXm2Opy#HQrhNe{IM;XXBZ_(ncXcnY0z8=xkSeHa zSOEn0e3-vQWJAO_9Qgudb8yiu>oZn1M|M;1F(T@c|B=&`x@=^(P^hl(0fw`Lvz?8r z(*+X*+RRnRbsJ4RATll^pwT3F4)dK2&BTz2W+1-P-bcDVsdesssS1P8czcqBo+8YqnUPN#nTps65-DV%ee3(1Zh3@S zzh+ZH{}PtHQ!`P*81G9x2nRuVO3o#hKh>_RIgSKuUk!1;cM7KZLFIRkm=1l+oCIUd zU(Mw*7;B*9TSsFH9DlW5r;GHtbIns3jkEK#Vrw`obeL9YrURK_CueKmodDdP%WwW& zKYd#9mfXN|u_#jE_%5IQV@%ZTTrzM?s9WR+^K^8iL;LS+!iB43p|54g6nGnY*?YQd zeD;`dl*+T^pJ+s8D!TGDP=18#j)R=qJdt^v*)HU3R{lu*l6l=pYUGPDkM^c zWN_p2&RG>fd1$-g92QDAEB$yjhP%7i$>tg*!8O0JRa|;2}dJ3w7GLhxiLSD5E=K0a#ry+>mHYt(vyT_3FMY&Q0m=RRjZU$EcdW>H%4 zHf>Bed)kC!YAo~QvG-QSN`Tn7&NOa)&e@ZlzPYC`L zYIRxi9On4~u0hsBdpG?FXiCX#0_sso^F3gu#cG|RV0@=-NVDIcSsRr!NBN?@{$|YI zV99wuSS+RFcFPdL>`ww@)4=e<9lE|6=#X+!tqSwN?fWrOqxdcBLFLNwV5gxQg^(stNR2^Q{I0v~@L5xP6!I+j>j(5Ig z_Nfktjis+8X36$JBFT40FW}1xrhdT-ng+iyi&4QB1s^lrqV6+s71muFXa(vy;$w1O z>ome+zt^1Dyc4CklgzaMu|w6Lo1}jgzAKN3kK*pNtyswfgD%5|vq*EJFKtQNw z_rAF-<2m#qG>~eM&V{`RuGDmo$?>!d)Ad_ly#*O?V!XnrCg3k2||tFFbkU2 zpu~Hx`x`TM@|PL5d1LK#!>pF;?pYNES8z8B4LEF{(X(FP>12$cq)aySB7$;~wx*N2)RiwXtxWS7e6l`_$`$S--q6`Y!R57^77NOxq?<%0==mPPICQNM4$R{a{>KGj$_6 zLAqt!1RRddNYFqGe*~rNei*MBalq-ws%?E_j&EvBX@jgn-c?lp*B!#A(53Y)9ysld)3MJ2B)2VCH)Z;s^CUCYtM_`=|k=&+RYqDRQH@ei6`aOhk z#5=y>@-Y(xwUCB9^fjo&CwmeZew*=+NSr$|=EOP+79l1Tkog; zcmcwoYt%Fpf72PlAgh==UTtTGW92O$*7E(N*y+_qfF){geJ^nuC6l6vBnW#F%Ft-8 zn?}nMr`Hh+w8gP>`?OTKUd3l-&I;~E1vGqod`}~MNH6RxGQsKW-vuB<91>4RvOBFH zTGlLUJtfHx1aek8DCRP)pf;eprU@}|1pNCVs<(`eqzlYd?L zBmuzu z%7J01cD-K|c>QZ2`l|1w?P^xSj26biZeq561QT-7e8rr&s$&lsj;}}n_4o#c#^o^A zy6E*>lD%6z zCl++Jn1%iV5|x2N&mzO=7G+PtYoQy?&DWI@y&JZeOeUE1Ilu@!=Fm;$y3XM`hYa;4 zIRB87dkBZl9pnjZ7DSt1Lc&c=);-;=(UP(?% z6uQ#@Wf`Uv?roFwgj;W*+}4|{sEY1bjWGQJ2%2ajdL=zG3h-D$@HG+gW%8|0Xaf2p z?ZqQ;ewDSWsb*{rSRf!&gMyyQs(1jsK?U6G)p)scsL%A&rm$#87`RmigjCFJ0yEiR zP{ZjGORdQ8E1R-AuDZX(j}0h2hB`Q_$xUP37B3HznPt1sYQA5>M8)muK?S8vUY{W& z-o`)O6C(B&6#zm7YAWhm_v|>dqp4AsZyG^?U-VS`COu*)@1^HSDPNWZk-hz+3!W6( zbj8XxplC^7Y;#P0zF*}Qu${XuGF(iafX^z+P{|Q0PXVkYSmmp4bgwwfEkEr)`7;v_ z1^l|qmF=7+!yc8qmLx+D(3ipnPTj(^*}vv4jvh>2SJ530zB`Gu3`DwYU93E`r$3Wh zAXwzsf8S@|`~GMTvfWpyCRTi9U*!kG~7ij@#d>Uiis@7g6@~IBi?-AE%bi6Sn z9k|j#0nfkcTali2*X6Oq-|qzndOIl+X=fy{Gl6dTi`9u5(d{&!JGVU^AJ$S<1Wxp4 z^d@4x8y+u;FDvEE0eA(kRk_frlsjW2H>@R zmKSSfE3k3Pe8lkwvfZIEsIjm);^Pe*VvzNip{Zc>SwC)jlI63Z-W=;c6|)z$ zT&At7O#3p>`1c(e0*;u#sY>z1&Bn(?2YV%x|K-m2mY}}lXyAyd$-4Im!tK8$>i?k> zPvdtAK6D3t^&?F+fG4q*3`ZN8}k{!w%c(4?D+QoY-MM zHV-wxYl;462yw~&qn_j|aRk50Jc~Oib(3xRb#Z-Xf3KIhjV+=Eaec>nqU&RfSZ5op z=aDwb23}kOMSVSkymt;jX`WaWqKgK_TMG2sAG{^b8v>AY0(vXkaHp zC_v=T?!+iA2bVo^<;iWm{l3&53b$20p9JMuc4d=0|{$T-8xpV1pF%O&C*cxhXfG|od-TKnM zqS=7H-C$MY207xAR-uuxv&LJ?BUyQQjnL(-Pp-V9zmx8=b8@DqrP1z3E*~d0p?vIk zZ{EDArK9tLGXbe%lGn`dK@dOet3fDO>-dg;)oMs|=@@c5w^p;w8=XSLb%6F+2v@)x)ItQ|TvN;Se@IA^r4MsO<_w6G681ydg+Cfqfen9d~pWJsRyl zY?My9ttMwnTyxBDAD^|nCsvTv<$qsFYn6n}=*8Q~@()@|$Ee<*rM;Cv z7on-|So<#HC+3HgzegOgjg>wMv;UqOVR`B3HPGLOwhs*|2DJVVZ$}&MrdC-#^53%i zW+}@Z7N8Z2s)+LTubq?|m*R?hN;lA)?5}^Z09KToB1W#k5;_Gz~0Dweb%iM*2HZeqj9gt)nt=4VJ$XG(P z>yC`AkG3Ygcz8aV(bXC8fbz@&QHL%Q8=&}1kFaQMePwjBS&oW_zTaO;3+{sb?q*cJ zup1uvdoAyl#HS7B1xmAS?FW+A(%p8-^lACc`nOprMyRZIJUIV$m*HmXQPpM4`WDpw z=CM9_ptJk9NBCCM!kM@OD-aj~8eKzD)|L#4R$ASoGJIxR&|oRePVUwEFCUKImE^4X zs?u^&;u1epA;55JJ*Az1jD{X`Y2K%Xgw6G5`ciz)N*p1+0H_NM3mzadrj6=Zcg9!2;K8nfaYwG?xK@p57t=XfE*vw?Hd+po@ zM1v8GEW8aBI+-vfVOkew7u92^(JGHaKmGhU?L`@x z)}WAYE3Vr=4hCN9{kliLnNrt(u|vcu(;CR`$8Dbd##|Ibr$bT&oy{p$Vf<32T#|hZ zX+NPdCRIM1+O^|2sP@S|>KXp4k4M+`RfbKk-BP>WG9maySZB-qSqxCxKzMGyFcxdeYwn0!#AFTWj%*DKtB-% zMpJ$v^?cz<%VgA6;ni|Q=fjXc`a_8g%(rCALciGY_1D=jS)w;-0E>O|1`Q=76=0Va zoJr4Cy6l&e-*c@mmF&d4$28w#%bkE2k*=z`DTsd8E1xxP*`b^J<%!{M4^l##p>V`X z0(C7RVC8@^5rMcO_ZfBw23SH+g}>8v|2qFSN%sSuWOJi70-#~4N}@Qdt$j{GsyVV? z_QSXMG+F-Fd^!719t^Z!?LX)2?DBZ>2;RU=g0_3bb-G6u(;x@)jeZ}P`{qs7)SD54 zfO=@J<5|t*+!8w2mCDMGGuutIKD))*L7}0c!xc_vzi8RcbtcKt@O|zw3#+dFK3$I# zuZK?ZhDVW9$O-RJ5{Z-WAT)%5lGY|!P&;&wCd$Hh(W;aZMbwJ)0_Bw#!*rK)bN3+c zpxD)YFCSwweQnrRSL0z|RQoI4zd`}=!5#LarR#RvP_W3 z(Y$2;I7cZ{e8n=0V%iRml~b}EMRMt9FFah*A=5(pW}q}Evn~&x@^d2PUO?Q-R@)Z!4uMhs}L1c zESpv;vLpvRiv(McU3A?IcOk8XP`mygD+moN;pgZ_(cSQ316kTjukn&ajm{^Cif=W- ztD8c~BHq?IX7@eYEZHwAcG*tOll`QT5zLQOKy7lk&{R7xMef$k3nmTwjWLQV+wEL| zT*3%m^SMk(aL0s>XCE}CstaJh8{EztA;>E+QFm19g@e}6hT0e8xf;;EnY~fIvUAPf zm%Rm0*lkny3qhT$wm((~A?e%VIU285Aq<(aeGj_e22E2ia#p_UObdao5=333ck+eK z&yn^M zX#|H!gG1`BVLRomMy}#eS&KF0_W+Bb$?BL2DMXy6ebFsKd@kV)7HVH$+i~iUI43L6 zt7+G5fco*N%tuU*$LtB18~~5p)-YVQx3=dZo6Ek<{p_5KUZmVo8K&m2mXrS0ZneJ7 z>yd4OG_Z}0mvlQ^u+Vm|YTA2pHHU|Dks_3{orW$P^MOLAYa$ji&Kw6PiRwIeze9V-eE zI0Y8$BKP${$!|zM!CM??bR1^g<6w;8@*|T2Z7wX-}$7vfft}w(>MA`WNPp~&E>sk z!!caiICMj^o<>ED z2)smqebeyg|5SMdz|de!VQGQ%e7J4+ld0JU3d{!p)jDiuP{-qs)*sXuZ|eEf^c0p`x8kZi9%Yl# z!1_fESZkyZtdQQjgA}uf$Vj@fu~5_IFq-S*P#wSWq-#|P-kjQyxxl^V-SbKJx1Dw5 zgNE~SuX_ajZSl;gR0A@syPLgo9uxOIW#M?%#BagwlLYvsuu@kioN3|o>O2cy)83ep zExlpx3ye+gf>6TLS@7E4))^B5Z&x~p!o{}4eTFkS!JRIzi=8`nRindx@@=&@Odqvt z9~HGvTSq57ti0*84aLHgXZIlBF%vKQ(4ux0SEJ;hZPHy`-aCqv=8c4dlLUd8(_L^=q)2mP8!MxlpuoXj3uX zxgm&kbQbeL>w1+4;wSh*a69MpcI_`jtS@au!pD(%kd=%RO_T=r>nnhbQJOyYPjI)>hWqTf?!SwN#P;)ZzG5ud>uzl+wjiMoxrKVk-5ws z9&q(JR9Fx1h|MI$&N5ti3q=F|7mj`l`2MeeG7{hn^n>lAuuc8W^&cnc^EAYJ_KWJE zMZAcw^}B$B>_4pY$5Q@B$?b}Jh8eH066+HYHiB%t!rBc&JNg8GYA)t}j)(`lvH-nD zTcFl^yN!n&eI3xx4_~)W6|JiohbClxm>hiez`+5h6PP6DMys_;m-3_I?yh&{_}fRR z&~P_efsp-NheW5u=YH6aNTXzUm}~xu@8cS2P=SQR(;eY5AA5Dg6!oJiUlH8+V$T4! z4%LJ*!??xdKL-=!zGD4KrJz70g)tgK9^hSSD2BPDlo=Ds(4%e0gzq@3l)8_?PSQ}} zsHvfa;5d}-&`V+IMn{NOQnNE)$Xly%4in$3N)lLT7lYnI^)z=*COLchz{}DiI%z%*uYorG4(9m@`>L5_*8PZP#G3HhZh46dzOTlK& zA5=4Y@+=(vb?Qj|y2{*y!sxLt7coK0Bz`)^v`xZN)Mq=?JgwjH@b^M)Po5YX+~?!~ zf96CLm*4G@In94gy-;*&GCk9p&xCZ3QbZ+5K1r><^$z$@D4|YDUFDh5&yvlA=V0jJ zAd3-#8Z^zDk_PIzpywE^v6mu7K%&4%EFtmt&~qFW0WJOw+9kp(_z&{vaybm9&6b{sn#evFvQ)1){YW z;t2~78{f3a=qCZ%#Q(tbxHf$zn6)h}4;l%h4jBTBir-+#Bo8|Ep3juDtd|==dGC3^cTCMJjB?Dn#_B~5)wR`IW;8|( ztl(kSxO5~{8`AO5NgW(kH&d_myEK}g>=CwwBasoC73T7KX{32hvtS_@ZQXtK@Fpwu zFyk2dRkys)4jt~fDul)Pp84g~!Qi({l9CrvbC`C|l=)M4GXgUd?1;;>g2Y*;F>OKt zOb!;OSE5oq8C^ zj4W}o#(#Fu;3S`1!b;va1DO~Z$fa#Dj?9ypHdlU8#KU!eqo-HH4V!qFd(lp$gc_*o zd6(d$;wq|!_|HNwOT}syK&yTSi?}v6n$kPB`Kg=fJQc6wL83Js!cWk_6gCjk zWaA1p?9p)IEiV4;Hm0t54lEPv-hErMvI(CEqs&0rnYWG!t4VC1S%RY^3@Q#De3_Z? zt3*J(7@x+qb=+`=>~{X6%?n`a(Ed%ATGALim0rkfQbhxTH)d1j&l)4(d}qHhVOu7% zvJVER2euDd`)$<2O}1+`h+w-GQ#qKWO@xQkkDsG_r95v@%B>Ykb3$xQ722_=%Zp@` za_Um~m5rHikcp47&VCaWHB>8F-=HC>8}F7L(-MPB$lUiFYi#|ZeWjFYf&#Dou}^|P zHJdv~b(C!&_~MX?@Pj5Fdtc`kW%hWx!@alBYtKL%J+RO;1<&F>7=I<)a8P6qkR4)^ z!Xzw3B#U3Lbs8M$1ADNvT=A-W1vU~!2kVeCkETmX7Fyj4T{6)*wTUHly}d#=v0@pr zXLw>GTL1z^L54%#tg8oL(PT9==4-C|a8EQq#EXh{g=W0pbbq*A*)zf1X{J)on1#J2 zk~_J#T}S4guLpy?{u!*_S-{BSowJKQKAI_l?Qll8m>TZ1tx@ai9Jk5Z3(%+X@vib( z^c*r*)YaI9XO9CFALNkxqig^(VVOWU1-(OwtUd4x2*R)kf-4wxKq-JzEj`jgZl~XX zPLtqtyklA$KVo^qn%%_9O;^5`*`q@@4q^e8hX%$5GP1g!21 zSa#V%+?ku?f68xgx!Ov4X)u2{}@yR;TP+iZ1+{6s6+ySJ?&)62BjQiONh5x0HSdZJ

    #7NYqwn{$_`I&{s{)JGLyYumCiXh7rle79d3ZGe!KN~UJRvon|KCKpDu8=t)papPE>8ub;|I%76 zD>-y0w{9;KhdD9{aQ6MF%=0e$Hd6h@savCj_o*q-DH#a)B~@)dYa>Diq`Xl_RL4-6 zvew&#&`Kf$5W@CBt|z3Nih727ZAbpY9PbEOU%qrV8v9JN0RGW}9 z+uvHm+x{2-eT$y!&kq0BeSc1C|1BPH&u8BKj~C#NZ1Vrno($?P0#)xlm*gGobdaT$%e4PZK$H2gEZscCE5~R0*rr*{Wc09lY?Xwc*bM>h|j6f zkK3n&ne6i+akPx)Q!5rzK%sm(xse$FEfx}v*u3+gWS}h8{wypP|7pdIvDhkoq^DT7 z4Y`8N29j1FFVutli~VJEFd5X!Nm1+|?*1zAP=iHRf%aT+0l_)JU<|eZIX5 z$wo!@DrnrV%q*tAqLpgRaqwhta5oLZxpblQFkvwSy}3hw#L$Bi&2H=#hW1JK)vu~? zsqAxp!s^eV)p~_~Y}A?AsQ0vn?9E%3(TF=KeUTRf^*WvIwva3GA3ePjz2>u8_4M6Z zMHjjJXvvg=3&kjJElV9=Hk3)MdRfoWrPMtTFUU)lFqw0oY_ zxvn|zZM2sjoOKv3do7d&={N)5`J@r_&g7g>u_KwbvISLj!L;d6qJkHPdC`N>{JwH1jN`JQ(Yl|xGyaY$r%MgI2j z3Pq`LuJ%JS*({r}n&)n?23@`jp{=VN)>O&T#rUP5Ai~1>e zaR5_;gkS(Y;C3MmsPZb;Nvuy}7i1wkx<1lXt7V89l#6?=C^i|K0x=)c7^hH1mTWJe zDA;3+;GIk8jbX>fw;vwtOcePRTg+~aaXezCCVVul_{RfzGl~U%+h+lbPh|o z8`-0~fb|5mYuu;T#3v12z--=%gYGF;6gUL4_fg{l$K4EsDbS0u6bkK}&CZR2&Nn&! z3qu1e5sLHeZNV|Vn>{oabY(x}`|juTQERGnu6J`kQY*bbD+m63Qc3gUX;mejd4G=w z>p%2kI#q`xUV_7J22Z{-=VRJO_T22M z;}RYzjs>XOKQq6@S0+f98XQa>mTg}xz5KpUI^0g=uAx)UoCyCpwO4(OGN&8o6Kg56 zW#XfW8J4^!@JTfkk433i!bd#rOP|xg5=M*xu?}6eP*0eO*F~|K|Gu)w{F1noPIrW3 z(QdoZ@CL(O)KB95&j|5xJiaS+8@25XA!`)XgStIVUFybtO@Us}DX@OPH7w#U2hTmm z6Ho9f+zV+CT5I#AXujD{^Zcym;B&biORwVVMN{t*e-%eSl;06(a!wAHA3!s@L+=n!H6o;Dzq9FHiB`Wb!ew6equLj&`~c zFz($O*l@~X{SenpjdC&J7diPS^q4*+6}i7G#(-$a=6Ux@Z~&vQ)HSb3_UKI^;u0&4)!Q9XJHVv-!BjQa*TIz zaL9fDwHnQyszW0Cbal|eNSM5c>l(+-c9|R1C0>?+$*>DDOq01K4iDl_ zhif0;u<1Ms;#BEgRj~&Ar13V<&2=}e3&`U>f?&cx&hI`lSW%sCpB9C9GOw6lm zjcg07*MdseQhMv?CXGN#c-!z4#3CUwqu8FUhZ;Lqe(_rmIEDOBK+n8J2 zEaH1}=v__@x!Ie%Y?^w$mVRo&bxzL41!GsbWR$){^UGpK2Td!Rt6dtEE_ zh~VcR;!|oBO`QvdP(Uq8sFj-86$Y_PY^@jy-|-=QAdZ<9x}=%D9YCKEe3N5~M6Gq2 z{K`XR5OeB{y~sKKIT#ekoMCGagOxy-v+K9+-r&klxZWT1TOLE}MV9VE_6rpG%@SX2 zA76_2`Rsd!nBzQf_kB9b$_`oC49PDhaZuqdyn!`xp_PTgt3~#jzJq6M==@IS<@%xB zva!{)E%0~j=_lsMaPSPj)Gl$=>$Q1e?dN@N$u$PM303+dRVgOU~@3d^1_`6OO~gca^FX^O)WZ{h3H1NG*o zX^pdB?j@-K0mO8?cg!&P$M)U{xsSg7oEyhi-@R) zZP37^e=RyIsj3Bga>3uk$FJ%n&p4c8r(04~cxb6c{tZiQ73tvCxDl*WlYM-Y4+*k0 z?esf;oyK7WdD!ELlb-j-0vB&Xy4LKu6R6!o%BpO|h1yCP+S)!Apc1CH%bnO=ie>qE zsm%kVdP|$6yVf_qy0j>EfSKf*(o%u$&y)CF0~D{*+gbdIFuZy}3Og}(wt&l(C6$84 zW?{e#+wC^9opbY|COY=?p_jy*k|Sw<0wa12ihLe{>Zh%d*&pqyQP2g2rKsY6`u`}C zIraGN7s)l~F!4T-RPeD@z|-c)MjqH_loYM!et3=S6C~T|SX-JqE~a*du=DE$2vbRA zE=w}PcPI6fhg<)e9r=B4%(N}uVxoX?Yx!F;x$$~XuL%GZl9INxe6FW|7M(f@;a<=dhSLpRI~t<8jME3s8e6 zUl%2PTm%pC_u0{1L8|A=2%;pnRLt46 z`0?3h)t%a5G?S*Ff~XNER`j#es1x#1r?>MP?Hh&@{xi?WwQ{MBm8Qe_HyNX_^M`JP zTQIUq=`Lz?^e!QCwUiGxdWy(2vg%Jipe(tgp{ zx4+`PG&f$f%fz({&$_sL%Nw=SrGrM`?>|I_l^9_9+8C?+>$Ra(@mjrv4MsjLIuA0g z-_4AC5@}Gy*s_GQEypF(XskgBXgb>s%9;Z&9OL>0nF1lpcl`uSjVk#riLhrzQQj*; z!r5y-dR%#mS(QI9Zv>VU9!vUUe&}TvbS(hQ-lq*_I;s0iQcfVKl8NMObT9Eu`ihMA z8L85OC>H7YWy|l)EZf!C4o~$8*4yn`l2P&Yi-iL5R5WODhvP<(9{%+Qq4Q$<_*?^M z->#ljpq#J70eJZ4#;y7fK53Nlm`?{`T84&U&B|Wf^~qA?N0*AlF?Ue6A7)HV_=~_z zdyR)|S~eU2%-ptB@t{25w2kXI9~z+Lm@<+TxMl$5NTY`Ccq4IoLvZjAmC<3LoPERl zj_{XD+t}V}qx(Zp2P+ji>-NxV;42KNZbxyVC-j|u%nBw z50f!4Xpr@`3fZBl)2fFyb(AimhM#i|Mkn7&J%&$Ysk^l6hy{bs@Elg&)ZT^hT@HSB zLbWL&r9a4tuQBXnf4?p}2LoLq%S|#Sul~A5$%ijrw3f@S1y6k5zUiuTS;`6Ie+3-Y z+Q@Zigi|r&HlIaTU&;_dlkH~hH&1HBNx-YuH#ZjEJ2l6;FK%a2-IUz zH=YM$?`7x#V}h0dgGc8qJSeF#>vWDHC!aprUu~>=Nv8fGL#PZ*#R)k-!@RX&qvC3( z*Mf@})Y0J+KbVlKFV@X#MYY^=Ctf{9biSQKaNGIz=2PU&mD&nRoo{3&7O{L^u8cnv zJp>t5VVO3(e>X{B!;qyODGWF9YyOLxcsEc*63IgY#7&AOXv6X`ENF0X?85>myE$xF z!R=ZU$F+M3+_{`@c^5)I^flF4R|GUGrwk_ESdK$2?p!*92NAAc{xshnNGnrq2r}~+ zg(4nc`HEjcxTLH3oa(ix(&q7HnRq>31F@)8VHMES@~6E%XdY5^zkQUK#phws(Zd3Q zg4Y&XXRrP>$g$btSZdh5_)NKDqI>i++G{9Ni1pkkn3Q}hCRDp7-ks|3&pmM8 zm7Z8@67;5hEe@JL&6_N7Ne=(WH=E(b0)DNMeE)utxXow80CGh?i;|y>-pdY}YtX4p z0*0SgmO$!CCCW8StKlu?baYp*_1}9xdG<2SUtqE6ZIL@eJM(+4D>jFESyHZE)sQX($|mq$vJU4!*Vbxx-trtllzqFQwP9oOAT0BBLhgC5W!zc;UAD0Yv}-l6ex znbzkqxObTxReuLzCRGPR#`x@aXlJxDeD9=`SihgEvcPA0Q?c4Ysq!ua3g4HrZsH3i zp-CM2x_3ing`+puEzR_|w-Ewo&RzSAE^VwNwwGgh8S3_pUX z!O+*%eCD!+7J20ZQHMN{LCN=pTuN%I&=8B&nv#+gV{1-(Ild*caHH^IqJqm&6s2#C zm2H{Dz>AU7NS%ECR*~~@@Q|l!CKvHByKqRR*?aQB(2?Ku25ZB!)d-36^wbi%K=Tki z?2yJGRik?cz}#0|1D0hR8BVj7caX0c*LwEcca-aP;1vN_q5{gyQmFUwHPCXUc9-`z zJFwn#vP3E#UTJH_e9>FJ$$mHH%aTJ`%e2J@%P^lISDT7^fNhfW(iBD;=WM8;k0EOzGv6@ZM zMS+V+X;fZ=HYr^%R1=B<4h)?E{7b;{xt1OKv8wALztyq}PmVZ6Iuv)mIdJZPe(~j7 zZ@W&gxJjI2=zOtlCNh5UzOm^g>M)!UNv1KnF4E*8PWyw0KuO>^U$~*)^>jzR*$$=) zhQB5VN#O?&&GGK!M~YOMhzS!ANHoRPI#!K&OfAg5=nRu#e_uReWU>BxunVc3+M*vL z_Jfm{C0j2BukK;+9G*S#1?e7urL_*jySd6~W>H?`P#%AvfLg=SO-_?Rha6WrF!#b! zM-=9=DBg8BLwYg9!XE zYX>#iPCtr2e_;ZEtTU$8sS_y7E9%4^loZ66K}PCd0k;V3w4z8W?OjJUrF9T#YG5!{ zAlC_4vF>JiK8c(1i#9ga$K=8*#YbELIMr8w`L6sS}00gOCnM1yPYO0BKNCx?^CZr9qJ{2@#}3x*H{>duXJ) z24?2lZE{e^GYpJfOiLiT`vCsC}_|rFavUiw=<2xNXVcpTODWR2P^;hp)>d@8dqu-JZ z1PRG}8eLRoUKQ0&ef7KZhFVEX(P(_A~yJk!X(H{sTa{Y4G6i|ZG)uMjgpGl9o!ZF+0vO*I0`lC z74k>nL5B`F0FO|7q!}>dDq{2s0Cr&2Uxp9vMfUgn%MQ@Cmam*NO6urgO>R{cYmg?5 z3>aWdZ-^L|9<3&QUQpN;GWsWk3aHK;e2SP>ClNVZPGGsYw|2}1Wz?ME15v;-1Xruv zQMbXz0cZ`@CD(nAjyR%mKvTs%6~py>dg3(QN2;}9$Vac0;rh>|`5D4)W&GckLC|?V z_dUs%m8aV7b;?DMMh123>ig0ra4qm9+=;)sxF#{QQ{89aLOApk#0e9QDk8uOiT}AA z=6tjfA(Syur-+wiRPLfex_wx#Z>a}TPwj7_Xwm_Jr6jAZO6(&<-D+0=wpBm?ZV~Hb zSi`W|t{fS?79ne#y84#K=Ih~kc>#Zv;^1@3;~k@r=D$x|ngT#j$@Mkgt*V8ce)L$x z(IY^hS;eQov%VASymb^-wITE?{H2kh%u60V2JNRA1_#$52OQx~l!{;9pI_+0*TI;D zz1FYcMg-fy*{w^$ihQ0X&KKh0#8Dk3T<;*bu_CVE6=~+I#ZKd{2Wqxq8C4+A*89-@ z`IuL`&t&fXUjvZ%r^EZ-Ti;gqg%}-w(@@L5XWV9c&&6;r$ELNOo0|IL4V&7RN6QWZ zsvftk7D5^IQhl{Hx)<#`L7$y&I;ff5{skbYj2}Mv^=xjukRU+BA;SZ1+;ODuj~4FC z&dK|H3*;`LAEQ7Aw@Ht;82I<jm56f_L1HEj_3|6JZk{U1MUocz}U)>5#|P*A#qnSB{>VaEc} z*LHeN25|!md7D*gNLl@vUT`_96qSBqzx{9zrh@u}Z?X8+DtH%=1>U{0e?6A}y)ovg z$ydwV*NFW%|NU<|4d;%+Ln?gv|M)`%l3D!cam0S4ujOd|>o7e|yrlm)8?oOUF4Mq& z9fi-(1?TzqYl7t}IYQz8yd-`z!QBj!|GFq&G>+wt-3=T06}xvR8H1F@Y)7bGOIu2x$am<5aflshx^T1ZXD6hX7wL< zL5j%*aA}N~dGJjn0H`dzdPTfwr84yIyHNpE!Bi9(A->WXORx9dNd?j4r=PkquP|!`K3P=!&Ll))-3nh zf|My91aH6EA2yiXD5*HG<_wTy+q3(F)y9hoI8cw7&?RX}qi94UEDeI* z^E#Y@_b#ifp2gBBSZWYJa}g=2dPj>b{u&zQ^7d8fKV~$?a4S;3$UsXz0{Y0t+O^|4 zc@5uklh4RnHx$Q23^&x&lH!rTEq!BcbF_}f`#bD9G`D;6pD-)&@`pk;nhDbKh;s-s!>i)zUC?rPKU zN2L}{pE9B-qStRDb}VT=XKw|q^YHPEWASFuE(VZ(sRTC{l}&jh+V^-rQ3-|4rC$5G z1%>iRJ^OUMZ1yKD7`W<9ZruF3Y^I=znyE#1i}usbGn!j)aiz$v;qJ zS$PuDL7UEXqsXp9Y?M^5hfx_;P4bbJrU#gUNvm-4%5q>+B*juV+q>c^J}lkgGW9gy zL_z4lquoy!fSiKu=EN20GDP$={4|m_t*Dmb?|fHyL@)JkM|4ywi*emhi0XKSr=F@qL&d)>ZnlCGl#1=pYCowX>k?6>Cn@_9)jC`EECIbZwY$kN#yQ?e`l*6K zdT&^$>)i1kpxaE0kT2qtz)gD9qd%B9hrEwi$n7^VGQ(`HEmASjMICY2lywvB;2DJ( za`1OK`AiKGr{IrNQ;usCC)4p-|Z<2T7x@I4W(ydG8-?h`& zpNF_T|Ls=ym(1&@yqyNOIVaZ^coqdd7@6pB)ry~P6Uj1KN8Y|HDJ8v^S}GrE-2CL8 zwvT(lfY@8T8-H3pQ(cx~mwCr+@7=F!VP_XySt-Wz8WAQsB_aGg4PHIl)t>N%$NE?H z8El<_Z3YKkESQ2`Co}$|PJXCjYFs2XIg|T|tJkr4An-x6x+60K|D|cNKLk6yp!7%j zl4{`=j2Vv8FnhX?Y*)HPv21FDgt8eKpRhn;Fr{sxAp*1gpAoWh_Y}YL>wCO?bnq+D zD}dkCw)2OM6Y?8ozSwm!$V0;2y=N-4a~JH(hBfG+Z~(=M^&(=5OKsXHVsDqtZ!WX;?L}HTb0`8 z$7k6>!ooV=6-UhnCbG~)ffCNFK%$+V2cYDw<7s+Cq$GE2N2L7EHKE;0Q7vnA^&ydw z9o9RxEn3M2y&Fx zzl`)Mfv%$1IHdr zZOXn;z^dhP8<{a<89Do0w!_56QNvGW^ZRdV~`) zIrFbeuu`Y;F-3zfSqR6eoXwGUdt`lm^6MPyThytMU|_+z^}=}r7*OUba!4UaMNo1H zR?WWS`-5&CXVx8)RfzS|Sd+G*rm0VS>e7VOGEh&NOwp7x#it%4LP}Ur)|sB^?VUIP zm#@@yX!D`SueRg2>bM<`>^E1}2J()nRtov{i;SylzGvy_zDm-#aR+ArDrdMu>&1Fsr2`<;H zxf|`_mprw>wh z91DD)|I(0wzWqUZb4~h@iYYa4>zb0k4jv=GzO}VA?Yul);*dEoI~y4iz>bO@-y66d z5%~0rBC^1{0nfH}F=HjnuHgZ^SZtxi-}tL_jE{SAzauJl)D{2KlUwTE10>1rk~xH1XJPzju>)Ao znd*oLZwH5bMj&6yQ98aX?x+42Ihi>;P66~7z)7(Q@DCCV@DT(?vRAT{ADO4Nw)+)* zHS;OJAP3fRIKWWKle1p+r<-JlIg(7)aC#rv?Y?5jVsy_nQ%lBuF~Mo0loY$czI%fo zOK#5Vx6+N6t{8%T0B}JWQ8cv(;P$@(gaRC%miAR<6e;{meAH{gn{RM`9o?yTTKo8T zu`2Zo$=9O;D$2G~5Aj|iyOd=;_78)A7i*>XLH-HZZK}y^hW_+CQ9}hUS}>!}zYblo?ZSI$y|sD84m(Hk(nuSg*u;H)wfU za0eLvPe!fFW@yo*U+OO`??;rfCi_Uy0oOS_J~bPD$zU{O_vLekc4YpeEQ^kt7PwMF zL~x~NiHCUbdtZQW zX|BtdNoWj$n=u3tbH3Z>~-xw!lv% zpAX_Uq%>T_#y7Bvy84gI3bL0|$VqOOU0|++Y4F;PSE)Zt6y^{KvQyXPN$TM$U8K$n zQ@HqJNj&_XFz<`q4Xf^_86CUinmoN)J>hX1$r};zBVuDLbYpH;uNX@!m~=i4s+FcM zx1Zh#`b9(ho{c|oUz$m#hZGD=j0GHAC}85Irvm)jlMvP1Mub42te>A^cDg`eqdw8M zR{~{Vc5(gyOH@qqy}(AZV_LA7<9#4{&rrfCO5iRR{n5+P(&a}-#g(F_uNA(T@RVes z0i^w-fqP<&SMxTR)@ZthosE*KXXt`wkGIU>1kdL9*|k9$ML{=t3W(EG;nMa+`&L3N zC(+vb%<v9(pV>c%`E}=_QxlynZ-w8u{G>W05#Wsn+hVa|E6ODkI$ghey%=8 zpG`E8L)+_xTqf2(@3R6|Z2j**kWr~i3*d<8b-y?_0*-{G?dzvTQ?yl)_6WS2nOuZm#$#-f`> zY8H7Aunb=-t<#mT`ffXwFrg89R~ zS&b<3&U|bOz>~C*6BB3e(hVTJ2)cUS| zCyd^yZO0BCF)EPU8}bnH#%)jikr?6HnA~dyT_2dp-*lta+7Jq&*s?6TBja`H>xb`K zha>lkbiI#hfpwmQYFPTg?#=HAk)dT;2c}(dR{5QcfYF_vlYOvVRVgXHp7d(!_lOHg zYkjcFlr{5P3!9y}qMePIsn@cWC7fK-L@x9hpZolBB=i)U()_Np1%{==y4O9$>cqqL ztQZri!ghY$1kq8E;gNZ2GdGP1|H%)8F6Pl+F0gh4gXpymkn(kqqJUM9oOOl`SbSB0 zZ$hgsV#_Uhx_tU}Kb~`8+&ST@RR;`}i-^uKVzG1CtS;H?XNVV9?#lT;%DNupaWvcc z$do*Zxj!>kr74{0S*oX#%AquZ}BGx#7#zd778HQ0ei$>5kGk}Vhmu#d8?J* zlIyxQ`hyD}kQO?q+EpB|GQ*R17ug3=A}*ku09O6wY%ZcK1@yg17jy*7qUY|MM_N`C z)q1|1N2?-HsS#Cwu&ns4)&230es_>BHQ!*9mo-N~RrZWSvrz z>TmaEH@VAtq&@q^oY$A?Cdg?N?mO3rn|&UI*L%1m+|%EzGF6I7srUFYpnZ!S|9!|) z<;kG)z=Fj0n@?nUJ3fXls_9sfgTn;%yKe(MtW4fTk;i)52zjo>f|nF1;@+?iUFm8dp*Zgs3`8#rxp1 ziH3gJH_J>8qWQn@H!kJy2PgJy!t=@itDw^tOtFPqL)mac!f!Dsf;12tA_Iz-rz@sAB$aW#wd8A0_aopENv=$C4-cGOD(vIlZQP zg&G@WHhhYT=xa%m``w_9OM2^d!y65`$eVkv?w@OFUak9~XWD%AD$uXxFp!a1k@%u` zM*q2s>yLQ?3Q~ukM}?vsz`i%>=LQKqAFj|)!a4x=-Vn<)rS&VA8DKy2i@{z!qB*Mr z-)*~r1t)=A0#|oe5EysRC622~9<4x$gx40xm1z8DJTw1egXj$fW{Ka5awkt_U$q~x z#ke)yrO`~IoOSm+>XU$q*h+dp*M{=IlF5%Yx?^M;|27$l%~Vs9A7tYI#@S~V&(|q6 zPNG`cAsQAlePojDoL>CcI=g7PjwsUV{-XAmE@{nU>GPMVzi<1%>Y`bo6K&oD96>kQNPyu8E`8Ojp zSFc0fup7m-G$*t-Uv3RzGXtZjXPW6FA|UPe#Z;qEZ4^4BV3*c&!#n? z*bup|GZ&t{9r^s)QR-et2W;@$GQhvYSNz3(&ZFxc4M6OVjH*x(%8y$~{HiOGaH+@r z&1d^+ia$=|qI_W`$2pX8bSQ&T2=p6PZgNuF2WfUZH;>W%lA%*mQyRMi^1VH7cC<@8 z*4aLHL!)4XQ0&>wMh+qWxZ%b@(~rY$LEacPr%ZZ~rF$;Vn29=yHFfvU-wzHRXEJg; zC~W$6adBpVjNp=smbH3K^a|L$k=0uzCUaDSQP_e=Wx3N>ewk?2mcp0UxCcQ@^~tvV zLr;)X7W0peWRZV#dQnrWBze1g{>8o#kx$oy8ckfqC_5uUpsv8VPvci4szLv#Ns+h1-4pMoz7Yy zv~uXF{t~ZNT%cD z`qR5`ylXrUj?P0#Al!LrhPs%jvuNuwir)@6zhK!`-$dr77L$K#TSr%nFm~q*Eigrn zrQUnW3o~EIx_?4un{$Z$V)P$rhM%FgCR@$wagROB^%oubGSLIZKQj>pgpROI3Ja|{ zAQQ<;Jn#$lOn<-(a<~}e&t1w(^7`$(SJmoBdLv9&m(3~hpku@t#{&vn@gd6L2btBS z^6L;Ge5HdBf8Db$MEwznpt2-Uf7qMfikd38s__kf?sa|o%WMAkJqYgm6sF|=wP{%F zlrLb*0{+#q;isj|PBeY`v#@zsxES&7(aW53I_Lscm%}%n)G^DAK!)y}?~as~0qEs^ zM0KY*P~2MgsE$8V$A6qfP8p@~GTosXc`Ik z(|%$CA|dVDY&ZA|e$*Oz=v+(ccjLVI@M6k$=cqS9(DWvl&qmN`p+0_u6AwugBs#Eo zmo0j|-MG}{(M+Dzyv1>et*(}N=dV8c53wkw4*fsz+N>GOq zwHqjp>5+BaNlA4*#OCnQts=XioI*tn6uJ%nHvLky`uFp3rbv%;S=TV7qG|wWwi{sR z3S1?67eRKkxw0k6=RG#ISoE^-b7rAhR&oB|4K`NwN0?ASeS86wrF8 zmWu*gEEPXk5qdl6N+nHA{&vlzk!h9Qdl`ueNj$g|$(1PLAl&i;t<7Bh67R4PJ+&>K zca~?CGgqaZei<3wJz~fUQ(iFr@i3BD8DvVdLq=a^rx3<6zs`(7Kw5&#)tg2m8yya| zn)+?gBpumdWh?vyC*GtiCcK1D3a>a0aZ^D$YdcZ#>Ox?uq235_KukMH&74JDL z8G35jRZQEtFHu+C8_YsjG==dOJ^+vs$Zqu%RyA3ugQoshakjV+3Y8DB^>S(Y}w zZ!6cjKcDs0T1w%Pg*1RLq%BV%o)vCCf|gnUz6nO!iDf;TJoIsuE-GxJy+~JisJbc* zy!JeVut%<<0H?cM%Hx;Yw4~Q7jX@^UF$L6-{I; z`uD(UE0~!yN7V)?(4rrql|!P)6`k+nLq?~&#^SyPtmT^ex?%gjJa5DPh>6>eF(mb1 zYBLQz7^89SZRdPd075HJ5dgt6hhLv~CH@Y57R5I2df$Hf@iT(XRYM@KqO!i5nUTwu zxoEPhvc0Mo^^k8`c#N+!(zDOxd8qLg8?nWfoJSl}rOcV|OPNnWWnZ2y^!p<3nfRfM z7wd?jq2lktkK+ZK(Iusi`;dxB%w9H5Jwy~vP7bsr0aoq!`w1e$=+b zqg$#aQ4H%zDZUecSyL{F`hE*8weS|R)ZqoVIW1VOhIirvN{`W|(u3-3uTrsNEa2Hz zWc0Kx@bpk(EV*}S`F$Dc1Iv!|%8q0#EsggC_UJiHYnn;vcl34WA|V>ae^YHI z;EP?}kHWH%0042=TXc5omE*`U&@T_eM*wx84LCSN%+l}0Y`wfUmz1xD=!et@&`AMh zPxx-|mvoL;8WS8St0S_#@{1ZC6xw|=(`N17Wxrqo@JW5a zfpgd}8n3pqP9NjY-|_wlnh3qBh7E~ojiRp^Dx;8e!|ysfO`VMU{KG} z)k9wiv_Je9IRYJEUrkRCplF3uBFtP4l(jgJ$B8?A52xKy0D=NOUMW;DSRl7|46wZt6K^r-0Xvw zqb~Mku==zVsSX-h(c?#Id-c_GTY*3h_2i*S(-;BEo-Ds~FwmG7xl|8yj6pSEXJ{Dv zK*ygs>ZP#L8+RbifiY4#pi{mnj>+eTogv1sa;hcXm|X#@y-8WaH{6m{9lK>xwhusd z4Q}U(;IFA7G$0;G7{phA&UE$&;e%wg?SJ@bg{s?}Lro>Tjp(dhPgz}iQc^(jirift z{|i*MHX!VR%gVjU^R~Y9&!^VywR|FaY5{Q;U#$8`6TKxAQ3Hv=){~XG{dCfyMa)+m zczbaaLknJA^@tHjUZ*RZ-w6jN^kx#YweOAk{)pHh4h;NJ!p0{=!yrU~d+YW0xw>@ zcH#K+GGKFPQk5^T@UCH>O3U%kY6e@M8*7?gV^sr_Y%(L4etu4)YyVNpueT0l{gFdq zfh4~hPAA%ky)TYQ-Rr-y>9WsRE68}RY6cLwKb9DG@GKSZ-J~anzRft*H%SrMR5)Sz zgABfW^9zEENybP3`_~`!D&eo6vJ3#OE&-{OYrllX8$68|R+-SeZN)SI!c5Ispa$hC z5oCRa=%VE_SQ2};*0r`X7n9eViTnU&7?MW?Z&1_A;5RgU<{f`=6B={+5Pyhc~^g)03rVy${y&5skl0~~8o6TEfGJVi=aox)k3?6kLv;{amR$BqU%;!wX zCgm>8a2`-Skyx42;TqpF=Q1)*S5QcbHTy|Uhtlii=A31W@Rub~Q*K*n{CQ_5%13Sp zq;E7o`&N;)Rd7xrUbBorzBBr6cI3vk&cNHN4;`yy-S9kTzPBdPvE-8U{CQKNx2fwA zbbgM(dct=DR_?9?v^-ikv*;@u;HtDMpCoSkH)vyii$eFp*gFDGo!!v+WyCZaRjzvY zAP?`Hf%}-PzwBkceL3NG*tVe4Z3b!cC?V0?6UB+>Uss!DcBTSAsvi3<356-pTo_HN zHg?SSrzxuk%x>2(S7|nyjPR*WhmDb1vTQS4`8*^DXgA@cU)cnl9)0X?;qUZ0M2tyn zr!l!1N@U=kx|pPJ+mCt&ySQD~++E4kP{5Z}%v)G*2&$MPc1IEWO(eYwW1XZ;M+%M! zjfb<(fSF7F_I|mH!C*H#+N2oVrX3Solzac)n#{(=M*Oh-eDDZ~Bqb(g>3D2Au*M+m zto{K@H?OlKDi|3FI7_DLi;3!HL|+Gd%=;C96y=OHKK;^4&cbj>G?@Sxbbe33@xg&V zpEePAiy<2Qu4=#m=T1tkTI!mZSV6HJ-yXg?Phymhj}POD2wAY}$7ZD7os((Z^nwu! zjwq_4+7}{kW=i*hv0a)Q-B#+>!$%>?7TS!$P<}x_m!u~?J^;@R zrBlLKG%OXE*`d-4;w%ohLt_bvrvtCYkV|yGxQuruh3$U|cW$}sB zZ#Miy@<@S_<0CVyI+3$zln7q<_}CJw`boT}OxlZ8n(poCQH3|t%g~r_i!NGlWor+I zWCE4{5s!m>Ly5ZYid2}!BpDW(4i8em5jbfplrf|m5 zv%;XWrt!-4aI^Lx%a$#spWs-+pT=nS>-|kL-h5xb&-uPY@Vc_Crp78g1#BxtjKYSpBu<@)JTn%W2dHIh-^Jw~yzFj3v94afy@&-?xswax~U2T=mEzuX|9k zj(n5&{;*;a`)cPMSfLX5ZY1!(FAva<8h;Ta5Gcx#TqgJnf6qzek>{{7|Rmt)@8s>_DTS9OU zq`g34cJdkh{QYC@S~dtfc|1Y74}VIPyWirDzy4X>*_lYqBYp$#GYPDBv4^E;203RiHV0l48WS*S4EU{_r8ali=Gb3%UHCT_5l3iTmQbEFgH(J`#JTU6$(y zUi~_PfNdaN3odSrwRxNnPr1zap>j$s~v3y6_h|aYRUeC`L9ycb&p(4^#Bl&dKA#9^Et%}rD$)L6PyT8 z>~rva0VgEP&PM;cS{6C2l*8(q_SVVqU%e2J!AnyB;)=is5UW7A>N+(7x6HZv0K1B; zf?k+BR0(YYDhD8pZUsz}Zv5tuyXP6_?O_gZ${fAC9L&fJ(en|a`~FduPm`$vKV}ny z{dp!bk{wu81Xh&fy&L%s>!6gByI2xwc(2@c!dMl^)c`B{dwjZOCj17-oRn-KNQ#ab z&KMs`O8woowqxa!%&O)=cG1@v+lvrpKALqFpf22lTK{4IA|DfKHVfu%`z3dELaJ15@pDmxhJ)iLx4`OoUi|Puyfb zM6C{+3&X|nUfoqFc7Q3F7yP_d-ypmSrD^?dTH_7x~naHvFLHowTW z7o(APMeC46(p9HQo3++aE6wd=fBHY~I zgI!IyYqNjiDdU1Mp>2CxeU+)dKhdZ77a6_86DbJ^cC+ql<;x^3TO?qV9qm_?gfe(Q zQ(K^O?chM84JdYYuT8Pj?kviM_p1i;yir0q<>KCR#F1&zVUvUoOZGPY zbjoUJ?elob_PNe;=BAVu_`%}mI;{20X6*4yg)?Coy7!f8toCGhxjhyH$IGT~798L8 zW(9fnjzMh%R5~)CAY=QW_+6SHR{hjLzs#y8Qm~}YT+}~FtTsyP@k|3& zaJdY6L(WEgu;?DNNK65^!~{`J*Eik81pwYm9zN?aQ>VdK8=v57cj+C(7@tjW)b-;# zls5>mVb#O=jFP&l0%KEdsHBaEfxxdI+yH^fS~Pq5rz-u zPdaik9)4sW7n)mTjmGI+xmQNb3KwVa{3o+AS`oJU*Ax+htRFso4lQEMO$1{7j_emE z=b!wiMS}GX@84IyGC8GMlDLr#MANO*)U=`dgBXJ$m^k6i!O%mwYQ6msvV$ue#Cw6=)9mMuy*XiRj#}BLTgZV}kFF4VVPj zBTCK@w3n*Zd_E(fgjr=Q*cq;ay8fQ;vf0b@^@s)4XoO4pvyd0Pb6P zLITOzOptsm$exl4Vsjny7-Ih&Ny5`kg*uBuZpYjOamHl``78DFq?jrHbiGUOiri8wg)N$d}9zsVK)wpZYH$x;&NE0#Pk7*MDsm ztm69rR=W!fkKp`Y9eY5MG-m9lUy^4ddRdHFdx?pwelm(W^TG7n&9~7yU$dp)`1wx5nS%>$*b# z)s>yf>TS&T9bsJd$`mwy>wIJ;JKf3hi0z9)i|Rid-iV34%iMomHZ#=cvjM-2`IyIs zkk4Ty&~zrR;6W+NisVZYMDWz~tvPnQ5koLx$xgy*L&d?Mn+uA;r$*1nga4)^DRjDY zeW&0RCNQ0k0g_`U+F{H?U)g?z(XE)d0^A-SVudZivqjdHpWr}B9S@8b{UWAKqBnF| zlC!raGoZZ8{)9uvT!FiMmsIZnd8Zg|Nq;bNNlNgVAJyDy*v`%H{7yM4tM6cPo@R9` zT*y22y!x=R0put+&>^Ttm5M=Nny>4Wr zAOOG9Q9H1fiC9Uf3C!Dge^3X#2bA(k*8>;dbJU;t4|0^?kcX_8j`lb|PZv@Nx(cOm zTn^wq*;zy?3miq2w`A5k$~8*xH-h-fyd$8cyw|D)5Sny~q~_ zI~K>Tr_;G7K#r*CoXUmapEQFuo04jgV>ez4Jc%s~}_5YVS;@x#rr+4ug4-o849ypHBljb4>*>Sr*P ze`jH3*`6IQL~u8gL~HlL@H#2fDA9i_>JCFkb`AvnGn+wo&W^s@bR`)!p9E7beUq-x zn=|&SdW8@qloR&ZuCil-gXzI5YtT2QH}+`9#xQ>?we~)O0T$$){;%)rcY}782?Lhl zCnHD;>WxZZ-OchE7*I}R4=U+F$ny=q5w)X+_E@ljx%r@E&k^SVB+oi7Ftv2SJ z`*ff)m7*Z$1mW-t}JBW%~FPl*g`Zifj5E79Zn5R}}n879WzZV@&`n3N?=t z$;8-iGPG31lnx%X8hVpK;;#GFmdVA%r-4S(UD_A(?hvv=5|TwEj}|68MAHRL`zv zsqLd>QZ2x^&X3VGe9vxbz?*Q!Lj56t1TyfpWqS#llUrG}$qm8Y8P;Fe`h9BUVdX6w zg@a)Zd!j?&l~vohdKYJvQKsl`mY=DoVEA)$6O->`W=^i$bD@Q>*xuQ*54)=fnMefs zOagQUyt4$|J*$f8HZ7~Q4N9ISH&*ygF`M;XdLLbo7z{HVt+6<9tG&7gevCRbU4Q5B zenPslQ~98X^)2f=)>C(_8@JGtuciurOn$e~y;b=3&Xmi&7in~Ra6itF6g5XiGjR%T z-euIesXJoYN$5rws=&f@I%^lP*15Dn7`e~MNb z4_h(8$+At01?i9xB^O~}kYoVm;Cb97oF(M9#al8m2HxSqj4xgp{>m6ocQ9OBT#SkJ z&YbYv?U+b<>`#0gXP?7~N#?}VR$w63i+C&R<;FUSeZ%@i!~7W?)K1<Oo^6xCA15gj)W9!{cTAiq^wr+Y;wyh38m=jcxe3Oy#B-$584hP z{1}y1Zs=Qhl=HB4_0nVG;5|d;zJqL$jmAF>bg3^5pDORAf5{cTfO)l=-49}Mz~Bk( z9S8L;m~Q(T@x=BS+($AH?QPbKga!@N9Zj*yosfSIj!2YXaz9+_Wb+%ZLex);#@F6? zS>#ETs6ry1ZrZWwwX#_KCCwpEmDlx^AvJc-mt)_E(`>TmTJ+6B#cRFjQ;Czz&$kWh z4D@vZPOtJqhNjE;M5RJ&bjGFVsL+e+DY5z?a%yas!t@7*M#?8pf$cexUbhUx)Qu_Tk5ON&sy^oYs|!^jYzaB<6|lN?gDGp6|RHqioTT$O1WVz7W0i}mQmEVl_Z+`*6NZ0pMrd^ zQ?SVyIK+)xb~PN!cy!!`j-kVWy(fF3*A(Omk5aiP({=7Z_6q|z*K$%WOLlQ?3qjv> z%9^+WRvze%rgz@J2Q6EY{w{I>le0v&Jud`*S?Fs%8b73Qu^K3RG1GXUt9SD&l~hE! zzImff-@*e3&In0G>0h>cb|nD3kGuj*j}b#uY9-*)2Xo&^7B6DnQ(yS;)nb?v3ghyl&*+ z3kj3*2My)8=J!;_m*V8!1->R4S>&EPivB`NYcvxgc#2HtxRKvn(?3o$lQOO6U2j@@ zn(3u(aYGutbMHB7mEjciTW)D-1s85|08d@RJ04J+#35>$_enbl(J6@o4}a|+kF(ZH zY9uo#_L8YyTQV%%OTPzZGO@SD#0|%{j#lLy&Gq(<>RH;lUf`+De7YU}Y~wV(^>O31 zJFeAs7z46PhO z3{KBI#Ym-d>S{4CT-pu!Ckoq zveMCSvQk`0n$3-)NX>EUGMj3KS7-diVOq*>tw+;y&%Cp+|2^yOOx!pW#9+ zL2VFZ(((HJ)SCx7Roq<+pn-9X(ucy!7^LcalJP7MO;oQ9#KS^Lq}ryIw5XFuJ4iUZyKa2XONDBi3|HqA=D%<_*ZX_0Dg>mS90jXN5M25c4$uin?s@9m=HGixte=mze^}}J~yLdo>~BzQx*m(~oo$`UZ9kE{a%FJsLXDp6##er2-SXAyXIWTQTd1(IMi~B^8PCJ@edEDvJM*TrjzZc!lv;uj~No zIwpSw#bm!N`cZ$ezKi&6C(zMUQj;yyjU-UPz(gU|NiG*bN8}3L`_~KxKQ~<9!^uQy z-ofhbC65dZdhROZFTU+v7P;Jpxp{1~0XaJLJk;@0s@&a}@N@1cDYH2iKdw9WMmy#D z7OdX*y7P^FR9{M9{L4h$^5dUO`91JB!+1hFY1}TXxd>dgh``itpFiD0U^G#>_dW&t zl)ZwCvg=z7JkwvIAA{F2_7#pj+j_v^}&D|+Cs@*%o)t2a`Zj(_RTS7 z@h5<_W+`)WbL-cAbVW#brD-CeB$vjDV~?#j>K1ve*8J1;deOy1cH^v?6)SyK3tth; z7!Rjg7!R%;d$R*=92-=lPQ;eH537p#9PV*CfhA+tar)REzrLNsV7dCiX?$@obJv(& z;bLPs`e4{D0%JA*_TI2uuSh&Mn;RD!L8dD?8^M`pUZDzAo#kVOvLCuN^)vk*?Jp?e z!JJBEu6NtEq&_E0-cP-!#*2FVQ#EOSEBT%p$$n@-$?BB2gRb;mVu&PH%JXNEo}6Nx z-%e$^Eh8|};9p&IapB@C2)KCQ#j3K_0Y+0Lu=N^L62l0=%NW|X7=;Nt?nr}^UVWeI zeQwro{a%!4V31<`^lI(=?T{B?BK$VAm5U$lR=G5>``8z^vV<7&8Nj8KCTi_$4=s_- zh{8cM>7T(fQaE%~7WOKp5%>FCqC@|*4l#$>jx?pak?IE@7rxoqAJjSw{N<;5InhNb z%6qQ{HPVVUNL}olxY2b8i+~0=kCpHe&(X~v2MfMf!buq;f{gJZf zlh9fJA1gFoBo|9E$?eAaf)eXy(V2sv#bFpkzKEZE&B{`vtMdbl^~T!;R+9`~=NGrA zY`%8uglRCYj;2tl-Oqb@N+w=(RxNV<`B6IOD}|rCOeJnKkBfsT?i%%1IuP4PuSspF zn@w%Ho*jG~j3*1h2w7!t{Wrx#8|5IDR2elDShblKHqd!2 zWrUNlG~td@5?ss=tI8_mchjw_vnpl8CrVAuz=PP?N*qOfPI+4h2~Fe>oL5t1ug|he zSqbkKf8>-ZrWN8?bW=$4eLM9I2Zj1A#tA`lE2A_=N5|E}TEBip8)`>hQ>$n^s41@# zS-z#Oyk|%bVoe1}+;=WbPZI>>;~>Aag0r|)T`th6J*?dxrhs)}R-CV4avqvS=j8D~6~sMBy;{qMaYI%7%yo6H>cHHLQyn==89iEH3%(S(W+_2jZwWay}g2_U3(5K%jLg> z_P$)mc`eaarJ{*kMx_mrN2e z-F-qs-5^WTq8|Nf18>RqZ3uPDyizHt=hHHT0tY zF*B6mMx$;ln%VN!YTl=4|LNKdbOFxBZg^Cb+aEZ=@S5C64c_R)Mp>kAxs*|2Mcrbg zIr)<8S-S2i$SCZ@G~SH$YlisUzmGc|Pg&T3%t7a~6*GK*ZH8^W~B zo^}^q9^})~_vSvIDAm)z80y8QrEgVlbUReAOY;g(ox~JYvzm+CY|p+^h7bK2E9O8R zu5r&A=;*xv{P_wbH=U0+-EyPwD4tFG+S~MHcg=%0L@!C6)EYMWL?imMf|A!H3N%#R z1NzBE-*qX;JY-_r^dFEXd`)|B&J!?-+_yJh?6Rr(YS_nc%z@yZt+3d-WQ&AK&~dqf z=}Nw`thK&T{)jr<8*=AIW3LSRO3zQ6#W5bAkNyv7UmX_Z)BSzZNF$A;sHh+z(hVXg zC4zK=pn!DOBHdupA&s<1#}Wc6v2;j-ba(FVJL~s(uHWx{p7+1^x|H4fp4mHQ=FB>*WZ}F5+E{9~G%`>#My?2$ z(2Yl|rXzff;=xQUs5EwYX4&Qa1Lhx({sYrFMsL;3K6>`->Miwj5~!f4C@3sUa#zY} z0oUBzJV48SKY2q@LBTAgTexjM)C9aQ=GzVo?Q^&_NvBh4*cw5_c^V;n|6hAy4o|ty zRHPRa+};)x39{bpQED{A^JpU9P8Vju>*xrNVU7t7b|Jh%_UQLgcW?ckSc(*+f^=?f zk;|xSNVsBQZqcESI*YqEb%ZrHZ&G&k#Akc^MO!o8q+792dcA%bFzg^O%shQH z8jRz_cNo`Pk>H^2D9V)&DTLRrsAJNvIw>KSSnU-|F*hHv_FmEK;w?3%7aA>jcpY*C z0`k>aLNJ~6!mY|Y<_k^MeQBY~@ZC2!rn@I$WGx@LZmv!W6JiIPpWFWU)xGjX9fjkv z($fwc+ZK$2ySqw>na_=N7UeTPo!c$%93+(y0~KpJU7x^b)`nX_TO}PJ)qH;Cdso+@ z%O+KFT6{d!AK2J&hMP$xCEMn+5=!oC!cClgEgw-#5}=+$rF-u^GT{p^ zi{Caqi_=x6DfaWROKqL1I}y?ch<4P$s-v8o8t64?8I*?ty3DXHkbu>fA~!cz>G5OP z*=9edv;7w&tWr$mQm1UqXp~QME1xmwKRDB&!E^@E%vDryO>lfXMf5dcGAKSFA#5mL zeUU$bW(xU6vTN|)u>i217a`j_oYh2&oiXw|Gfn*VQzCZa$e5>3pR$eqXu!W$+j#uV zem&s;kGzS+n(C_Q-I^AyXV;Axg91$}^;f!^% zifDku84q5^$epM!Zk?zX1f`4+X_FVd4J#epD65hxdUMH%{)z5egw<5jwqZ9r8{Au< z(tN|p6~M~nc=%bqULcNn3Du46u~2kVWEIP?sNahyyj@dBB{iz8J-0}X!h$e~ceT9JbGm+ABkwo_G*AiB=ED|`kH=-V%_Bic1YdH*>s)6w~&r~o|-BNKZP$(hK97Lw`nPFp20snZZ zv+f;|ke(s~Zvvs^ixH6M)&kLpz9(Gv@}7@_qQm`D~4YN!Z5Y$B%`Z z;FZ9&3pnYFxkfMTFA*3Rm^rkjMV!G9S6AGhCgsN{mPRHkD~l4iwQNk?|?-^M8%a$4$c(6H?w2WWzIz z#BVDVhjIRuy=OnbmPD63OsEbaU4fW45zWnrKS_Hmppsk#x>c?yn)FZd{&0szamTLHbc6{o9-Idn0Di` zTdh*y9&SWgD4xRb$X4r7-7C|1Qhv{b57Q#rdaVZCZ~5ViGo&}tqJFvmxhUx*fc>4d zGh|V=m8e0gr(n+GI9hvOAJULOY?G1rOf1ZxWMY>2GyeW88D`Q@Kq)u!p0=o1Wm7|pshh}0%788flp{P4w#o26j> zfajx)PHq37^G{hVszwt=DQRhMjkfZ@5>V*c^_efBV75@OIqgoVz%KLZd(vE8ICb6s zrsOyNXpNNNglBFVuo#W1qwuXt4d)clHXjUzx#dY(){C{ri?s*Hs}6snZ~YxHI;=M@ z;akvolH#|m06)KJ2d$lekG9zBrS0{cI_CX<7*@57B79Fy~6}9us;i*(% zrxD$&k*I&AvoeY*E(Rb^zp%LYweVo%)qqx0ik+R}bCSY5-Kbx#!HmP5R#jP0aVO>yb?H$3RsXEf#?8 zFfRdZ2+FPhII&R`)@`f4@o7u%7Rl~v$OkS3Le~va2=j-RnXe_A&Q93BlRuX8^Skv6 zpK}Phl=RaYNEmF_4znMf+1(#5`qKS(MxI%536^DPiZ`)VXga#0~Hy_uy^g9{I%9>0(*7TU!!`SS^T5I)}={ z5(pAJTzL&wH1&Qq-2bU-Z8jzKnk>^q-A_viaUTo1 z-W~%%?tYU^4O(6Y@XJ|ZJnM7dLKL%}Q`Ru%T<}cmypjY{h%wIDY-4&~F>l%DqBH5^ z>9w}DIuG-iV;|gC{rnCWl9)qh^3TiQ5lAv_b#`7C61#fk=bA`TJQOwYyO@VXw?|up z6;iu(!_?fa*anNK{}0ZPm7550r|0TBV4JRS#cJU47^V_T~;Uz2$I)+c>yJ*p4>n zw)V9+iYN6uF0{N?Pm)F|U@J9g`WYkf=`Z9gYbp6HLg%}A$=nIiJOAMPxJ5BzD1oh% z5@`f-Odrn0iaw~GG&CpTkL0vC*;@oyfMzm`s9G{&9_m4n6`{Ux${K>9v) z$XeZkAINN!p-7lj)!c~R!g5K%%zAHhfoe03nSaOm2=;hT6MJZfl_7Fi^QSq*ND@X@ zXv@E@qDi0eKE=JrX1kX!f697QknnlOl4;f6Z&;pR<d{K&$cKV}^J(MB#>bm>pG&{aoniueK ztpz~`njI278V_g{N%GB+Kb7Y97W;Z2&}y?-g;u$++CaFVt43FxE^F#=ya$VK60Xw4 ze$C>BS|+avEl#)0$Uis$+NUu{E!GuX5S-3+H$AQXSC@p#lE$gx9We zgjzgl3#c?F6 zG$jb!?;8;mTi)C7)LJD(MM-byytyIqd$VX_DQ>%O6sv)s+@Iz}q?Y(Cmv*^mXo3&+FP`Skp8Fx|* zZqRl7>zo|wB(38}55KQ+Pw(Rn0lMx3g9SyZnam!IK>Utw_a~TtpZwsP%}bSH?^9VP zxE?*@)L4KlCC*zULZw5n>hIeP?uvrzc3#er%}Y-@{1J9r+|R7qnAJPN62a}kT>51h z8cbT1yquqlZxds>bfrT1bZEyv0tleJH?#uXmFy1Y)RrQGYSC|!JkQF|*eyFJ=?^Yn zyct81_qdK*SK!oCaOnP|(6#luGq_trlwm92`;M-0RCJuUbRDm;^> z(IGB7-#;Oav7Sn~n*Rl4y8qf#f8Y-;E#4?94YTE>KY6r%$ArcUhL>-VR^MWg5<#?XfiCSdl*x@b1SP++PVMs%@AaX5`_ z#2d+Yi);$9lxFHA~g1;hwfuB8*y`bmFxw zs~)?Qf4B7olfA72A(%P@{>)Pq;RUqoLdK^Ihh!JgCT|P~b20PW4hhD)xC`0?-gam> zJT@Gj7P?uqg5;3z=t?0f6`2~H!7#YiKiaLeiJ`CxsB!mjRDAOw{t8E3*i-2DH zDoxFV=z;;@mX&Ww8ejFEdsz92GIzj?mD=GJPMl^XTvXzu35Qj%Bj5F$h=s*U^>mNg zk|s>g^~HxFifJJ-3oK7CVY!d5Oi(2_fmZnT3fYcNvh4~uC4>whePe>>RBcD$0vp{L zZD;@~JGX^CP=N7Ue60bV_VKvmKc{@;aHPv}-fM#u z@cEdZb@1ZbzDYfzyVAbt(UY~BZ_|2jSq+$%P7`eIdR-dyXxp88a&cR6eKnEHy>_wf zD$BSoGHDfOfzSlag3x$2t0zffB41{OH3szZ-&U)RpX^dxCsuVCZ`z@DU5IRq-Oca*uHjTy*ZmRI=c+C$mZDG={T^5sg?_Vcxqg zcwruW*MeG`mS*%+!jLPliN@6fMn$ZeCxqCfVkOmI0V+%Jv7hx(aO;dw(FvjBI1KuN zJJa{zf9@ykwZ-0nMt@wNU9XThOdG)-7vKEL>e=@)-pSqRLH9*pjz3#CbrQr*)RtAX{@vgioM~3gFjGrQI=0=^z$h z5z+?Hj(+}8jU@5TM`%7XDgCKwqV}B`zdY$H#^x-i%HTK373WEt2T-}&om>T!xE%1- zjDDg&a4s^94gljj@Een-_vA@}+wIEN?hTh-Pu9Byz1F+=Ll0@hO|7@|?w0fE*8^s1 zr?T>Yb3vW)&3_+kkWAO>U(e-YqULf68(yV}e*aU^w1*tOfB17xb&PSVT1I|Ov*G*v z=G5{z4bTuq8O0Q8w^*^>v9Iql!CK<~5-o;iGVww?_~0L61l%}G za`Q!6ybHv(=x$QsCedIo2z5=AVfYhBl8NsK*u5jHu7FoNU(xHG&EiHcwc}#KoT*^mdyk>m3*Y5Jjs?^{QR`nz4hy5Q z7El*wZ9@jL#Rq@`Dk)jsgomCxkK37NdU4)RAHRagIk58T5&x9^*O-SCCeFyleB6dw zM~37z(PiDsWZkw}M1MVF>+(6hjYShu419VREDju;UNLlJS>hXCAE>-b^^?PuH)<^tG87-jxi`(^?wz~LW#^ycp zlTmV{lJHUYS=(sPorTv4V|~pfa{Aq0M_?2+F(`i#cQi{_$1;r!wkmUh-Jh@z;(@-D z4E7J@u;Bb8!1xe#N2immNUQ&S_lEO5gcyZ75bOD{Zx;wereaKCdYmUge*yrZI2H^I zwGqYn{;kgsfa$eUju_mH5dQl(&H$Bwa{+RNV&VtE9eZPApvJR1+Z=EcF^tU)MgwWW zQ+acg989`ZSs+K}6EmmDi5-|R){RUghM5U#LhmR6J81)uHt-@=bTQ7`7~lA;6T*N2 zu0#W9l=5(?4A~A=DPu0fq&9gI{ zz>^LTo5xr8>OBI|9PQ^(4>%C7$sNjZrtu&114`jCclu>L7O1_pPOEgJaF^Z@6j&*?dhgq zgE3v-V=x4DIC{ce2Z>bwi)LaT8L$JG4>&WrVOot6+*?CJ$o)Yy%Ku02Pt9Cr)Hu?| z74QlG;GU=o3jFTvdEatKr1igmZ+y2~ei#sH_9N1ovrPWPH7zY;Z_B<5?9=geXsLOz#Uug7mDDV)d)ycYW{th2}494t+ zUORz}p}-^m^9KL^m~BSa(8%BfG|bGLJu`mh-M~9wpD0wMpsEUiM|bgVU_Ae{U{0N9 z7@S+H``iz6E!)pr3d(5C&dx}5PK}2ZQb3(~pn~BWGpRM_jYTX_0r10$@~_cY=g6{< zQfhCsB1+j-Lz9XPUDf{)Gw%=T4-e!1fZcP=jYp#|P&J|f&49Y;)3SflYoh>?usn@U z=IaHlj8G9xo-^^-v5%;V`fpU3P$6&bmuff(1~s2`L!L0x2N+$DMWKBO@C(={*$?#y zN4gQrZrWUVJxQUUq}_a38WwK`oF>~@GnFI(Qa5d%dp7Cu(SNy|(hX@DIJ#kf2Nv+} z-UH*L1TzGy1V0{w)L5Ae0In_98@bqR1*7ivOBJ+uU>@T}W|hC<;LU$fTm1_Ymuwac zN>)^-K`!G5-q4y)HE*&TF+DFNc<6IhCw^KM+WdFm2Vu-#09J|~UYHntLm_#?E_LYk zP5h9tIm)P_ve~z;Kf%Tx;_rCQ%9^FfrzeRrea6@Od%bCl#Z2QBc|E62^+w=QhQ>bn zD^82nB>Ss)yv&$lNjtYG!61nv`ac82^~pB4^+)&+_@n)T`Oi5jT?&F=>Z~Jve?`m0 z06j9AfawCvAO_nV{jZ_BQqujm4&3E*cF{eG&)^pp^rGX|hcWHx?d~a|v)mW8HVw;9 zi5;E|@@5y0|H&*|7JFF&B3wAZOTWO7f8dJBw)6jTA%QTA$tB4Cb1UAGkbfpv3{PW1 zY=nO{D|$ILV#lrd<<@^9oD{E4{?~Gqf0a7o|9=6REf}T%td~JZCuC}B#$nd05C*R5 z_Ft&~>-ux*VOKJ-j%Gd-AD;JpYB)iV-k7V;1=^CtTT4zY4JdzG3NF_k*qVeb_A-LSkYZ=({vSSJfwe)_W9B zqPihS0cN*uwQ&;ZS8Z+T2=z(Trx=jxZwSrFS6U7g)EY9jScVI$>^c< zMfyI~)g^>P5O;!CPo5O_XNQp@FG*IH7GqdHZC`cUKDYVYzo?HhNPMt2q`u8}Tp#Gd z`{^!Vnc_C3A?YL6S9xfQ=Yo;kR+oqG8{|a_A7sxm-GpRRR7mn-neT*Z1bAb`YaPrJ zd}?{-LIe0odgSu$`6-u`x-(XKrhxIiigM%EEs1fo;esR)ELeUHbcT1h<={Hzc*dw2 zZ4**-hM(O{9xF>xPpn-uL;Qy1Wy@8PD8jBu82Up4T38&F(-faz=;)|-+r`BN(^bv|Lrv)Gn?0w? z33A)HTAuWmj!sAX11n}J`9yA3#Bw|Ik@E0UI$@x}tX0k|VBW@{*rQhE z!YLcZqnbTzXjSr1q<)`3!}@o=$CXhrE@qxs0bwSAfyD)-r|0cmT~qHv*t z$_YoyjuS&kh9lGs_S-FRJyQL)V|Y$+>g0+#M1Qi!4R*nB-H50xIt~}JsP3VwpRUD+ zM396T2&9UM;|LDaSNu}{qQYS7qO8Gw=?gj3K9hFi@c7t4JLpq660UC)8>Rjh4R%r4 zXI(V}dmsvZswxcUjJ&a{yo&UR9OXan)o81X zEBUURBGg`)aIH~7qQA+&V-J<#a2cIkFE)(QjT;*+?F2)E`UyTefVehxx5mif$>KOB zTjIFFbadRQf_M#NOaxG>s`BE#3+IcuA`e1~tSm@oxYXfg%V3?r?nJYE!R@=xd}kHm zqEGnr8rb7?}|KJPr{^k6v7Vj<9 zOvVjd5=I{56G7a}>bb1DsG+@`DYRf5Hv!amvL^(_Xd#aS8q4Q&3J!w}kBof&`t|Bq znMqeDX_*-a5t&>gJ!S&vHHGX5|xhP7c9ED%5H}qGwfRTArh|Q8gfZOdzxJ zK%ioMo`AV+g_Y&^my7w&CH3Ta@ZvL*8{-66H=W$pBC2dN9>Sa1>G{oZ^HiA0O{7_& zfU*p7@I8)_<58x`EJd-=#SKFvZ|4!|_;Z13))L3sKZOWS3)`#4#leZ9D-=}m%3g5EC3Xl4>vi4yERn^KGu+=MSZ`S13|`~zBjRB zP@YE}RSR&LY-!9f#Kyyphmfj%wn_abcgJCu2E7N^f8#M`jNCb0xl^voeOnkL6B(8G zYDf}1Eb~RjzBHi2T-H#I$Y0O{|JO$S?83xri^G)cV7;MRkz;k_2C8WnqLZx3N_GZe*k*KL_#Sgh&nh(wExmuU_O1e!ad~m3v`mUn(=0Yi`){ zLry`1k`67tuvhk}ncBJw?ZfKOj`^Rg_$mAIXW3UjtsXphVA{*ktza~RS$!hq1RuXsLe1@qzsW98^ag2BgM|q!5YPR1Yq{x)T!xgN zDIY!f_kFHGmVm^6i9Fof_QA<4TEiiR79YM(@Zdr7kgJOe)yCRTe%ylXthQ$(+R*z@ zxNWZBb2y_YV{>ye5H-^=0!7l03G>jhvNBJFUm?B%;C0&ZWc3q7AEtTCG+eo*0(6pOyv>#oO+-l>F$O#!`>0B_dyusg;< zV**%hO_kOb)4xY_zgk||P7x;k`SWM3$Fbd>iL>*4%(3z(?$-LMBB!0riCynoGH=Dc zjV83Utz0atwpYKN+?~oMZ_zT0j%W|FSlFE>oTliVM)#8rU=In<&@I*}vbKOqjsS}6%LME*6gJrvo5F_g`lP+y zB*ssk((*8ofLH96EDhk&DHwnbIv*LX=(Fa*OnCuNETvxMweJB{okY5I%MteP6> z&?aSIar=S=1eiGV*SWn|-vBHN^S>a)Fg8@#`5X1htkhSaI&@z zWOHIccxO6}D8sv#myKo>TH#~F`(-VbciTbH-uL%$Z07RO*9CtZ`5e1qK@Sy3oog*? zxJqDLkD}?Zq@^7mk}wdCe(a$-neoPa1!tn^`2!nRAm0jG*5eF`2rLxVxZ9iv5JaXB zJiOZY)IhL`w%E&3)SX!*7E=h@ztKEi71z*w$*S(>b{w(=W$+WqHkwv}=3h(0hyQ zy0t3Yp+A0?-QpP=>+9dksUTf8109{P^KyqA$cX_hRiiUW3dFe^;hsVamizBpmz0q}ts}8uV*_5)a$oNm5WMH`k zJ(D1H(yKxxWr?t!Z(1a=jFFL%L^(Ip<)1oApVG%fhV%ovQsCb6VYAF#Fbe5%U<;|c{%gzx27f4D=3oPq&Pd7L#x>6e(rVg0W}+) z>dM&`+G+YHM;xPd!4-l)VT4l{rKH*28ou$_RiIxK7r+Ic{Q9*w-BYrppIYk(6w?*1X~zB(H!seBKA%hB=F__6MaEf7K#9cPWik3@8IIuFLbu+^?_ z&BsM?0aa;M|BfqE^GQg2@qr*l-@-~CY8c;=lWV7>rNpzCeHyIrkp0F3CIzpgRiw+! zuL6Vp4s)jVW|<)6A*iGgpAu3uvLxan#sXCMZ7$&`=0XWd|N7Xk&H|;{DU4O!m>Ti@ zj{F}qukO#j1^E7l(No0x(bHM&-%K*sngS~Bucd#gH2XZ^{SF#k>{vD;#fF^7wk)%gQzbiV-cb{zO%UZK@uUPvns)9%6{ z=hl{pX93PpEBzd~rk<$pO%w5EAfqUD_SMC$5byyc_WDc>2%P6VJzYrf_pd#1*t)PC zZ-S-VxEw@~gR|xuFAIXCh|TmU`gYx1f(nb7Iw2U3Q9K~|<{%}4zVf4|#AnGSw#AQM zE&E9+jvt851Wj>Z($DYeziuaO9XQ2aJT1;nY1<{ zR=(LHm(Hy;`&5sxZhzT{HUMio?W+(^1_$@ZAK+!~?>>)N%vk#hd-hEPRTVn6hcKNN z0BdnA&GN&-!st7n?C9vjo12Xi0Xw`65q#9*L_cwI&8p~tSPP7;&)epAzB-scssPzuA$FL zUi^lsk04$U1Nd(QO8p!^wT)FT-6heUp$3Z1A4)Fq~-F<-%%d56O=P#lrJ zkUCm`>yM8E6k2&=Z@E!P7|=+DQ+{&`+c-dDU3$c@z|*v@7?JCYmyWiZ3uU)z<4FfO zqtQa+U!H0_59+ymwpwZcjr` zx)W%>Sg;{0xJ6$xW2D>A#@xmto-nz?AFDjk60qM;7g(zI6DF>IiufNL$H`7|jgKD0 zh(wM>mF;d--z>==mZ4BcQpUsB*qYUdXrp z#P4u@gji_O4SEq{A^L~|Xu0?bp2r$~p#!VLMI*P2@2lKeI&=tWXkYu;rS>sq?dj!ZeG64Df6S?EZMxQY;9s%$JWtg+cOUj64A79 z5+e^otz9?O7fZS)zfG_p>EET;P$@NSt9KO^j@;(Fbx0l28JemmZ9d0BB^~f;)#40+(m3~kClb``;yzlk1MoN#ABs6F&w-(o}QkW&CM(Tt>`~; zRe13tSA;A}@*p#9ZLFOI^~BcE9e(w^5A2u&;$O5TP5Ht(v6o4SGjd_nARJ4k=p@7L z5T7^$Ns3i)o2RY#Z8p|;`*`M@KOxa}SohC}UGipt_| z(ST&E?0LwTB$gaaYV2Qc=i3N4$KVjCvkM5*g}K9Sj^q{66NHe5M$(lBaFHD8MF*o8f|LIR{a3KnPq#Mp5OV#6J_O&0oFHf z-rVl4%%J;{Q_NIJ$E)zll#O=N@WyU>x1s&ruG*iPdppeNz?A)=n$&&ptqq*{ZtrSb zzCDI-K(oH_WqxLo6gz+|n-$7z(GC&x!GUn0@Gu_-;qmn^Sh(3WHIx`Y<+lKNq8l8a z0qJ;?laxnt8YnQztBkQ%-{axc={Y)`$i@$lzgV&Y+1$!Maac~_*4AE_0)G*Er>>Fa zx!~&Sue%>!b}rnLgh=ERp5O8)0Z7eir@hgQZyo5b&N>~-G8uY%CHCMKZR(@@+7~AH z{s)O%Uu*)RAB1f%x1u+r9{`CBSRwcMhqQL!su9FFKmA;}Anh(E7h0HiD)ehLkv;~C zFQrJstPq>nnLv@`d%=J_C5<2d*0-d9kr#eVM|0SJdIDXL`WY#;=}TTrAq&-K(zC?|J`4V-av6XN$( zQ|{J~fQ0c+qte_~(#6ZVdFs6S(~QhJ>Q?$T8V^}?MXYI~v9>OreBy6mC0^+XOqj`5 zJr8K&C~rEy_ckFR4or|dWq#tmFDlL8734g`(p=~D(-J`xqE@t1(enMh0)*1YKV-ac zsDhX-VEk-ji7p_+-&s)@!B)!<#^&6^?RsEm!j}iaL2mULTpz{B)RVMfo3@4)q|}pZ z9%?X)q0%_Oc6n6qnVa9Xq!9nS6RvJ2c10UZ!~6UDbuXW5Ys=NTGe5RnaH~%*72c8= z1!6du?3w1cRZkyVO-E}d;0OFbr%Qrt^$aOTfEf0#Ow({1R>Gz={N>~X&3+eu>gxC%(1?onDaeb49SFkY^}Bxk`tEm^V+UmUS^@GYR z=QVQ8v|!!sw3lf~r8yc{ZO;><58xFUb4P~}i$A*izcJ(btb`k-1=%15TI5-8D}sv}NjcN(uT~ z*fJ9eGPb{~Xg*~YHu=P5kn*Y}*fU*GDIP0VG`7nNoc@sVVS4tw-iCVV#dTo;Rf)PJ zV8uOAq5Y7^{qkikk9}ns+Qj#+T0%-vXjY@j@YwSjz;fA&0>vldbLm5XR#u_q$0fdh z{`uimC>?fR&Exp=S)zbQ}0JC<>ZNsokKU{WjIbdbe3G|1f`q-yKoAN6l(P|K-q#=km8OD z`-E!Ow@MAqe-HU#kGJ<7Do>EL+B|luqdy)U5shuBojCAZt?aWlK6f_Or3^~aR9u{^ za5=RO;p!Pp-`#ao{2u>?kJ0b>TEHChtJ@evNbY=l@QSi_gL%#ej>(e5hDs|+N zXSW1q&JLBsCV%zPgsZDOVs+p(>?sG^AaUM`;{0Q~=JjMF40m!CG6o=rtkWGj86gI!(1ysguk18|? z>fiopi~h-1H43&{Ik|KRLOwH&WBhS4VXPdWoAT_N>*Zsdr|yNzd%WbPUTZa+bm#m4}(RU?Z9m8Nx^$Xhz{T?7*P9O>;zN~J-ymP73?MulP z{_LDm$2T4;Ym4^0UJ?IG5yu*2wU0I8k^QSe5f29F6SrO#K5~rDJ3j69A-x@~;%wEp=D+E&TyV@*1h~waDhL@~V;g4!a-kp$|=>ZN?i|nz5 z+8Q*@0CZLs3pBj+TRI5kG8iTXB?6qkqqDEPUn8=^F0_4!jDL_`deI~ou*F^AIp1DdIDoD0$6PS{-VVO>KRo0Saf%Wx9 z5wQz!eODp$B$EsXqjTck&Z#AZ5>a10VY<7wU)*gV{os2*4pjvCEFgG!I$AAO98dBs zm{At|jDA~-oR%DX+bGxKa{DFvo>VbLUeuXO>3QEHN01C+ji z$xUZB#mb|nIBUrOGx$8}%RIX&T2dQZc|@@35=SsQaCqy%!8_to>fhp7o)-W{5QyEL z;jnKIifwp5`u>BXmXqoo6~%f))$&GxASZ{k!i3D%+(mW9fUmpHdlyYuj`s&WLN8C% zdw)K%Q4`9dIty)mCUt6g?VUhn$3|l;ni!F0d(0B(MyrhTbd6;7Q+oafDa6V&5p8&- zV~WvN(QzBs>%=i;0@r-nY~n-F`kxOk5X9=@tQl>~jWEtoxJ7#j61`Gdrnxv?<|&`;ktqF?~fe2P0a9cGo^uXX!hrZPkxjBj*RZf z$xob%jTP8(bn-6sCy)h>s& zc^sDD+ILiNGU>6vE1KtgVNz>oWHi5|A2pn6=ek2?hqB2(Oy3!=}8v8k|1#3v_jXhM1SH0 zy?-Q}vbkuTBU{ueLTIH))@az^bYk+_Pt+L=0yf{n{HhsbhNMomM>L&yIVLyFMOIiELHq&NCm9SP;UhLWLF&V5Ip z?{gks~xNAJG~?sTNaV|sbZCQ#>U1!RFv`h=^IP>BNe|UJfAd7da5kCN9dpv3skc}@T$aA{aDivk$b(v0^)n!*7M5Pw^R*uhC zX=-ZjZF%6|;N-OEO%`0(0zmNTsHu#N&6lB-J0*W}Z!Y&FEo^~(rM~wh3DAteX)N?C?GxC zAv{CFK~yi!>T4fq%74Pm;EUx4ZH#WTSvNhK&a8oPOGtD~N8k^zgmCMO4;i=PYor>q zG)>5c9(;TbvO04gt|&CAh4lnpcRkr{iKC(6J3X_Q;9XvPIdz90!rGkg9xD2TImpS$ zYwsANOTtq)tw>{L(BG&DHp!4$&{0p^R*oxc1N@@P!25&2#iH+i{?^?>x;<7ts)vg4TpKmoIJ z+hm=JxHsKcNzFRH$9{wci5rVp6NTOrEmqW0xf zG^1@=5D&;Sw_xK&N^}ipwyjO>xiy7JNoniII-}OHo!DZ{s6agN*RKvpHoU^y_i$$C zm21d%PBPNdRk6zB^6BnIMm^Qk4Dv^wXXl0Pu*w2#bZ+exYt_xrzLGDGBkxrKhKN$Kng9xgd<)+P3&mi-QV>zAcmBxmek=wYmz3I^km7I$$t(u8aeqzi1 zmAd06QE8EA0GZ5Q1?eMoANbq{6@&HPK>?tmi}>0rWmjNMzA>Bsp{Cjv^8F!1!P_3% z$rg9;_>JV$bXuP&{^laD#MGHEn<$6l(;I3TBBhbd0LLeK(nBxoMdbXPZ0dskqRm`r zv1iS5ulj4}Bb@pCja|Xxr7yg->nUltu^JlBacbA=)@y>bIq2`I>eOyLW=E&VqtH9& zFav>1R@Bkm8#hwrl^pq&w~cRY8k8FmKp^6;?D5H!7IX|em4yc_?PJZt`rL0DjbO7x zSSIzT+@E-iedWrVc!*Mu#*&iqw~2;BaoJR5&G;-4 z6>xvOA|xY6dlg&nhmf+>&l{B?H`rEAx_+Mg>9GueR(wKl&7N$097}SsdWUdHx4xg` zyDWEz(zqEVwmzv|w+ z7gZ-;bed$nC`|20`F61BO5vGTVIcf4jnzM%qD)Rx^MDNpH(>0#ZaPYR!Pej3FF}q# zf0nf_DXE}vQQ9*30nfp^z5d{rf`WnvY5mB(KUP)?N`^An3X5%9a-5QWAo}FA zEOD#O$+HlV^v}5$vOe|~;FAa|hv8K7aEgiN=y~ow8iB6`l4_!DuX|kPbDni)%-){+ z3KIEqGm{Mq3u%rJK!s5}koPQc#f11r+S> z-}+cGd>PO0(xj?+)$d;UM(SV!(xx`f?3A2tO7YyiOSHCTF)+Z6P`vuxPNz`orHxn= zO~!PWU;U=vJkn8%nweu}%Uzy|A%gUpFwq9<;Y`lMfd~Hm+pj%lf=1LO@wjsJR^NE%;Fa+g8_R&~%-EEWd9Kq_GwUCfm9mnxx?Got9G8oAl^tS%@4b$@_C8-l zR^F{{>~bY^-FaR_b&7@j{s9s0>pkq??6$1J4RIru9v=sG#ZF_)hevnd%{C>HI2^k6 z3Dkpq`qG?#!4x^G-}07WsKepj+`CRXBBviCSj6!>!)>yA@m4a7<>!^>==}OtYv&M9J;ngXOjNw=ZotmQKP4%cv2v*r<&z` zBKc^~8^Kz*`Wb92PG(j6@aUm@YqQJK3K7?G>OUDc`aLsW6H_Gf39b85I|i~FCo;9k zU4x7^+OFta-|_I8N+Whq@b+d*PEH;$=esf;UKnwuZEvgL__O{4D*M`1s%N8Wi^J<| zxH#bvkq`adY4u5NG4VLaTAq3hUk1*&kVDQUcjpY#`4jcx?ss7M6wZtR0E( zb-Rf+FAAmWu+8MOZ@F*Ja9#FIJ6-suesO3CLpR}Qr-bMuJI*rqXQlii$Gpa_ z{mz7y8h?V%K1NtM=|%iBt{V3{#2q=uX`H_+1XCBRHj{gFKLCp=G4XRdSRG3woZ|%X z-3>;!oSDZd*Q!Rp`mKU2i%2ay?qHemD6xAghHOQro#O%og0 z(Dm{XB_bkfjAfSgPyIz0Ewe%O43^L}?K-3yPC}~S>)U8oZ|>_dFf&6oR_AhhJn7K1 zEUVnxctYze9I~68(7ff;zP2yJz(BUgpDYlu(o_@AVbp0Kr`S)&nk`9Hw>y%Qs{5WT zOh`7BprUzb>GLs~v*ns0ogy9%^vGy41Ps2mb~$#bM=n?`3pKQkhOmU}EJVmb(+b}$ z5$Xkt2S-@`d#$_WSgP0_pUJye#@UsT`Atn9G^5G(#qw5NT8I49zT&YVTh|fm(o^fO z5n@i3OB7khMCYxSf=-EIRfPI!WcsR1-;!&KkQ!*`+aI62tlI0hSu_)>$-aC@)3fY8 zpZKhh31oP1HNZZh$qg+D^|Zh;;^*f z<>E0BzMxu-J+|}Nd(+cp-p+-d{5>g7lj-w}gCw$8ws^s_pl=BU?=+e)@z`0`$f($1 z+db3bA-W4kI`b`quT4tKTIsRJ#_C+w9ua5fJft0)?v5MlkVq~?Q`6=0N%pGyJj2ga zMT)+@4J8l!^ZDn`xWP9NO!PVISfX!`v+kUrUOl2++^&aK=B@e#6;QUdRb}nUJJeV;g|C-W*w97hGsn*t z6i*F&R)d*|$V*WuNF%?Nyd)h-6Yu-_h1zjkUzO))kasM#@ta@flHDIBlTBZu0!mN^ z8WhwGoSe~%-QboI4{|vSqI-NSn*l7F2x-+Wh|Hmw`tWcgc-ed)xh3Cu(n{!nU;xu- z=%-IiHnMCUk<=j6^qvNJJU2EgWkaq+!%qiqcmj6)p)sInm74K*AYIb?*01FmWvNa9wt zNR3Zy3ADgv2EFTfg}+;@BsFRpc+wh=Qf3|0{y7xA0@p7TbNYzx-w|_|w24!=y@99N zhvnF;p8x&ZfZ?!GJ@Vl)G^bY%dJQ0bT5k6L#yWFvN;}*LryhzTCcZ>jlSo|!Q+9M3 zn8oCFqJ-zD)NzT(Pps`ejtF36%n|hBDZfQCLP_=sd;Xg#cEhe4wx!{gUb_vy z;UM1ioa}6jDLL-_XK}`!kh%krv`P&58HOhq#3X9KWSaB;Fh6GSlTm$J*^l<6Uw#SX z?xSy*zwZv1!MH@TN))s3VEYp^i_Sh4=`Iw@Upo;w!F%P zt>E6R;5m!N?K2vSuHs0QA?W>KR$O(a5Q2FWhWoQu4^CJZc|XW!aRo@}YK5*8EfFkq z*A`v41?~lG)exHfxLHs#4=O+C)BNY_&D9DK9oLAqaJ3i#!|id|Py{2fPfcp*=;%yYL}~Fc)6_A=#Kcw? zzHti457b`VYW3Rn$_yLCp%a3cSVa8~m?%t|o6B1r-grQ-{ucS=?8bW-bJxxQsZd_Z z7zpccJ0e-oX`QhxALXx@txvrUP88eR(M)$OmC50$Ey>&8@mp)RCTD)Wz;SPsV1%)x zA76m=g`LTd>%fvfjW5IvhRXL>bU5=I(uSMQ!aqJN=_D7BLVp3&y0DHW6O*|o#zlFmOa!DQXqO?E??zajh> z^&s?m$TeV@2|L-k)KDSyYHCd$h`^GmTnKaj?G$tM>RS2v9_eR$P0GRs!>W02d4)6g z@7>mA+?pW;908I7YL7~JKE2my`zv?52n9E`84!;(lzn+#IWe~Aq#!Pmfb=#&8(*I)5CfxdaXEJC znW<)aV7JsKO__UB{+RNRhlX@Osxj%#Y6k_>mL(S+_#SQq+7vAfy8(Xd_Ih`8hzF$n z@ZJ0$Q~y5~psxBiJv~}8Y5bP>RoK|Psj9L&?pE?o)+c&pQWFBb|88(FcXaXrT0L1| zL%0tYDE<`eki$XzMGG~Xvqyv?Qn_$a$g)})D|&jpDZg^X;}Lh!ofzj;9wB)MHNCxAAQ-;Q*3aAbI&uI14bC;?sb8yfU7=`drlJ_M9<8EfnoQ zu}nXeXCP@|@W(U^2E;W!2zA7#cqlmWkNwxLx^i^+RMRkvN4YALX*dlRBgGKy(!M(r z`klKJrJ5rQff8YyDXO-h$!pd(4Q;t@G7tnf6M_UDn)NR@LO>BiL_D8|ZR8Vv8Ag^Z%sJ4_ zK2t>D&8qCjT~yXsSvChaLfB;SrV~UX~y_ z^AV4GGqz|JTwd4?FJEBBLIeTWRmg)vLyDDOXZ-s!E(X|%5;f(4{9lxR8g)i%2H^w1 z%Kt$pv6dG2KiUHS`FJqU`u}W-i$Ru*GW0+0fcuR1|JI?7IfmdrJ^ydxC}_jA{nx1f zJNZoz)#!i!{;!@h9|>eq{SUGX`u}~vIjD4?jr|{I(~ic8>X^-ASbyN#>}F3N(NW0J z>%*0V(NnEm>`O89D$%Ws5M3fA2o^Lw&ya4+-`95RLmGF`yD=H9VAK)tVL+b0eMXq(?~UVIiO2L@n*#D=7fD6p}1 zc-&waW;hdiX#MQpB(`3Dl(ZbEO>mt1d*xjPC~(FT_M5@A3JPE^b*W>^0h;%gtomkL z*c8NS2Kilz!cF<_D_SRk_VTNk%rAAG0NmsSif=xS5+Wz2p(Qs571UJYg>>XrGGbUA z(aq7qzWW}BUuN7FxmZySi$8?fI1g_9Vc*K?wC|o-SzzBCgl+1n=jv^EycbfJ(v{OS zE1h`M#s~(LQxEAtyInyE3LiN7$Owv&(zI=T#mK0mm7Pmp3DD|IPB>a=VcF0&i1F!D z?2P4G0((Bfbd|k3`uz41u3C4+9HJbhi|MgYY!VPCUp>9!hna5Qxj!Yc!%Dpb2SmYb z90*j?oGJFyj%M<4#K#1+Gcnofn{e-1IdQD|`uT!Djvqd}AHxhh#bSNw#14|i2ZLUj zCb7JnnV%k=qJF&Y4Qk-4fT@^4!Zt>Z-a_$6%zpHTg@-ZQ`2(93if3j;MS%|{Q9}z;5bJQlFd*&#muT1t{0*?J3nMy1bB2exe5x5%2bhQb+-3r z#pudKw!7jDkF+4!;I~m2)ivC^>D+?ii#n>W9(Wp3aVv@(HmdNtlU$ShqcIWs1eOx2 z|0ItMe_W)B(wuMZJ)ev+eTkyLq!^cuJ(N-VJ6qQ&G&X3vz7pow%QwESF}S0|04Bx5 z!xQz`O>kK`oU8o&<45F-sb6dgcC*FZbv^q}??*#JL$jw@Fs{YE& zeK(P(HmT}jA=%s0)3N8Ve%yGX=<3Qhzp$WbYKq@%sxcLadGqoKD{EF}Cg|+!jN|Fk zcAzt~TrF&1PwP-9qC1~zG2iAZR{Wa|r%FcACuliN4cHW|aPnpeiHO*Vwhd2Efq)l~Kv0+V0*7I6Qi$fRF7Z zhL|I5+;{(t+&!8c(n0S7VQwykki8dU1!9&R_0d_Nz->L8ajhHtl2Of_1Sv@rr4Nmx zi}s%<(JrSn{w4zt1=s(q+w{5VO9ni=*in(6*?AiJx3>iKX=zp2~**9aP9#hlIgYG~n&G(}$Vtm-3Q9Aml-89KiWOz;ssG|L$gT~}@m34wv^(YIY1F|tw$j8TNI+;371&Q_-mgAk zu(;q8(8B|j3k#WF|8;y|#>9Qr!fZ`S`cOk7iUzq(5C|5>{iHA(1@vyG;WG(EEWZZB zC7ns)j9Cdo(vQfhE;L#(y-#x!kH;K%+owmR)iTO$58Sv}nDGDAiwzt+)LW;D@R_sy zvo_$T4>y44hESRUEU2&Q>7ifR*U!MSXlC>gqvcw~uIF~2gd|aVP{|O6W+6#Vsu7yi z9XMYk0BE}8W?Ny9Btey0pFzgr-_MH-uyaCyW8KbsS@?vAwpiK!k)@X`)d-ER$V5&K z4rw3+M9yQ1`|UM)d~XP_IcN2|k&}$KwzVkG|-4#D+(iUB*s}l_k56=O%F|7pLamCR~ zMD?ubs8DxOec!TD0L8%E#NWB0E1$C|77*uq2zz<8lb9AO(~h-YYI?;Z8ixJ*dC zmIWBOHz(!w9?82Ik_&-dX+ga8yi~wtZwsUHBqq*qY%bx9$h}58pE5!cQ2$8!6oe69 zdLCvr!yLL~LQczdi?IY$y*4V5RpM8x!vWjY>W?kGKc1<1GiCI^PUy92*J9tleTyq8 z@%WW%8@gaYz9>w`DTU0M$wkrHpP3QK%E}@FjgF2+z+i0lFpEpYoXoBLX!$9sF9{)4 zqa zyuHp}vFFX6Yl}Ct7fv3vKMffAqGc8{XHQf`yEax({So`cD=mcqJxGOhX(>*e%QBji z5aqj?KS0D+1(Of?IEuZ);!jSdH?xkt&~r9%e6SA|`4>9GF}o$vuj!L=!*_gh?`-+7 z%+@!w4x%*=s)BEA`R2klfHuHOFUP>XUq(OHT1KP9*_JO8xJ_Tg<3e*NgZYzb29O{% z-rs=%%{OlX|NP+x@|BtO^;ETsZa68ashU7~3Lv)MPet?uE6XSY@K~UwmR2xN%gv() z?Z?4E*b+g-89>VgC`w5yAak)hmIJz33=Ius4=$>XuJv%|v1COY@O+|_)z-g0;R z#rVUx*|rOh-ey*I37#1uiUCYWlTRk58A*gC&5JZG>FfN}I{10>dgSejlK{&Lu7Lx- zmhGIcFblmC-H29oI3_Tb{>Gd-rv8ap-zhjFpNqc?q(yKdXbWaNpkdk)GSa%Z-wp>5}I0Np- zk05|C1^4!Lqm{?^625&~biOnoZjUEz3 z(E>iChtp$x*csWN7z!P^JvwFpOWOi0=G6cKvCn&3jxLTVs7VP6;@U;tAKn2%ot{a5(^y)^#I2ERHa;Tms%dt&OFP|A&_59|ka5eN^R0kB@*+Bo4 zcZG#?hDYxBD7#5n*X8B1*Q?(=Jx&|QeD4Zof>yNK=4fIICKf7N68fyJPq%ta`dMTR zKg~+|LYAz_ExtzKU6krKd!3$fPC+{T?MxwHXt*Jy@UnZ>k=!BK8M-grx(qX`HJTXP zlTM!VY?j(Cx;b9RL9xorsf;Va-;-Rrn9^L+xBLKb#Hq7esu5SmwE3a5Z{q7&c9Vh` z0sK`h7(%tRM{f^W7Ai_1I4A{)PmT92L!X+NEpA!)XA=;$4PE zmg$ISpvqpaJ*JnBkoM?5o$(|6iBdD4oKWlX3Q4T2v}R3bOrId%9B3R|Bd1xkC!4B(M+5lQ+YwLEZtP;S_~4Nvr`1FbOqrLph}~pZaLYn4Kc-e|2Z-IyXt)<&L{zJc^0*=ZnskoEZ>6b|_jJH}DnzmQuATa5# z=KjQe0SX4GzhFt0W{x}$tHd|$CnR#;g#qs-7(4250Bu*svU6r$t?1oX3%51dV~rDn zX2gT}#-_JZG{4y=$VF)F-$i56GcwWehVg9vu0!; z(Rk_vwjoa{P$BHW2c7PRI*wmh>+idhh>o+qmRn(nY(VRWf?pUKej3Z+xuk)xt$Di_ zEAU#{<%m#Y#u^azx>Z#X>ob?K@wo&1X*Y#=a3^OBDTHDxsSMn23y(r6+zTno(8s~^ z?xz0HMrE3jB&YVRzl@khH4huxYda9B7*7b@H&Ln0g1X9b8XP?)?}4# zZ!X~1sVHIMei-3!x^-vD*DMUJ032GecTjbT2O{xI+|H{c4m>c#R_EEn@AGLOx8$}y z?aA29PzNg|J@n>K{ZDUORwg-{DVx{M1&Me>dVxWk?#h#C9?E*bAx@oe+%sEWD$mRSMUIonf{Vd^BuL zuW4Co)B59htn_%0E;&f`l3N#&0+TCjorEQ=D;7yPiXm-vRKbqIHkET|s8v~6D1hw+ zPTwD5dl{F9$i+2NLHe1`FOBpvNc;i?p7E%Dw_NQ=h=`A;SpR!t^3%$dNbZA;)2IJn z0fqn{AMF0{h$5A_a$5l1NuAZ{ zUCf15yNxSswYAzE^>X$)1?4g`doZf>n@mLPMq@^pD>Rc{}zYbje_BXO^V{g~2 z5FvO8gh)#{8WDg(L@AAml+_pH`Mv95d=lTt95p5rOb?pnFtJAiy|DY-$G{Nl$%4#l zt$>~{)x?(GGkj90bmQHbzTGWP`(}*%zOEc%jsFGC!ukyq7(+^yw4y;6BSJ+b|RRI7tP)(vvt10gl_BLJ7}wba9-nDlua$sqWY z(jIR2ARJYvLyp#pFg#7;Sd2UoM$P)nJ#v{L<+xhv&3JLrZj%f@)|Ma;4zgic!uAAh|{ST zGw-iMw>07mmXlqj6?&Y4elezN6pa;Cx%#*QLbm&htyM+g}c6!>BA-n zmU#9EwDR7!-f6)ab0t; zTx%kmnb7k$jaRO1`Hn0P_a{yw3Zkg5@^prHigOR+2-6E8Vrp-v+;X*$L0Wj&!Rxcz z0mZBRpyI=vowPj~XtEJW(PzFdOblYVi!lT1I>|uip~FUQF)>QJe|(#ISYPE5tp1@Z z-*na5k0$!?WkD~8DxWjxP}%3t5a?>?#S6tA*-;BXO#0vK^WUuL*zS-2^W z#zs)`!}<|aFx-GK+FECVg}7{?=P9+-c~UmC7A&_PcH0U*Yw;Cczoc%vOmK$BtxlHTvZF$`jD_~g9+ zp6)eWr(pcep^e2>K5485-`h8<2bdD21z~Ydb^dlhNL#?QHUzbC6zXH~K=Zo8cw;3?L){L~T5nq3aw%;?GWORXOg`&(R&SHI#IUvkc zv9iY(QyP=3jGUY%$w(E(yC*-vQizlh<#XuX-T3T0)BRz70Pf;dJDo^Ze&+gx8rbPk zbuuvXhJfCx%5*GO3Hr)MZ*s$pZ1Qyx0!h;`5WEjo=WTs8!_Eg%h9i9zR&GwBzw4Rh zj!7q_F%KeH6TrkHg_zgpD?3NprXt7N+d&!dReMt8x8toiIR*cgrz2Kc(RRQLbOSSs zGmp_o`ig2piGcnMsBInr_pYXHpv*N7`21VL0+a}YloufrS845_LeI#wh(C7Rn?0Ii zKcl^k=YMt*nL_8ZW>bdla*=xB6tMz1yJh=Lr@@s6*lTjRQYkK5nnNwd_c1_C<-S?$ zwno(N9s$G`#b9uy)doe^orxYn_SF5>^|NZjNuPa3!B@GEx#VqMug$0n=`TU}vrQ$YK&=CZ`6^}dBQj3C%zVi5;dH4{;a-9(Do^R^b%>m76M1^&!t)UF zP*m^AgqWw9g#^ASA5-LaI`q3>@{88Bs!TQ)?PXnNMq_6Yx1K%$|?wU{5 z6=0^Lw>Ue^S1Jg{4Cb|&!nB!Nm6wQ)q%T`rAjZwbO>M{uWp3z0yth@?S-N;RF!4+E z8xF;H^NGmtoD8JMYxUP&bI7ex8nv6QO(cU;Tn-YpGIIb&9A^+5y)A&G5BsDeB|I!S ziZ{#7nNp^u1bwDfL=>OCdx$_{V#G*A_j7w#Zg0j@Tx|vJ-V7tZrA}x}aeQZ}OC{L} z5q`4M<)15baHCZYBj6q1Z$%P13%8ypz0Hbch_32j7EGcGtcO3ZIvMnn!^NmK9 z%Ii2LP60g7s;A%RoWeD>^ksB(epW*RhEpvj5z!ie(NIwC=QFqjQ%N~JucB_D&t-r1 z5aWx=Q^f!!bA_y&-b8D@cGQD7D{8?3|1>iyPF_bII919_naoY#_V{ghBMqI&1X@?Xi=*LTDB*56Ru@BCE0M_v>{!yMp&psNovGfhGWUhu8h_ilKcK?$6s@ z9>u5C2JmJoWhhXXO3qscSGMD}dwKtF9Am(tD6s9n7d<}bOG=GC#CVO%R>CBVJ|2f@ z?enYtVI`9}B4E(UeSL~Lv{INC4pV$ZuqU4?ZUMIw->7lr&dwf)u?i&aXGlDa&$!@B z@nBnKzX-C^dFSys>8e=?5s$5F!RD>U?pyHk}C0%=}&pB|9VNUnDLmauVOOYSZ~PeEJb*=o(m6=53R z8wQYY&LS*xfOu8kZ%Fu5)LgVRi=Wm{^P0kshE^JXI}a5q3*%*X%MB|I!=r&IZAc0@ zyWi8l>g@g#W04H)Z<{TB2xUfIFulbr5#4Dy8=bU%5PuET{+`gL)OWTLc%V^RZIsjP z1K?}(;5$Rur|F4Ts{M-XlVPWIM;yrwqX(jn5k%@v8hwpa)Q-=Hwf|@a_)~m@pKmlK z01Oc;Oh$6F59e%Dui-6|WYxD$ zCpqGuv*a0a&Al^=)fPu7J)I(VP0f*@-^I7`MllheW(PdbYj``Z?zDB6sIGNd-i3t$8jdPc17QGv^+lNX4 zf4gUQD(goR%)7d~nR$39;u(-$!}b;J4t(0NK@XbTEGMdGanGmV1Aq2a2|dh{=IWac zlZ^xMw)#kCOX8QRUp$2x339D#KLnx{Y6rIin%rL`WkxEzGiCc*L^JAiAn&EYK>hQD zTr&c1Bu&#wQtBrT4z{enG4A6F{19CELSAYMMIFZ08{a!m)Rib(hK-RRtobJ5f(~~!<9kaqoVNBkN0<%i)Fm*06p|4H zU?e}umEhn)9HRW`cOyGS<>vj*W=j+gZ~bwsha2DW=G*P%+mNoFA_y?|2GhKFUOI{E zf&)*a*%W#9yz%2B&)O2e zb6w!Dog<1-JQkDKtfXo5QBl-+o)1k788nTl=n2POBdVCaxFy$-f_}3ACJ{|wawE@= zOy67nIsOTfP+(^X2LwRmfC-`qzlLyh$&f_XqXX1vbQQg<`y1|u*-oJzcu-7+IZ|B@ zx9J%5rB;jGdblg?GLnh>xk1>Ei{r4cKiE#S2IjRt#-@!48i&>^g|ssOKRj~o+4A2k zf>Smt?@+A>1^={$ItDJckU=Pw0H+?>2dA2ENkd7a^Z|giQ#yEBD&DyuzZ^OL}lYxnIP4 zi|(T~5mD0;k3)>;Hzv$*yFhsO*q^yRN$*IF!UC(Ht=6c%Pu9=U3% z&u0-S`9netFe>i_f+O2idV;(cJ)h)R4UEH|$1wrFj=q*|j|x3G!K?DELlux-WqiSf z)7BR3V3nHoopk`~lk`4GS6+TvPd<-)2IZeBY!3u#sYb#d#Eg}+SCtqbYjTa<)aA#P zfhYb>wfYa=l@4MjKKK6@P6YuiEPLrUM}!6aW)og5DN~~CG=SG1jR zt!ONxw**x!$v`5kqTet^Z8|%@mf$DiK7W6*@0D`ftQA)Zo(GQt0CxQsW^K$qTk7$% z|NIZ+8#j7UmrmNrfr1&q3Y3l}Bed?9U;(jq7JoI~2QXjIIP1-J_Jl)%2?>x>Qiif8 z-Crb!Sz6Hs>8i~{;8eAU;#XK_D)NH1Wo|Q-GcOoyfdnE;DPl?koU4Dcw_)rpUor~C zImO_04({o&aLSqvJ1FK+#0T?5KAkH!i0$b698JM9{+$+W>6seY+V-Uq_aXOIsBsw% zAW+@ih1tYt6nPHW!ZpJVLzS^9oIFQ&)XOU)r-(;!_~I(unVY$@(`p6{uwp=6@(-M2 zhDO++-J@;s->NnvZOgxvplcGHrvC;HVtrnNO8w_CBY{XuK4)>*0;*BvbCcwtX^P&p zQmQ(9{T2VwC;v1Ojr*(*xuhcG6CbVDJv}IMxvw|r82z8PuJ+Y;(S-c}lm7o7-s}GbpcaGg0Rn(zXJuW$R<9Sj#xVeZ z>Yyu2*No#4CGr0TQtQEs?l{}II)I_{AGnF01uUc(+A9ub$G^ogH2Zz8T(8muYN++Lo8XQKiHcxR4fL2(W2|Z?lV&Pn{-GtP-aT-1;PQ zq*e*3Irv%Mej#0F1aklBk$Q1#_}pTgK=A z=4g|qMg36-Yudn8hxR+7n|3(rCnV+x*S4@{BM}ut>uTrC&dWIM2^t>XVR#h#$jMr+3IQaN7z>*I1fb-$(5kITE z<3G#4ra2vtQtT(G+}$8s>`^OQi|2u(q>4EAjOVJ1&CG;nW-=bmR-nd9Tu}xfqRlo6 z+39mF9`V4u(XTHjG+15;p*nKK-oQ^F@yEwbpqWH3Ut#-D~x4GQe^UC}zJ|GZ+0}tEe zduae8%;%B7DCI}nr~(S3xu(3DG%yAQ0!(IYLy#DixArYtq;P7pe>}Wyt2USEB|m;E zY!1T2Zi)@^w(oTQY*MZBeWzpZo^G*c>Hq~)eWc!WnxE0J@#o#b+o8!}Fu<3`ew<0! zd3i)9&1cNZbr-$KQr3c3KU)LCYgPVzeCHNTZ^^>!GJT||U{AchzMeV3x;mQGsiSJ1ZD#2ENX+EX z-vQ3hyT^~&I&B5B3Tz(>fjhjsmItpzIlyZBlOWO)VD#rPRf z#VO!8Q&{k(s1_87DG!Bm`?_Q2kM9zuk`gqw&`qc_$h*ml&M(r_4*X=HJt?Owq|9o8 zf$o>{ay1BB5mJalVJo#C!7Gx8C&SAk1YVMwEGqC?=f7J$Ev*a(W?*zEyZY+X&UbAH zycK+4vUqrcp#IHGa~05pavg_HbbNOzOR!yL9NV`mN(;-7dc$W0hL%nP=(uXJhz7~F z)Dfx;H=-nds`*KOP+;)@1{8@%dR_((jjE+^<@pt>@VARKA|?(Mlx$RF{-IRb(gcr; z#1}?mx7ZPO|6<_?KTXtu@HmxUfT*IPiK+I(TQV{hhq)T%#m)Z0V9BwIrLqFsEc?gm zfUKp836WJ)XpZiEy}7^m0`iu-Ol7CBDn!P-<$qz(z-_=!q?kkE*@)U3U;9RY$pG%7 zXb*Qs>USx~%LBPk7G~y00EW{=3?-LXEL~mn*t4-PIS|;M`J{}h_vyFSOc(%+E`Q=_ z>Mb@dWrcidTI@-<1!$s~xTlc9(EiPUNt3N=N91NGE zGnSGfqy7jlrjYnoOPxm%Uc6wDpn4FzhK~p3t`i>s&_WL&kH9g`A7`6<1o+3lQ~*>{ zx_+&_6F?x{cZL;=R9Lo$)1yOyQjWkj&fuA|hs5n~4UPbJ`lO7E_(JV`i{3ao{c>}Z zsFk$d&pgyANl_vGT>9l8anHlH$wKYV85soBuJ_PIl|>UTZWK`aJvu0SiDQwi_oTrc z8{vD*s%+`~=aT8T0`ohz*oNRe1!zrp400Is{(<_ensHlhd9pF#Cm6>RvZKJ17h62D zVLP5WnSrYGWqDKhw3_EFxxI8pU5P@<(Z{>>pTTgN^V}B$Iq^XV}H%ZCoha0ni ztmM7Ct2380DmA%T{+k=D%vmkTm*EaRs5|W$C@OBUwpXIX6>ZZ*f!aEj*AkaCf%NZRz6Je7ECTaCvCs&hbf>%WI}% z;|9{(TavTO7Ly2i0St|kg|Pek$U65uEmHNTT@qdp0-&}0IHmuPP0m=T__2NrRnms)LfkN6EBl$ACkUyUyVG|MyMV_YW(i2< zE-`UJhSXTGxY4s|!IwiQP5m^)01im&WIYer_4(Uy3S=FY8&H zfAay*J{S%`^2BE$y0Dw>rHszvQ{S532{MJ%D@ChIdn$=TZOCm~66$WkICdEdzP+CZ) z8Wn|lOE!&$*s+@BtRE>%9+;h7F*_Od&lD7w5)aQUYN0#YORj6NX^$D#I1-C|w14Iy z#tOX7&lC9|b7);0ArEhxTdX+OYUwHaQ-#mIAre_hnlJkuSKzEFY_ET7FmAJqp?agb z^e09}s9^Wfos1&ktsCja+}y0jqv(vA=KGU6fK^mG2jVCX(ieG~uUCxzMI(PgCMo^s zJ>v5nAdgS%a1oc^UbANE$QJ5o&9Fxdu~!@7rK_`3N(+AMPB4zB?)TyR_PWgJO`(th zT*(@ay}8Jv3(3_|R`E?}X@yNpGsHn#VG3Ax5Pyd>3;Yn|Z_ zJ0II)^0JKG1s;R{og`K5O*I#y@Gg5&o{e z8Ji3k!NI>;mP4onukB??E_^ojp~>HJ71QUou3bM`Q&_(*tZ;?;+Ov76RuQj#zL#3{ zR3V}D%rTGn;y?OnGcEZTzmW(affxa6$u~CMf)zcqGOvvXh?P7bGs4YK?Cp4}ST$#G zFt9!=yUP^}>W1ap+w=LU6FvWquU~2c0u@)|kgH%?k38)tOflRCP-InX);A(be@{C& zow05+@%nFZ%9?_l z7QaSXd9*Do%J(~K0mSqg87kLvfzSD{!8m0n4X8>S#6P$r2Yy*fz zjeo!aEg&m2-AD{ekYgWOg8`{>3U?h%0^Z|I@5qEm(g?|gPTMDz<3+G)8T?#w9T=pe z+_~dqXj6e7ud(R*Y&Q%)pryA*QQ7_xF&HFUyO+y&J;BdZJ-vAv(dFE2fS z9m>D*fjkBUi*QDX9_ONy$g0OqtSTvsea#+~?Qi^5J(6oy7r$le+uKe#>bVEOtGgQnoDD&Y74Ku)<; zdw4Ws!)sn6TkalKi@LhHeIp~`dd1yoFWf;O;Jla1hIGLG6cs(YKg*SRRRlR*l>uPw znAVk4AheuslYy5ZU4D z!?_Tl57W3&nvd0|CoQKh*^<*GI`}MPqYEqRLis2GRtD&(3gca?)#3-y&f+#vavpfSy)QjXIp%fRi#f-#k}hFumZ}l!ua20T&vQlr zWsy*09_owC1b-$5?hm6APDDLsi>?P~vs`Mshl$%m z$+ZaV0zv;~zj-dKy&1Mo4uHu3@Q3SnFdl2jnbu2rg()Kz`KlAZtIvq>0^NKj0hQl6 zGi>OeJy*S3=uH+alonN|S5nDf6gFz4Lxr5!?cQyqnw$g;=3w0T-?yAv8&rv0@6dvD zo{_c8LFx5gUh7G+K;GO@B6QcAtSX}L>`0oghp1q04bN7yZIDqUjF zJ3+B9{a4p}Q;R%8jh?#iriy-m0{8cY_kArQ==qpy9bP=|ViqbvAgG=~*#(7!u#=jK zr|b)+?19fr5)yO(=HgdjAvO^a(Im7~FMtcnqGfEFLT*qge**ixR$@X(ULIRf0|;#b z50nBjQ037&$eNatkVs$2FM!m;R7y|cX-X0H)m5?i0aUW^t?^bJ_|~Rk5whBCif$CZ zsy%RgKTrv&;sJFIVAYu0D^)5)jpot&0#2ti>S9w(JO6(3?^V#%B?C@53aNMBu{d6= z2Qe=G6tIaiNBlOfC#Df;{>0!9{c_;eseD~M=kTd>O&VwpaDF*p5EdawxPGk@-Ek{2 zpv0h3v2J9|rOiQDn+km$XYZ3~r8S7Gk{xzB~QOp@Y^z*^ak>3TpT z>}ktDQ6mB13GEMZABx)1CO13mt*~#qdoj>@vH;f$4~~P`U?4OwC}hxvKm5loYJxn{ z%|9R$f27oh0ki@(v00-)`K9LAsLh*!vRW^6vT=bro{A4#dFi#R3ivBzgF9*1KOQ(9 zfAg)zR@>xUIE?RJYQ+&o4qWYC^bsg)#F@)L0A?U-0(Ku}nst#fDE(av!a*pI2Jo%F zyE;zRT|H#26*ziqqw+}nonXqSryc>wR=hZT%(lY@ICBedc0k@ChEd$M<8WioY}^OX zJXX%wlR*hKGhhux8OtUpc*^kdYdS~HGP;@tKeZYMmjn}V^ZDU@O+#PV0-Q(%`+wB_ zRU5zPp`wT93mI!(lFp=&bORL$-fEl&5zG zbHDtk*!o>Y@@ZAY!NM3ILRYomDb*urh6lrfA?N8xCuWvbcP4amC%NJ@pdFMhS_l## zUyh&tk|CEH)hp?u(Z2gW^M@y zurz~Q0i-p+*H>)nGnR-U{QWyDX#UW*fACOR4^T7K--W2K{|=@LJq)_D*bq#*Zz;~L zs300Cg>zBU&}g2I26WRgaBn<#Ca9SBpw-5J{v$vaI1ooKxmj3HV`F36 z9A|#7OihK=*51>7%43^EtcR|z5J(Mwyt?uQpUawN^7Hc(lF-Jq4*Ki5_J$ACJv1~i z8BdV~A_~As#-=7CoA+DtCCXy0Go?nDm2=N;Uo3E`-P}vl;ol#AwK&dTbFm_7dk7r- zFp=GHPM<^f^J4ht(oj%-y`N``bD0>I6d=&m?51vU*8IfyF~V_Mtqv^9^=Eh`G~ec@)-Nfk_7jFn z?j?)Nl|V<|?XT-woeH$Kl7-OfdGB^Kc7e>u+l4&m&pIp4FTXsGh-{Adwtq2e;zP2} zs!J*MWXE51hls=|UcDNx(ejssO-_I4`T65XM7A;C5!8T|%Duv)o7v&^#HF!p_p z5`EVI10+Vgpzu5ma8)MaUvg|314}R6sVyG07QKiccfhk~(z?vE$O>3ReQ#0M^T?Ei z$@HnO_St4lcpbxYo`z%Y&4IlI=n-IZLb(7OYJ?fG^+lG_^w*~#n3{M06b1_d#Q5Pa zslWR=nzgEO_Bo8;bg38l(w}e$$hAH;OYi?o)yGNiOGVIfTlIFw(ZrD~C8JdHmqgNl zvQYf&TjcBbB*PU7*IFT_=dZ)5a87!|8<#sLbaXIpfWU(F^Crk>9Ugy*{OgE*JKc85vjB%&4ZoC(g57UqY+*4msU!|n*E1%7 zm{?_A1wY#2B}FeYjF#0bsWGj#t)^E{c%d*k9r6q@s#ok5`PGn=NFn$U*`rsFn52ni ze=j*W2|qC)HV=R}w0t>HXT!8=spRunE_-WQDbQG%Vbd})Y<*oh@^U4PavlkP-w;H# zWB7KhCVbxeo>b`TbE1a}BBNPr|jAcDKQ2bUo@!9oH- zgS!*l-Q7u$f#B{kFwAW6es_1@@80|DAImfJ^i)?@OPxA(b+A7ptTLp#Vh3X&@iL$!hWbS`I=lPu%0;HR zu&_`aBptOKGrcko=|BFxt7o}41Wo9A9m!9&yW0Guwd>C=Vjo*|j&}muqK>$)k6?}baL3Lm(Ag_D^ozBirjXL4)vEq>A!Zy6 zo^&Ta(`Dc3wP!e6)5qiQOwX&2@AjCouqB+g7v@*hYdPPeGx&IqR8-00mt0#VuXer# zhk>j+U%o}+tccOQVGJ3WjEV|O$cpjQVG{rO_#537?|WW4sTw*Q)^_*sL>IfoS~85~ zHKIJ~@F{00W359B6E&e>i2h~vSs1cxll%Gw9>3Ke-^)M8Kc~>MiMG}5u)i~0`LmW= z^cUc#i-vA*T6?^p_ZZ?uNr@s8!9; zTDi`_-4-kDNWtiRbm2Yx(6nEXOXw7(gtc!{>SdUMo80XHli9k`2{6^1cYmMe#^Vunbg+*TT@I{HL_>s`|=m%%(|Qbqp-( z6EFI{nWfcyJd7a?Vaq)~v${XPWK?}xhn=jwH8emqKfn>QTrN=QwYW@9Cn@Z%(bXca za+Y*&u-T#c?S|&Zmu1{yY{q#-nAVx0`C7Ef#HSUUaxk_#tnK=TQh}QRiq0trB*aoYn8&N5>hI$g?~T z?Z@|x8sclZYIUCste>6CO0sxOu8R^b7V=~Vz13z*yiQ@P)Eg+OHfPCgi_^4iU)SWX z4-*pBfz+r-VHqKupmiT99!Ajk-4B)KPi!`C@cDA|{A09g+F_g9Lw;qf=YW`CCmW*< z{e(?8vRZRWdPWr@1Su+)Z^W+21rb!!a#zJ}=NftG4Yzz8MLH(t`7-E_+0JVjwhv;9 zzx~k737?7&pkeD8wIY!=%e|Yu$O-AzyG0^pmaD$kNd!@k%rWOiSzM;2nbhv$wp&y( z@lLSPEoyAC5Zs~NlY-bX9Q9l38LaPXoij0)X>w=-&i2iZ2B$_Uqe>7TL_r zk@*eiDiw_R1#gWFRmzy2T`00$>SIA_<%sIhX|dlC+Q&ZR+^?j^Sr&)a4~B-hPE)^T zq3}dH9g~SXWx$9kKDM~H!0qvhSC{71^_uLe<%J80s5dLiIgi zmE1pjKKtzjRVkF%c%&V&AJFR}fWpOMluO-@Q@gtZ@oJYF5QTA755gi=bRXX9ZGIYk z_nOq*(`w@uVtu+Y*?$BlgS;!7q0ndiV#$^ehQqsgEUJo_b>BF?!!Bm5XMJCd=&zKW zD2lR3hS$nZ=|bam==$C(l;%!OnYRaG`b{&AjA7`ltKuIpHkL)@j!oqH2FW_wm~LeK z9?46hh^T2t)L#qniDZgcT$Lpevk@l95JS%nKdkwc8r=91@Zidn4dI^L@HMTtG1YTY zrb0A7M4ly%>EzpkN1n6cpS2Q+r${78uls+qf17MZv>yB!((OS+M$+Kp+u+bK@{l1X z3=3e#el`fG>jmfiHoVq5i$SSO6m|~@%M>O@?yf2ex?YryZ1sb+vrP9r$=+Zgld^ey zYHHGozdu}f_*OUkU_?o)=F@8iQc*p_g`8<)Mdp!b78ZX{S+$K%Xw5&%mrppTIlV5cjHrdSQ;o3N zOKI`8RAl|w_z@{2Ep6yL1uTq&F2cnf9C9Nu+QopEiI$#L$UherSxhY?GkGNMZ zUbHi!n5q}mXivlJ6at%L@vNNj#Gn?f862W`=+vhomt&5u%N+fB<-&{mt7)N4wC)=P zhhEM!Z+}}H%;xMl(H{8{Z+u3jIjq(W?zI^Hv~qM5@^{ttL1%GCC-rsyeHL|)NbQr~ z$0|~q18HrN;dKuY#c=b=JGo;u>Fkyl)C7b7p`2x(d7GNq#~z7?U5(MO964yn@OS!X z`fVk3Wm|X7?rX|F_09F~-c5H~gZZG)w>Wp(k5kv{3-x0JtzWTsE@1K!*2hYWORqM6Z2PYwg(Giru7iX( zSnt_nic*p1JIHc^;j=veg<`W|dD1aPFHMMzy8TI81ClG!+-VTy@oP(>-W{{s2lQ+X zvi|79FxnX1&8ih`TSu_tK=pcGCEPqX|v6Jo&r8HhwZFP8n z)RCnOv={tq!w<-jW^j^)AasRTsMY#X3C72BNXeA#*H^oWttjqV|6~)^r9i z5e7prV%3uP=exj21vyZ#$nVHcEz!x)Mw{|I-=^i%v!iDZ4E$?r*<{mX*dxfR#wzIY z_(NtxA?#N%$>`|dbluv@N()PmT#fe*i(zKr6ViSmZ?pNy_vpBncalXzyD6MtvG);IvU++4;vyA$79l0RDqXpc9yxiDaa&Q_W@E+F=E4fM)7AKrT#j+FX{kP8z0g_TJnd>}cw{K%ow|{Q=N_iMP5psRoq*4O}r+%l;f(!XL z^F_Z*jof0Y`f@`1j;d-pQ~z&G{^6XGhM(a<3=>2mcg0n3?hhKky@ym{db@Z) z4p$L|dguM`;Tz@31}qRz%KWf}&dFjQt)tU+8q-lI|LyjN;`Y{`y38X+6RX$It4-ea zi}UxHe!|U?27OM!>hTYap={Z!VYjEg$Hy1hhdk>MsrkU~D}AD+vX$uDW<;T4dmT!p zeYG9wWtsj^Rl|>`3C96UJ%MGm3ej?I3RKi`7zRMHH%q&I%DHUwzV~Fw!eufqmMuRmRU~T`aSFh~2Bmj&GL?~om z2sW?7hPC)$9A%*))8ADJUqDPlv8Do<_ew(Eo0&ZYX)RV?FTQMNgsH33{6!@^J^cRi z%S1Nv1L_%io&~MCLirG?4ng}cUEpCaFOn~Ez~z5f4F9%YSQ1}KXVqu)y&^v78Z7q? zuOWZ%RaYx4GxKF;*1e9@QcmPfHZh{9#mJOB0ysujKZ?b7z=8p2SP^4f*24rjdDp$2+R?` zYQ9284Mi7bLPRe}Mj49Z}&2vGE9vCQtJm>NwzIX49BO|s~|aXmI319E|^{^Ys&*^c@UKa+xJ+;7*0Llo4${d;xQG3(FekN~-Z z4bk%#3h3-D%kEMM!A}=tYaH|bg-<$9pm;vw-^p_nvkhGb^d>;gU64hVTwmhm-SmFn z#ODnu^1RfIV!CKrc>59C2Q@p~7QKrr_hntn>ZQF}o_FfnvlZH`dFS`| z=jsk=H%Ig1$0mBGneIE37J99iiM`*a@Yp-#f{24gUcMyhf?cx4IPanuZ+*%4?-EDs z|3;X8ukV%lK2Jg&4kDP^>QKG@fRj0IBw9ZHD&`!*Z z(V1V21rV@idW7tJ`eg_d6-*WQdS@o!6pH&49S!S)3G}1y@*S=yto1q2J@1!W5^Z@p z;b}s2a46wz&&3^Kq&Hn%|JD8>7NWD0I#ue5ARF4!jYlKPy#lRLAO+;PusEOD`H3_$ zOaI(fY`TaFz6bZT5&ZgN&0%gqOiXgnG!T#;E(tw;!Q_|rAW|S>-=vi~IGgJBIX^p- zv9@LdtD+CD&*2XQ1gI)2E9*9Ii1%w^;`XoInKHw=kIh_X*WNi2=B^w1VqpxTw9lS_ zJk1)Pe+r))j6X>+TpwzD%2p%}XfTX{?d;nkITsfoSs$>hi|QI|GBf2{g5%=OQZm1< z0NQ=Z+82AJr(l(PN4R}3(xK+jU>Y71 zCT8YVw_2|c(gq;xw8=nR+9tNE_IpMJT+$qKB2rlZVqjmRcyK(7M@#?$00sv2FJol9 zD@5Sez>xDrq=tY?SD_|71;T=5Yu#WQAnuv;%N3`+GKZF;S(6IC&K!< zgM)*%!N@V5&zjoCbu-IivDyi*cKtVRY3aLh1iLnI2(5R_O_$N{)K?3u^e2ByV=$%cI1AsRO5vW_b&igS=~ecbS5FBt|26C0&imVS z<8ysCeEw48X3V+tz;bAvf4# zt9+APz9W$>;<~@dT=0yIC-I3+q|NhY7IH+uv%I1g#>FGO_oJGak$=Eg`_Aa7RMhwH zp-D+|D*IFlQ{SPq2D-Ix-gl)2AqvBm>i5q!X#MKpu=%2r?7V9BlDzY)=3b+%iEF6S zb#dl)vElA>&hjYv?qq`16efIMrs59Sy0);l)6qQV1r`EG)RF;vwmRfc*GBQdBy+s_pzG~ggQ?B&>?-SeY;!96@*$Dcm ztGC-(1!130=ch8ze2cuU-MT!*(v?Le`{E*~nFkm9Qyl)?ocqOapj7=${8?}Gz*(d3 zV@G%7m~={%pfgdrVc`7q{Pt|>a988KF%+KN#K1=F+F0zHT&9FdJgvLs-f2)h3sRPKtE{XF zWst9f<=WbIq$)1kj-OjFHwyB6%-2^}g$zfSNn9eE>rZRN0oO#^M4`c(aXXGzmfV)e z>-;i6@nq!(X(b=uk&&yYL`t`I9T7jJJHQhsY=+#mWAM6S784`M%DU@NPZ-&B&B@J9 zDIxLr-Q*++7MOp2eZX+=0>21ng|DPnejP#4G2e+-k*4g6mId20Zx_ zrJN>Lmnu&=Qwh?6eW&?!s>(&+x;TBCeRt}y$GG9`n&Q-b_Qt7==iLej7gBfN*P|uB zdv~<~SeEu|cnyG9gil0d#UE6cCq{)2BqrlQ3@qG@jQ-Xe>O4$onP1+w@nR>t8QPjF z=r6<@eMj#nlFR#JhOb3LOHT4$$b$iU6dJ0$-_OB*Fr3)*Kd}Im3qjyPMEFB-78EGB z>oU;XP)hz#G2NGQUIZ2Or*7^BI9h-%GWY&GfSdF$$Eyn_KWn=E&$B;z^yt^-cJVDU z6VL6e6hOOSVHvr_&Z6iUci>p4o^lC!ButfNQf}jJ9re9v;oD2gxogz6jTfInqm!FL zBg}^t$St|6vTC=E^*CQaAbt|QSqHqAr&0d8AxnTc^sWTmJY;cydt`u)u225X`fBgG zTBSLVIF&vI_@+PCey%h-HcjYFf1!5r(rwPYLmUxQ_?zNb_ro}$F$vz{GL~N}6(mWH zkuh3`J~yxS@3SKB+m}RHYmjofTP>cRN`^(2TnzW^&oAmVQzU?*&@9kT^#Ls;>EFjX6tQkD zW+!3!Jx-KSS&ZUe2Tw%IZcF~Z?n4saNSp$j`N1z~+)DVrp4WH7?JI`DzaJLt<9~J+ zr+^Bzr9_&K%GH>?=2xD+{jc`PUQ#XpBH9otA&tciV~BLgX@Ixw)N`CNY|ce_siAYe zw}pvk+p?7{9siy+`bj4+5Iw-$N>((yjbRtk`g7y%aME;;T+StKn@M>sb<@&t_bZ@! zQctNp7D2;RbtLWV>_V@=wWGZE;Bv7@9xM?-LFyoeh2^Q~mYM3uZ}=05#m@znTwJZc z87xyAEXmRxSPdK>m9Y=&+#jsBp+#g?Y>8>oxl_y=1o1JH@!Ra49&K@ z@fu+pC-h!}x4nK6$#MCMl3_N2F!b}ZYJantmyF^dx}wPCbyjBph<1VZ!MNzcCHobG z><;B;Tbs*QYDDtTr>vM5Yf5ns@Y*%(a933bXPl!hi5erSA5{FHASVJ>!%*@ns&-15 zy7X?6`KUa*x{Iu1Sl9oXpCaeJRfz+AjJFQs;Qg@~Dl6nj??vda&i=hJu-NM@Z32kz zuGdW{8_?Nul95FS@u~3-np(SxQ5kIa`IB)6Vhe%+(_(*}8Kr$)B9@8{QLrtDW& zesG!PSK?dQ@fdDOLLf5|&ls@9v(_M{mB9V*6$4(2IdY*!KRYv)d9WhxaG*=<^iv)u z){k)XnBSv(+|ogl_O=ePB?QzgtSc72XKs%UvwY$^U!saaJJn4YvqpC{;K%(Qwp*{vI3g?J-zI+BdE!k@>8D zySd&KCtLPXUsfWfp*dyy~yrsEizZklcY++Qm8@hd|SkiPWIz3^Ot1TwM>zoTEY z+F?&kM7Rb~XScB3&Tt^~&RTb}_xBE6s>L#L*3h9C53)#g4y;^|u=<(LbVKI0n1DmI z9-(JDNg9x!_SvJ*IVw6GcpR>`2GQTP_{I*Cv>@WOlfDqgr~D6#c?ZNUDmtbx^o&lF zMD{(J*SI*n99Q(*G}T-M!Sc)%Cli@a{#My=y2y;H^UpNRKCZ{A1U#)6IpjkIx1Dxw z?if%HL|nP@UV*Ae(98w4k#Xj78cu%;{K;Rw+==sJzWY5Zp<`bx+_W>r7`s8PB;c#W z@~Mt|!i}oXjhz-pZZBv4p*3A1ro)2>#%luXJG%6#ib3GM?{12IACh#`WdomgEm?dk z-%ZW_n(Y@e@+_To&@isaHTn*lwz!r!(}0(#p0(B2eZ%eeRpTD66LK409;~GJg*Q?< zq^{#Bk+KtIPnx-;4bYB1*j%amsaPexn(9Wspgr9AvVJ)CrFsSZ8joQT)yRn;Ucb7B zZg##Hd6hK420^3Ae8{|Td0G`@puaCvX#dlxtg#*_mt4FPue|eDTvE6g5QBYB$oH-% z%U#4gkIn?lJ-KfRAY?p7WP5UrInts2L#Y#yG~D^M zkSLVcD?7E7T>-RvF{gI&)%*P@8`P=R)4}x(Jj%s<-NC48%c9;cbk;g!(4dLs;rZBc zBoBkc<{U@n4l?HZ_V-JSMod-U76jpqE~N%r9my;@Xwo! zh+){*x+7zVxK7@^@dwvmRkx6kI8ZJ4;GB3oCW>_=3e|9yw+%})i zABll&p7WIopoRx*qJ)gz6%tLN+c8`=Uf1OFkt+h(uVm$!d(JuAJT~<1q{UjHKF$;< z`Rg1oyr4!f$k1~I^e|G^hXPhB$j;nVULA^X<*pWwkmcQpQ(U8DVj96am7xHmBp7g4 zJFVLeJ9`W;m+fQwlL=&VrHNTk7rKZ~Dqscv6UbdlHU5?LT7#x8>*&=S55rydpi-nP z4Bc?D8NdX%;{$u-%P?922A}aexIXWeyKa7i;^lEdiC`4UO~G*Sw7soepH0xO^uP{c zr!F8%BD2X?ZC*SaS9Qw%tcCsyC>Ie#zYCM64~hy|zG1_TP0$T8ZQSZ*#CI4-jBE@4K>IzU*m+l{eIjY$**_nHIyDZc`ig~7e^yJNFNAg z{W8gWvyEXOBESvBuuB-)iR1zY@T7eCrcDnXU+_9o+i)S6HR^mOl#e+-?K+MHGm23H zJ1NwYm00^KDZ0*rAw7$*rgJ3-T&DvE`@TjUlWK@%$PwS^h_CU*Md;woOOI@x2@9fR zwLCu5*u=xW^kMsr)-Vw}J`a6?{tl134<<4_s5mhrEy4Fu(&1uPh8yO2arj z&=eNO?8nQ~HgS^Dbk2E;o1v?s#zpDtA!l;ac`2tCgX1gCt_ZonN=`;o*&L=ZIKnrP zSB%Eoqscz6k20XLBd|ggt~chIvqTGKnDUGddTayTGxog>Iu(-ENL_c7{XmWLeVNFx zRxnTe1;cGx6urFs{&3;ft*}TrCrgwYg%(HL!bTKV+cEsz#TOF*`!iK}^m>-j1Am`g z2Llp(i@U1U)8+7%6>NuDr2I`Hwd?g})DY~2RqrAg!zGzuK&&*QNqkB6Rrpq<&5m;8 zQ4&Ee575^xO7&g^W^U<0tK*5u}Af_|DeTC9>vz%H*v5GWsU#=$VMEN?gU@GU$J zmAh$`P2YrraF~Ilu^@$45D{cH6PM#%M&RQp-w;G1Q?-15kDfBKR!8<2eG$yt*BpU> zHm1{xPxqqR&)3g_k98k zL=Es{=@yr;Is!%w_P-a4mb}w)TBnY+f2qv)-Kwq7w2)Hct7)Z#_Vyr|`}UK=d^Dj` zCvq%F`>?FLlai;CU=Hy4UW=0-*kCpx52K94U%0$_Xr3TMG}VP0cjdm=`c-d7r%4ZC2I$iabF}Ma_z1Mo2d=NDnKAW1crIlPa`)R%44L-h{-j zwgj)Kj1tStyl4CK*a^BzgUC^rl*&(sguTYf$mT^b$h;}tmI9JsYUEI3i=Vb&LCDCF;a{%C|^DAK~iIt zB5L|$?lRqZ_671{{}kc_3e7D1x%?70O;d)tWoJ#9R=311)-N+&)z*=U{Sm|ZopWsL zwZKI6xzj-EY|}F{nY}afuon!4t{tIr|INdPf~>D9))%{BCEcL>m8kZYopD5|T1Ol_ z8vWw{aWln$8NhI-#z@~?#C;v@K&CHgD$IVrWP)AyvhR5WMo%p2XjblCxZX8+<&>%z z2cw*3%G=`Glm@JeoC^Z zSeRZ~VxNAIX6*Q-OEwI%F|0yly@0NNfzZ}Yzs4eC?9T>1Q|1C6u(M9&?hWd~O z22df&zGlI=u4#`Umv|)96UOe%Mc}|XFN6+_#d8Wl#>P%o^q~K)N`R9NE4Ir_r?hGt zJ6pXxl(assy#K7F_0iw&>MV86;&bI9(b+&k=wI_`LJ+2X+qPbtza7w~-L-W!7MQD( zd79q2>Ms}E{0pkV6(_$^g(qynN}E#Xr)l6%6;AW>cYpovUkq2RbZX)Yn7RZcmw(yU zZI(6M{ybuqd*w8h4+sqJSRy7TdT=>-yn%RYHXw=t0UPFOpG8KO!fcs15IDk*W;y-D z4e&`e4cOEF5CD;-peAVP0~0{tahoN)t1)Fx(fq_4HzL7fMftA4(?mU>`FwI}v~pG_Jl1C`V?Geh2ft-J{d{&pcg@?BgEbG6P{l z9d@3Km9SA@Z-&M&N^xem@)=#$?vje!8Xs#_Wj_7%>_!YRN*TgSjOM!fBu26e9YIlO z;cAPbZ3}rmpm5ew4vz|6zn4WvUpdK~$1A_St!q6XKi}}a9yuJ;Jeb%7#DW*v0dqgR zKYo3OqR1-gTCl)7db2z8PU%s1+aj^sJ1{teZ{>egwXoHfp?GNu@|eDUb8SEYWHGg- z4$q5`9!kbN28~i8QjsH5#LspvFD1ab9St!hyp z2~UJ|{=y-xe!<{=(C0z7(kE90J>j|7imf_Aw@|gl9qKg5alBy5SDHBae0E#{&=p9v zdLA^XCpoJK`kpA7(XEcd+ihLx1=`8~w1t=ETFb!w=)9b7+_msiWwfAodjCsU1EQBm zzxG<%KFtdANkmF;_Zw9g3*_X9`rS`|FG3(b9fuUFTc+Ty=6;>?ygc0w%Jsgs>t7iD zNbDx6lz{51sqifkGm+uE!eT;i4A`1>l~5}8SX?51746>7Pu1k9j0vn^sL0OCIz&yu zpS*595Wuigx%~AUqy`Zu8blB|=~}mrBn^{Mk>NueNKGIY0nK^iH!T$Q#dfy+7$4A2 z*k;im9#rC4ITbg*Jbr4pL)5or`pDV~K5==>IAV42YZm$5yz9#avim$iMa2tD(lxFa z={+o!)g!CK7yZ^)Q`s2SB=%KPr9Wm45Ifd^318Fnc5kRikHntc_F_5ZMufGH4Ezg} zaH6T(bgYz`ImAMIUM3as4{&>719v7gnneu)i5zH1r*hOP*7jAK9#KsnI2Ip-VxZY6khIa+10gdratNPKja3wdc&NdK~;59HLx`sxEGgU0kce0ea z?`bsvZ44;VbQf}qzwy{nSY(O*p>Rb@ua?QM6$M$)Od-tn-h0(1@FcISMP6p`uifY? zgWJ=3r(f22`BHKDX1MCovHfUwVq;)8*ZmLae6!PPyVt}}!;vY_<$AWqjbH={+j+oA z7bwK(S_=ht^FmnhAdL7CBdp><-vh zAshoV6b+}g#J%P9o94cWBWi}uUfNi~EcLw$&dsw*C`r*t7TsY}u+mX~Fo8J?TkGi3 zBvR4~B@M1kQrY(fS z*$2N$MRpqvT@E#urDtaNs-oAb$3!4HhH$*mOnUs31l;%x443gd9q|S?cvx9Dd z2=s7ZJj%0^FI2kY@VSDP_fa#jUBo(}$~3ALl{8JQ1!jI#cAJMEQO9GjkKwCGxy{`t zI-d(96jum$%wu9_A``l+{EPh0=yk=&Fe}G*r)5mcD0LlNo@uli=$_FroE7RzrkplJ zQ=;L9pScWM2_RRP8MjZ$#`(t9v!w*09!=^Qv68 zvNq>V;GO>X-j+A5O=p#xpj?CXUX}vZCE!IGp7HA}-k-4)~58;y^fLY#6Q@}(Zu0}t|>~h za~}jAdo@<}qgT_jK>EoyJX}5HC35wI2tqN{aDc-5aS2)Bm<5chG$S=%8mIIrMYOWo z@$ABU-2Jk+6JLR)n8OV&@^s;iV8o!!cY>YvF)#CVVTQK71 zEbO_iwIle*|It&AQtCMyI|aEjVgO<$p~T|KJZt#*Pd955?DAcWO_zt+@!K}vd`zUo zFxy|g#u6tSM=v7x1Ad}~b?m$tR|geL>W)N%e_!`qS4^0GCpuCdvC_8mdSs9B+4U+C zUMq6mjJ8ea*fZ>^FmoN(bt}}Uy7#VWYSNvfpa`guzmJb&MgVHr7Rr2tR7Eu#uS206 z0k71y*-YwO&d_LMKC5THK?w?dq_ntT`;^>{tH+KapRy%Jas{^Li%4t2N<27R9 zHwX@*6M)>J@$q4(k#C7TkgibB43jDXac!#BkRZwx0Q1ZZ`=GT*PZ)avVXngPB622##sN}3m1MK-ps0- z*>ro=bwffkc0Pn23%F%cj`rUu_My*HtOIj$o?v2Pg76hh&A81?>)xjFtE+Z`^x}Wt zXrEls`OwNSU()$_Y4UHSr#LObS`>w(rNQ}TTsLIOS}^)xvda_aBu3uHrS{<1gR?wVz-XR}3M+DBnDIU@d%d9` zd@HR-C7d|LW|B8Gq6;GEaS({Necn|t_1D+>$|fa_U~xikm*LMBS#0Sl3%3RV&$`K7 zgzCc7hgfok9YV)frNzsO#Yh+IcWXS572b)A+}IT)rhyd-^Sw_t2NSV@2UG8*#1Mx# z4rF8^{BJ4ArA4fuZN;>3cRSX_r(@bBU2!p#L3w{%^UP=J%1j_tB+)yZv9bd5{=5(? zet&uFs~ejHumqB4_q%Hs#1HwDihNSp@v!4~|B!9q!)~WUOAeW%c`gV5o5cUu(Nk&|2>Wnpj88kaNc8~dDdoh&!z2(VN_+KiIG$V7*Q?xwI4_Nc#qi&Ufs`r^?*$AvxrQt4In9 z|K;0X1Sx3kihL=HN&?5eQW5i9$9!kkc@}$W@%jyQ1h7hKUy>$D`L0&c*PjRT=>rsj zpr%$SKfQoW+_QL49(Tf>_9R^KN96g9#dONyW&atSMUBS|+yK0i>VQ|v@i|Xm81Gc3 z1KGlUK+e4|>;>uZHL2O|atuZ}a^z#W9*w;l``PXbIP0ws$=+{JV^MWpETvv72Kx!& zz_1kAOV~l3dczt+7%_6+zIs-NnV{?gqWcEAP?daDFnjkHpYHf(H&UA>lG^x5^`N~< zeHkgV?-7LFmA7(s3tFK^6V_Dn8af0wg(Sto56kUR2H3>++CJ%DLO53g)!9XDbxDy* zf6fw%a3NrgnQO0(cIaF{xxZQc&2uOs*1KWYs5;+pbWk+9<>4Iq3UkF`&Qara>a&_> zXj_aC0d#hY-34wUxq$f#E1aCNN9Xjnv**7o_AvJ#ZSeA~Rha9FHt}RhqGH`Q75@mz zUhYMl2I}tWKE;tGk!Y*XeCPcb&;EP%a!BlgWY+_OuH?fGIa~e9MwrZ+i!d3dAT6mn zJQg&3xNk2<{GER&O8)cGF0}XVFJOAPSPvXLs{3^>Fr|cixJ!gX9zHz%R8{QxtWBxY z=)>a6+KxXuH$$aJ=P(IbD}OR+3%PNR1p=-XV$QCpd%vt;>9*>%*2a4C1{qWfCi@VD z8jAEuBeiJ|!c0L|--rbl%Tlien>DQneNT2?h&24AgowZUjN=E}W_@`J?I===aWEwd zg{X#%M*<2tN+cNDlTBh{c-$P%)Tzv013mIpL@RR;(t$LOiCCof#YNusHbD0$3J!YZ%mBlP01J8c^g_Kx6IDs z4K+$MVtq4i%yowBjtsXBOJ;03*2}ADZ00yW)B(?9uZDr2&_n9-^?|muYrKQ`CagAh z#ez;wV9z%hjt?N-7U-49t?bB_BNDya*X$8;wh_rR+~iQXSs$vpNMZ|5MiIS&om)nivgUCH#SZ z4;{=HNVBKqp4cB7wi)H^>SFk%<6M#|;Loa!CzO9wbY!jw%;NK$pUi!E!GDLC6}L7& zR`m#^hT3PXcN!SJ?w8q<(fIv`O99Y|;t&+_akjAZZjuZlo*wcwHhmCYoSJg@D*sEF zEye%D0x+WnpN(aPJ3fTqN6_E5H1)2=qKORN6fFwVAL|l&Upe^2r*#yPWXQQ0=9t(+ z9c{v6DcqXaa^JpM42CMFj$~V2xI0`(2qks$8f$T48zq6Hb-jD{=%xR`X$xRH2Lt&J zp8+c&@avu>KW{8t-=0KCC6xV`S=st9WhJC{q~G(?4U~X!<2S-ZV8CY zp!D=j3eAEQYr1b(5Agow4?j+o*G6zNG+XlnatX8QmPVvNdD5jj*RpP2vDOBt+Fj_+Io;}xgZ*ju$I>X^$8j+ov z%s7%DDDYprI@mmXH1iKo1jr+d8?}gYVty>UgyL0G2czX!>;1h;n#fGrxW~5sFqdxk zd9f>=q9Yz5Kr^_D^rWM>HGs7MeW)*{`-vmrN}pj>qwqG?;5xM>Mrv&FZRY_`*7RXC zU>@=fFBm}Y&LF+G#Ada92H{l8VOjJPB@wcpf@jVpvb^1$e->Z*jQcMj8_V&WB*UoM z9!QasTaI;ln(VkP2i7)MWAV$)tXLYoQL^W?lLrp5VwP7xQh_ScrWAS*0f$~c z8zZo8_zFE#t67U${ykH3O6Q5#WmtC~zkq>ntGP?!2>M}420u9w8_#PmP}Fb+vpih$ zu+%RaX=eOU*%l!H*9@IT*%l>5?ve0#{_cPc5Up0bn0kqk7>l^a4HG%fA-T5s&WKdJ zl6PyK(v7;W`dpV^Uwq8#hiXSn4*QhDxnT{E71H}akFZ-Ot|pko^AWbKQ7CRO`D3*M z=tJ|we~Q+`8B(n4da(;&Xsy*cBL$aHQDDTUo?~+o{R3vA0a!HX`0g`==`KffHjAYM z^B-*IYB9x@MYHM+?u#qL-hrCX-&M9QDPHo#FF*fD~`W_EL#GPJ@vi+gt2 zFLyi1?yfZ4j@Q0dP|0t2BQ#SFFT^oyt{=^p@N~nU0mGy^HXfc~M=&`)35iV9AVM*x zM`iby_Cp{SW|~qlvt4IeIWr0+hXae!t6}zUhPT6y;$*|9(?Z!vO9t07${UdRXST^2 zq5_t%G-Osu<*vrEjTeK;X?``k-!!Etf?<)@B?bzC_#ELuMjzV&?He##r7g1#Y+Xg* z0xqlm^BD}EmmVin`NV<>X3h;ee)v))x-B$2et2{qqiZ};>W4WlIH~og^F`Zx)N`V! zy(yRK;(9~7o8b$euiN|bndT>kUxxAcq`=J1FF@!#o_>RXDW=zhTf9dv^iqIA%NkQe zR6z+iC=*y2Tv{vU^?fKrgQ(VXXw=F^yK~;O>S7Eu!Af_5b*t6=p$pY@m4RO8tDStS zD0r(H#+`z;HN%>*v9VqseMkC318;YWJ0r`LH4l#`fGZsEGwp6}W0X(Y3P&Iyh+tX!>M-46jP*@iLFYD*(DP zJ?TKM@1Pg*`YW3jJvhKF1NF4mDNUc)g!|^vfnlq`7?v^IIJK6soIxfR0K^9KE$a8` zMC3JvXfj`Yxy8zU{X<>XtkJGoZ2Z&vg|+3E?Opdp>)*PfEf*$|8a_pz*ncR|uex(R z-wp6{M8{|`oxa@ss7j0t6=b`jpzfAgv|;f1ace$Q$6MC7pFg!+ab0)Hxd_ZLK9r4t z;1^a@U9W&8Cc9{qG+2kUlJ(o@<2-vp@mHAmYTSoUG2I~)Pc#N)P4#2?6h+epIovdq zm1AGfY8F)imbpEK+x8QZtOt@$~_H;5*NZBy>haz z`xqr&zHPzaRTTTCYSFEug$V&-^5c_yCl$Z*BeQiH??0Dec3KW+deiE$L5!hR!wYo{ zc>jpJ;9Y(|c^IH(3w}*z-~>G1wbI|IyDbJHnXgzDC^{C*JS1)X5S4wegI1Sx$L=0 z9S|F=8u3Hv$sYy}CdMI7)!wQj#vA5hH&36ixcz&L6aok~V90mptyeM_*ERxZjA=#* zgHN2yY6TRJfK9hYz0dK1Mm2^!} zxR_N<9jle-^ne<`yymkc^*~wEcLQUbh#T?O$mTP9g3u#nAR}0e+Nwp~nk!B%2@BBO zB8F0e5qPm_D0rn2Qg6tF-!>S$b6psSpOLuHRQhHah+aojIw~OrRgLwV)pvu;2CM!m zb^YDjg8VOdTe_v>{}+houd_$u^KX4BvRY76ADEtT~+2AN!7` zonIX)e}d-Ir~|*X+1Y(J-o9)WeDek7r4=hY{8yLpiFC7Iet)Ml*?dTzrR@&}k%rX% zpQfY?I!p@M9*(i01)`T)Lw*#L3Nbb*!goE!$4YkvG>NUQ2Al+5Q+)e&(ECUGm2O4< z$du!!K!52ES>E2aZQ|Y7zTGxh-340gh1G1epsq1l{_w^8mhpQK%Lgvjs8gdNTjRV+ z|E!NX2qtopG~)Uc{np(A6_PyIQ+b@V81)R|qpf=V-n&TQ`Ve{>G83`iaadd6--s() z{F7r+d8NId7hh~m(9I*9kHV_{m6sSUq;A70%Qf4!R+IKN59U-lrl<3@h5GuBUDDTU z2d|Qb#6I7vM#)iKUtYdA+24P}aXMnlLfQDq%?njSAjzwUvaH}`Z}VqOyhpg6*;{g+ zwf#MFM(@EHmC9mFeI&jxsjHWV)B}(gay5(L(z-J}mc3+{Q9vU2G3wO*Td$F%f&wuK zYRLm}ntX9K{D_f}@#DvjOv{Q_0YC8?yg^Dr5fPD<|2}iAwVg0CGto51X=*`XX4u<0HwhdwFptT0oi4JI<{`+=e`JZYqFI@^^UuUD3Z%hVm>cl3+ z^{+9L)(pWec=7sMjK1(9oyQ#krk4YrVd08j(V*16f4~xe?25I8Wc$iZ?}Jx=(_O%- z^$Cm;dmqh3;&vvlRqqf{D)?U=Q(9J?QJjxmwJdBrju4Y=G7@g0 za8iDRPv;>l13G4fujeFZ?&>k5g_<^KW@THS$cc9J!=BfNT(OMe`;1_ZLML0|rgoRt zRRpiYu4f2X6DJS4cT^bfjV&x`-yro75F#(S!c7xhEG7}4|?v7uIjVN z1^d^}n~LA(my}4onqkrsIHnBFCs{iU>IiH38b=Ocf>Q#!L_vzeXA`0j8VqmN1=u>@ z1URW0ISsb%=%3RqkyoH5Cr*Nd@`yivGIH9?d?@Z|T=?7ZSSWgzIGmI2$^aDn)9m*L z3e;5kn2@kgPG+I8hgytwD$s6RcYQ5?0;C$!e7?Fa1r5_UXS=Xxq|%qPN~OxZl|UwO z1APOb=s=*+^t80rRiv$%83z}G&CHUZs^iou5~}J*Xk7>rLnCFOdf;G%@HK+QuquG$!gw&&7A~@BdhV3%dm&Dhd+N&RX6o-2tLWF(QFQV%!5B>SB@Z93!uDWo#(dK5VA(bC#xw&M^Ia)cj1cehNB_&vp z*sNDxd`+{bPN8KZ?Z|t8sbl?3Y5dq|6+x7Yj&UqYDwzP)_Sk1Mqof~Ud$Iwd zuYczD5cQ^^O8=)FAvivyR6sD6Z=Eh+tKhJ+ES=IYEePSUT+se-wFYKi_^N_+)Gq|) zm2~Is-2f2zGQFvZ0sOJAHwOjbZEbJcgB5fyrKQbnFj-FN=zgwy0looA1wmJHn`qtK z+}OG#Nsk3CJKueCm^(f?df9(lG!BoH%Lkx17u|S_)zpNd1MnN3AH9rP?LM2n9&GvbLmzaP9o{R?99NvS5cezj4b43C}g&JTHiKtHzoHCV#K zuU*kwR3Hx`?36&q{n%u4-~oE~1d)@S;sklh{`{qyEB2SrTT6x!mVf>Sb8j6M)z`I; z51@b|B?{6hpc2v@(n_P!A>G}QN_R_2ONf+6$50Z|EuGR`0|U(b_V{_;_kG^@{{Oo! zFPS;#%-MUNz4lu7TKhh0wdgtfWICJHdz@#jR-R-8UXzxnYP>~WMIz-8#RHMT7i4k;Dw{jI`hlh&Ul6 z5yM0Yn&rqRiDG-!rw;X527Dp1R%MICg;mPgMKmN{QsG4vcB`Q72rY*6?RvpyL?Tfr zGn__DiC)sIy6}m@vi$=)GRzf1VSpg&jbogCP$qz{5aE{As{P}O%C`CRE*tD*r?O3E z;B0n9{Kf5alB}O~1(m}QuH<~}M}NdBp%>qxze*`H01KohCx^XzzJAibxJXStC17ww zK2;h3g+gua^6~Q0F)-XZDvtrPC7&~1UR>-5`U*Qb8qtNaK7IBKl%HV*Z&rMpts?|K zl5};gE^Ck)T16?F#KZ?CW}g#lqvVx35g1sNU^Ksf4I1e><=WgepHZfJ{P;HhzAnw* zXOQK(lHYf8{eCxeIc=x*C%D{kvsE-wktzmsH$2hlL(~;WFzYh*K)UhaFfcBOLg9|X zHK2leyva#iwdm3m6T{=>Y+I&Zlt0r*4PW_~iE{3Nuw?!hbJ}P0dZE778O-iHCJFbA zDuunm4h_UVnb&gr0Erc};Xv_6aHM#rT!dl=)lVF6Sltw?2lGRD$67 z_%JeSMw{-MoVp?c|1p=+N;5hZVf4O(`H%r9{8o+etcvl#_+04Q?QTW`c54tdtSeGU z5gob_^CKrW|0a`#V4OH2z$HI1M+#7BKs|9$w^H^a;vLkCy7EKR5DWm*l)pFoXVlt5 zt{>aGc?YZhA?6ad$=LZ`{D1`^{Orv2n7T3MCTw(rRP2u+h?u@8lP8ZYcfX-gczs7~ zU(!gXM}|8Ba31p4z3D~ybvH+?`2|J;M~4vjKr%dM5$$)q9qLqg^Q1Rt$;tkRLD+Tx zNeO5kbjWW5Z*@^OV8MY_cglaso2zAWE9Wst2*%99;9h%5ULPF}kMT~A-?lm<+AR&0W2{E6eg7gnp zMcD*YQQZ-HJj0!>b!J(er?AkaP0hSqt09zDq9R0;ktVwI%`GZQxiy5^7G-X0D_4(Er8(jSA z5?RUpw&&J|hi8wAirCv;%qqPZPj*SYKH;$Z?3Zi4YD#u%w$k>P!EaBb1^^K-<1;=s z=BHJ7HnIRfUQWxdxvIj2T_0XnP%hp9R;6d*D4ZZFx?RDKeT>HBz(YD(zE5=c8$5+C z^9lw-hj@6A>wU5jTH?;tdiWjthL(e#04M|q>OU}-*dz8a2X4M-*`D`K11-Nl!j`bs zJmcWXgnr!);rW7bIMwc}X?oJ8@pkZ!0nX=Ha2UMrAXW9$r1Z>v0>1RFTqPey9$5Yr zPTRalL$UiXT(4RbEUIoFgALl%j2Bc9kYxW4lFGGtgi@iph&aM(-xNn~vsc z?F}IQAt51s@wQkQGTbE+liG_N9T2!UcLnHhH_$F z+#A=0iYy=+t0?KoF+>d0Sc0>j+SV++dzb`PcRu@!smhLXUt~Afkla<2mjqLXIT=t} z^)S^6ezKnyg)cTklkW44&TT=j>Im*dZS{3gTR}Bc(ol~vn6^e5-$=yJ*g!KmOw?y3 z@NFw6S8d)UN%3ObwRP!GhZqutQ#E?Ts9yuHI*ySx9J%VO(OX^`XT2fsCSM@GgEM(I z;4P)~{J8`uY<~G3GDRG#64><0{9l+2aX67y^PCTskg!EeUqr=xQU<) zuCy+Y2dfn@3DaAwVu*6GxP8AyutjuGP=)>QY2===$Kj==jd;PHqCR?2%>UU3{h_J) z{Ex6q>48fblcb5|6DB26J8##N)7fma!>uWjwgr;Pv+Kum-1$^BGdP1!|KvWsbX=wT zQ7mDTLrsmA<(mx2=;qrPGS=?AEa>)J3h3ZPsr%?61OS~9Km0^$GNFMtB%OYz;nXyS zx)siI&fXoB&dHG#kUBrwo)}ZJ1oT<9~cCD7a zR~HxA6%{JZH#P5w?xPP@7L|-`2%D@@5fXj?`e5EAEHh+YKOjLX^*0X;8jOMiV6IK8 zQu%x)sF);>gPyRulzIQL>uBJaQ2Sl9tix^F7#VKqc1v(8?0~a0ta}h8vm2LkZ~HNS zvx&rCUtgKk`CN=(*25DIK7d?E$q_Rrhec}csv0H?oWPV0dI0&7Z8|5Xrm8n_ zOOt$cn4guO1-}j0F%^%|*Mn_L1}hmENrzYyUb9yxZYXzc`?w)?+ z>7iI?7J^9YnK|WKR%UgXr+c#`j0rFKFa!bWQyb)x)e(XI(^C!Vok|0*p#;|z1|!*f zAtRggH8-a1|;2<971}TbQvDdQL|{n<5GS7%y^frU)Mb$Us(Om&90kH41E~|(4Y0_ zBo1jU`o6RcZ;{7vlI>^jg!Xs277L*-Np5DobCq^sh}TjL+eX!Mb`56phEa3*n>K5E z;b3S!BRYP?MEJn+quu=Jhi`39zt5wQySHr5vVPc<@=ADhyr(XuEIR#KMQMdZOuW5L z)HD>Av%S#3fP()(+{q!T>eaMa2n=F=_Xj8K+p`;rP~3BWWvDzqjX*4gW6R6M4>zte z+a;BBXFt9<0*s!&7#$Yd{c$TIFba(vhL1<`s}h^UonC&5=_LpWRHsdWkigoi{f?tl zw`zK43~B4VjTq%J%nEhJwIn4v=FwXN{r!nNxds%ELCJ&Acq<~_eeVevvdVpbL{ZOt z#*aJU_eD7CVjR0%O{HmT*U@cyBQk~OZQ`V9@`|GciL{@2SyPo5#}ryD%{G61J2x(P zITm|p$~=%iOwePhhE9unYZUYOyXUvCf4{3}Bk@i)?Tu$i*t$gU@9vdG*ed*}rD*cA zwxry-$leg~+M&4|DKW>&CwTF|j^(YAu&={!Pu4ljS3`dJs|vZlt_?sIJvmO-9YPm|)3_|Bq& zNR#8KF7BoP(Qj!8Q@p6P9nmTuBil<0T%|&cjlqok5e6H*rYMWiKfBg_uSpJhbF{`h z-|y?W(Ebt^AIx&cs$-@!h~1yXFeuXM9Cu%lcN{Q^vEI8|Y*<_}AVUNEUZ(Nu)zt@oGJ&%D3y+cMZaql?oi7~Ov962*}S^-YqI=Jd)s1Q zs?M7=Q$eE0de6CyR*g<<9c9CI^tICT@SKs!_ z-RZce#}8@sgmGaDoZ>)8jy$c!MD0bem#&2K=TFffc2P{*Q>>mlO!^lORS?GI?|&ab zHn;K?VUila=7qqxg@Ce_nx4+G%XB^@i;1GvW2icOwmX zr4~5+SH>T`;ls`5=eakbC{huuCu_@Zfd6rGm7Nc5&@?ENb4ip2iBHr<|Yf(6-S+F4E#!=wyDsSD#O6 z=LrsUnS=U%Pu+eGGA>5HAf=!{sjvT! z7Pe~7a%%R`%}7YlRg7t(-)4zJOJn}60b&+S8W)aMoa&9ki3xPY;6%QCU1^)@baCO>&-%1|VYoKQsXM?WPBfG8TLv;r2>BD*A{!PJ z(K?q)w~NfuW>N6DmCTZb<|9r&NGpb*>QoxdvAKB_#6s4Kp**I={jIH$@6`4WRR29y zwYk#j&jB5Wl@;GI(m4*=F#eHB>ITc@i=#AI!~TJe1un^xp+=nMN*$j7m}dzkmy02` zo#ls;YU-@onR(wK9i+M+(zL#?-=C)uCviaDn)@4-5Y>fs+2d@}Kn{bdMsaYiRWY5V zVQO;p7ATQn4=JJ@ATn}-k6IO#2VfH=?zKM-en->L`dKL?dAT<&2NCS@o}9C41l0Oo z5r8f2nos;d2`P|5r}3gl_K3nQ7BaUcFoFeA5FC*M*A%E4;`x-KaZpMSB%Sy^$u|F2(a*)s*Uq zrd>1){3d^URlCJP?AC;zRi~`QNl&Vj3@5vW_nIAYubA&JzQ*NT2vMFZ>}S2E_Yrj> z>K@MZ0x!@{l^Yat5I{DKyqiEzwzsxEgetAgk(fVYAY)kF;7TegD)M*vU;y={R8>{A z3pU=5sHz_j6VNDC$EljW*Q}2!UInpYiBKw(R8bi&QYAGYMosRn2m7K{@#fik__92x zQs+T-1b+S|AQE=`IqBEnpV=T6Xo57%YKN`Wsyb(JQdTHdnibBMF?qB)K`;__eUmW6 z%s^&>AUDvs8?K19gmroE~MwX3qjp}7xdm2 zBl-~W)h`i6x|h#?XtVD7nN}a~uT0s&;nWFedzJ{aY{qPC^isde>9MqM+rC7Ul>0ZL zxry*=%Hcv(ykYZoV}EjuD`EY!r(y2ksyW07{^5K5VbQ zd=)JkKiMPir6z~1=Q1?qriN`G`3`&;<%;5WUuOWW;j)Y1rW-Jyb-F_^asmdc-0S88 z=6sw~=|D6pqU6BLGTsJA4lP%DT89k-7QXO+IaoJ-c17i2G*ZeM27l|Wnn~Xu&=AO&X zgZZS|)ln^6oyJpD{Cp5K?s=In_5%eiAbLskFVFt%32%@rXP2kA|XXoDW8LUr!flvQ%g6w_3mitL(7I#?wQ za-ppXecoCXIp&yiPC-Xc|Gcq|peh1~0}!e)1EbcKJ``Tgd2Hpvx%`d0mEXCkE~ijC zD;zv}S@GUkO*Zm z-u;gQ3yjWwz*-!JXB~E?q=!JgR;agbCL?Y_?+_kR&XH^9?@&SHNIB*B8njOh$LwpUn(iNVTQDy`C=zl(N(#TSWQTQ+n@@dyk4bP1G ze;_w-HsMN{Rxl!jx41}cVtl=$sL<+cu7v)GQ$(7@x7PjV0r&0nUrEX^za>+Th+nrE zacGE#>aiwd5w{@Bna=p4-bh8ewB0%kNosG15y$zjffdotu7{_CUbItww8N z!^k$|?e9l{w?c-UvEHoeNZq?LVr1A@;W;`rwUN}UAei%#u@c)Sq~k?(k9weJcG__M zSY31Td}*+b9=9V)#^n)*V%L!QQ(RnJ{ovXn-FNppa;J7ie*eaX4DX!ryKX<=8<0nC zd`rJ1Yv&e<-NXgy|84Gl{P=OR9^>l~D_wA)MP-HFZ{d0scf2}|1{+MS0fsUmtOtiv z)NJoR*8bC=2hw-qknwC-nn>VyTMs(iUw+f@9qeX-L1wOVMNHcite1~XSWlkas*-HFmpUdf zI7?!;aSstORGH?4U|PSX7WJhN8T9q`emk&GCgMznysol`s5lq9j7hLJvpEV$-4RfwwJwg!h^}RnYV&B7v=nAy*xNXA_Z5ICv!)dJ?5> z1s4^#AsP^hx-Frxi2Fmdc)7(>rpYeA^e-qJ5zKqbK4bj~X_$Sc1+eJHd$!nYsc%mt11}Y582JV4IjNe8_bOI2 zt*Lp$`#6m)7-S@qA6B_0)VtACxsJO*Leg1N((g-K7w;{V$P315eg5A6=z2vNcdju; zOAhap3--t%yQO;odt>?oB^g=x`1l);BJK3_bg4fk#uB9sJ3BjRSXk~UDk?VRcL#~e zzj}4Iy}kWiZHcM{UB5XxM_aFF!qHL`DBSYXC11#7u({KTQ2N@; zkvk~!Po0u-A_mYi@{&4cHAi-xo?p8yBE5F05b6<>whVA`-8Rx=An#3KV_)z@5-hK= z4|6nXa9#4mXsDx+8-=3{*hQ3u4m{UI@nsd{=%TaAe#T4*ha=x_c>N$kTk0q#(%-cNhes^9Uht%c_+?eoeD#J{!1CeJG%u7dhr@#=G&BEXha~# zhXZRBEwg(Q0+TZ#JVC{FBNR5G-0Ycpp1QzE>WnAtW$uf70kX7J44QwMZs@hB(w7C7 zf9jVD=Aex)xnv=gkSaVwbsZGEI^7zxJe9Myem3}72&-@`tT%yaEa-`6&e&E_^iQJ? zBNi?Z>jb6}*45eoL~gnW@_$w`{5-@0P^5$4=ix0Epvi`o4kk&0k|PA5Fq%kEXTzt$QW{ zd}{ktI$KX}C}qy?b8fvQOgm#DEJfbh^23u&bhG%$hTqD7SXd2BgeZD;FxM5De<=37 zTo`*Q^6Sw!$sG=)SH>Q2SF)@TT+6Lv_Et(RyRtD=BJZd_R_OKY4iUYC7S}&4esaBd z7>$`8Fpv%uLisnn@71%VbBe>_J0N!A?!o{2gcvQX1{)_L|A?g1!EE)pl+-(dW({-U zJkUni*jBdQGOJ>8kaWclZao<=v1Gt`X7ksY{UaW7g9GPk+^fJRiE_N!^jgu1ko(uo z?%?J8`^~U^om&f^NspQ}D>b$oh)uI}LVVr+I1cPEr8@%H1Uv~cF*U^5lz(3>tR}b5mVv45H)JvpI0@JP(@0mMg ziR_z^zP{Bh?#$m`c8dYGze_we%{`4cF(AKX>p69Jhd9&Xy>am!qENH(eEt;t7b$Ew zq&W1S+Bt`%yCnk)fD0;s?A%37@cVDg7s>s86HR758lH|P#9)D``3-S|2TmMaLq6`Z zgW!noZOA+4qF#?vWOeG!N=#;kJ}iv!re63qwtIR)_-fySOub=%xqC*g^fzPDvMG#d z&`S@rBD9tBRrJ)wWZAns%#I$O4NubTmy~~)#LqX&wx%&&1p5918k7F#qewIO2a#X( zTufW&K`Cv@Srep>RFH>cj~p8IWCg{1An)k;dpz#l<9FP@<2WzNvp8Fliin55ednh1 zYX_Ql$laE{AKGPReI1o`wbeq&M!AHZw!d^m>ydpnEf~tE6CsDLiV>CqJi(O+D6>bl z4bL(N+GhrDe*tWJzi-@g;y#8TrL=83K3OCNBk*ZmDFoDujkEGo(c@S~@KoHBANOWKxraK=(E3zufpz?o(SLiW4RV z)}566n5kg{3zzxB4!hb0R=Ms7RCq~2_dalx2=Cv2Rh8`e1hXNAqB{>qa2S5;`|o#h za?AxA3qb%YYDdWRcve+1H3=Oh#K*^e`h*Dq8J|1$8}-h#Kt(}R`ODByY~4D76fqg| z{uH$IfndM~ahm$I_)cwQ)pb)oBkUQ5M)q}*mG2YFF-JioyVHq^Qu%~&eUMuEm6W3`B{Ar=JzmUzcgbc-%f-!YMJqZDq}cwkljO1h zpK)*8uDXYZN5{cI_~OM238xsJxRew*692Wo*bwMZ>^pZ}+!{MdiH-FK-J1!@I66ta z8^g8gxN6!W8obWX#SJ!^3HXFa_2vaoRbxF z!DD;?0U4M<)-6eMb0($I($S(W2VpuoI)}^eaEdikaV#~zIzh;=wudF2hOBoJ+!ms` z!IoNQa_wD!?$1_ZUa9G@h0K^BFy;r9jRyt>AQznux3vH3H(0%y#IF1CVSU$ppPoTf zRD`jjlG)mA_JNYy9Val>&f>u3nUIAw&x_;a>S%B+{?|R?9A5mNxBkeT{rKOS`lsRc+m_<;|K5YYhXZj&{XhM$Ufdzc zM`Qi({Y8Calf%&dAHx8Lbz}cu9q!c#H$4!^|7NXSeyagbd6K78<5M$ixUOW!O%iyN zGJ{YlPDicNYjo3rf?tmApG&9T6tledZL2Ghr>pCKoo5zKn(St9nTz~k_lqT2vLA8b8!gVSqy zMqX>)w@*ELwd%$vA`Jk?5blktXD?K{<3CZ`NP&%m_eF;gPCr5S zDtW?uNQZ8DpdBM3>6AibrtF8Yc`tH!~NdP9Whq6W2YLB2v%chHQP4f|r>p5VJPN+l8r$&Xv- z>Sv}{ry7B-iaSYJ$m@;gsR|%zy@j5M`tIU&#Arj$x0C@hz*fAz-Vnno-xpVh=I7r6 zPZct^e=?3WzTf@vBl=hAu9eDes(_nxKf?2^Jn%=A%4?USV%3f_RYgSwqOTY0g!psa zcS-GwxT1y|7@jO5hmm)){CYdh1`1x8nr^8nM2xoWJJsnS-I6iJa$PjF8Xhz?1Zdsp z>M3=&8$q!1rlA%hSOmLvrQ9@DnGPU7Gf-Y+dbq#gM)J|4gZ^oiF8CzGiD9%8eqjlN;!B%TEc>kfDP zt`4%Wg!Z3U$^^<<&^Bg27A~68DSM;NCLYZ}h*#KmbGEo80X`-r;i%NtX7ruJObiW7 z(f6gGLwYz1X!s2L`rxDfh`SYKmd(fGua%dFb0qow5W*nhsq|R@BjV@B*XDyD{t5kVy_?7o+M2BVd~YmBj2h$9G2%%{EZpMXnd z-FCBA5q$=T_>zJQKYK>_b%L|m&XNd%j|-W5n1O6*5e4%%HO1tDcubVelm0Xb%RF)U zl{J?(g$NLT*G5FgN6C?u&9kPe}^zz$*Wi@`-qLWX_b6uTe||z zflIFDZ=H|33+e(IQpX*LgP^YNnUCXU$5TP#H8_bOg4m8{WG5@~DhK}$UpB)v^E_Pd zOV24T@V(p2EM*V#Rcd#{Jk*$NKDmKIIp7R5y)_f==EV+a<;iYA%69wMsAA5?#sqd{cQ2Ms&H7Au$iq4C`=@O=68u9 zoDC(pI^SC@d%WT2!PtIH2r5nNnd`!;mp_~ z)M2v;KI2?uM}1Gga{PfCuZy9KAunp8F93Xh4c&XyID0UC^%BMD6T6SQQJ!1fLK#wl zPXIfPu@!P#QkfV1Fb}dxqN_%LK@yz*vId2i3ATO^yW)9Olpi@_3`0{gPLUchAVThF8L$oQ*bB(qvNH10&KQz`@LTC8mC zJpi4zIuk$&M^`69#`qu*Fgd4ly_%sPDc!;3^5nj>y&opFwO75`v#hOKL}_*2 zGcc7`02f(X-`Q%xsUF~Ws{52SB76!gSu>hLqu(>27OA=~wtb_*!_gs~-Q5_F%=agY z6UK|4nN*UED$q5JBcCl0Q~>4-yt4s;Jbn5UP~@^Ftbpi|fg*Yo{yCKdy`P|dy``8` zJ(tv}vpxu|&`P11>l0podozSIN8Gvr=Ml|(_qQVoGVVJN0--0Pw({o~UkMc(VsA>R zi7CRH)>y!*L4&M6I*v`w2&!08f$qd~=@d@jf9L@vCoSU1z{-kWOH3+@S=C>e{Q@+Om zBw^7rd=*ou;v+lAzHu9Q zZuPhapBmjt;MOZfDy0yd=29R2qrIn!_SRWC?i|+eXqODJvxEZ1hSYg~D_#kE|q z`@qmM>lV4ueMjBkZJh&gu4_UN>IT3Jz-`Sk-g_4oESkCPu$d_?#zmhL`g%*GrBCA) zt-E_mkdfTPVaE)&^Bc24V3kX_Bbg>gtyL>%O)7Mw6$M zTl{|8g$hybT#aZG*Gj2me)1?;-I!A-*om-iYCOD7y1jGB50EN&bOkX#jgEea|4EYW zGvZ8b>VF;w9%h>fr{hHIiI^~vA;KQh;AAKw{j(n-cw*GHanghl&tG-6yHQ76xaWxs zekn7vVk4rTz7Hf8z^L|9;^ybabP;(s`o|Lid!ocg2Qpq6 zHE8eRS^k3y@N92fmr>^1*z)nO;PYhgs5ds7`yJu}12O4EWX0ege2soc6HBwSGZW&> z`mn4lMxFD2rqn2|SBTVXY@T{XK4SoG?`cuMTveo@ zr$_m{s%qo5{cv)<|Pgl5e$ZIFw2cyQ!ZFfO?TD><*tVM#Cw zzl>gAt(dL*(LG;S7o(BJHqjgFi3tDhD8z{~D|VsXd7!4j1#tYZ&#EuXf1(e9*rbMC znO@tw623q&q=M*$in?+)NSNiL+{Y>j?vTRft3xbU(U>J4Dcfk3Hl1!B9_(cO<~&9G zrCY_6OJ4(|Pj6{O*L?6?sQKO!(PG(g-^JoK-ABYI>?anoI>zdO9nX_|3~g?cIpy7} z$jSS$61OU^dv1OW3LM}GmG{NWDgVRWLfs62e>zda&6csr9aBga5J`hBq&f-VX>tp@ z=%oeMM9*TKE-mG7F72xR)uo}f{N6?ghFS!+jLw_*D4pfzi#4gXDLUV;BSH@ZrpI

    (lhGd2{TlPrt3J?*BC**T_~0%+$lJEq%ajce*M>MybLzY+EAngnc7xKAdqF-g=Sdr^@1WKx;Y`Uds)* zE!83@`d1ks5&SeFJRZO@h&|a5q0V)Y32>o}2yJ+z4F6WI7-=xV@d%)PSu&-u9>N;7 z1)0-a5@Kd*k$QvG|6+Ri%Fw3SQr3+xXAP!TN(>_Nm@a)TXw}TQSa#q)x(pK}6ZlKSVgs&YkEfTN=QjERBe%8S5I3ozT~&57hnA$JkZA`RLx1KZff@iNzYW4#@%A+I3XlL#Ktz|0IL~knwx3Swe8p=fz;w zMhG>XD{4SjUTrT%;DBoL>=RqZP2;?x`A7AVpb4`pwV#n)sL()W7rXUGk_SUao{?f_ zIN=-F1#s+%Gw?1)F@DjyERb#h8z4mn7-H{FnE_jj{Uy84qzQK7aw~v~v@RSK0Lcko z?N+sO*`o;{TVlau_si|~d+`DdAA!o?= zx)=&jQ6nj;DXgHGg-Ovwwydat(iIY# zaZ?7v%ebqD20HsQa0d3VR02v;3}^DiDL7CHK=4$LW zL^SC@6D&^C@SK$xhez0Zq6;Q9>VP*lU1@1YIb>stFdM0{N7bNXyH4w=&KO6LB3W!Sd{hGna|ybFsYGg?3|l@K9_DVP0>^lT06*revvx zf}c^?@#AL72$#I*x@!I!B{?KJsJ96WGq>~aEr+&chf%yW5Ice0KI&O51V+ei_rUY} zVXKi~7YG7{vvG0I=q&+r-_S2r8*N_0>-V~DB7c)JK6|W0=A`LrzsqFLL}Bu)vFMmd zC-~}y>dTl(e(h$@qxVF&g%-pnuHU4(FV3e}a!Mq}1)fZ}E?IU~fd}LF^|E;OBrcu* z%}JaI9`FVoaQTb2lH<+RT4<;|uYp0EinFex?;FH9{m@HF;BQPPJi$3;g~^@G^;GQRFvug1WXVY5U7ftJ*xceiifE-Eg50k&^}f>Kda z`)E2;yiRaXzSeh{j8Z}?gFs#--oAaPUaB1gTlAwgs{$D*Pd8O(9{zPdQxpme2iAer zem|$lwQ5gn)T$v{Tu^S#3T~`>QaJTRv{VbrJwQxUG&613I$_EQ5QZ!q{t}mXx%mUr zc}IrE6g%RA$3S!;X#P+3tU$1EhFx>d+bk)&Zy-?kFLn-y{iNCIVdJI+0+$CUHX05Z z6m^O7zM4aE9%6FI{w4PdBPQCqE}5ZOV7dxq1pt2lJ#~HI|<8>l0vPrnF>M zoBS+r9LVzB8kyqG#Psv9VJJ24J#DO)i46=?$OSx|nc%=fy;v>=ll!BE%0D-lwh73{ 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%0A%086lQW(M9uD%b)A0qE$h?*caI=Y#r?~ zj;Mz}|D4sjCgNLSyYPEgER)m)-NW~f{b?E}yW&nNBv)3hH0Q6ffjQ%}vDA=@?CWX= z0>G<)Miqx9^|K!7G=z51TdiR)5usdq@28AuUpI*R+)&lwsJvU?i2&&+$m%H3k!7%S z82<9rmcs>u-J6e;=HH7CQ%Fo(wys%kl3$#_fxm;j5L}TIXDSvc#W`%P)k-8^ew3s# zf_!~GBsG2{(~FO_itcJBx|LX#m}*itS7KX1jidDhduQb8EAA)a`@LBSC%Gu~h@hJn zQzuge#DKs{jN8#XN}CQ7(dN8U=zci4siWbX-tWGGu6Rq)eUdXcl0~encxr%SJ-@*HIpRHNRe=p2Stcvnn+UZj) z<@e0YSU{De)@DjByIG;dN|pVj69wqt8~{syqbCuq!(saE(EWoSaW+;*t5NVQYXMPI z{xZyg9-AZEpW(A8kox)OkjeE8ARK=xjNKtE`f?!qCan6G|MJ^2&%EmNcpQ5Hlde+N zW8b|;$AWjm<{vKrs+q}1>EGAXsPEpePh-+hiwMc_9E&@EWD*Mp_q+LTAZo{lhf)nV z>>w5pTXthYjv1yb5PvNxI7ZTY6F$=(C!L%8$A8gZ88Lv==Ds>LFFnV>fi^(J=jlQ? zklh%KmT>{5G)%RG7y!th@^nRWKh0*ad%pvDY+fu6ubm?h!rw@wCmUD^ykRYBJNjmB zBwzh)%)xpd^6%G~f{E)uR6T8)Eq|T3Ze1t3b)CBx_Nv4> z5WrcCzRccDJZ74vR@!Bk*h3rpEUYJZR9gDgQHSi{h}GK>xRURHq2a9~QFc%Xvp4=X zV&2n!X@XGbod$B>#4=e5wf0^tbq@-_`o#=OdB zhK8$kZ{OzSMp5prgAIN#Eq*^bkBZpRW3?blrz8p+aB4AQfCdmLhwGw1|7-^fr%@W# zBbRoY5Ei$M2vQl2n8mf>bp$$t`0w6>%#ZqLFs4?vTQDt=I?yEE*@n#U>KUMdE+C=% zNKUDknO3$2H>_b57odrl0JM(So)jLrGT0#{gGjoz$cuo@5w^+);teF$G>F&Fh~b_# zPDZqmYZQfclZzEevP~63kn*U{n*7!*9B55%|guVUSwBp>eHNR<>3zxTd^Jl+r>tF zb{PEPIdhVu5>2C2o%FB@m>YT0u>qLmpp&d@SC)v?Dd$g?WO<%n2)8~$Br)f&Gd^1c z_mB^c3OmH3w(&-P&6~00LLIh9$6iFArbVrpi+;|x4biA1E*ADNT>V;@H>bY4%>CW- zkC%Ltj1{P(T9uo`JJ`14Wr9YI>H*(Ut#F!$*8Nl8r#afJ8*>m_mH3!b(xL6-dA z7{edKq&1pp)dkcKM~cj*N5Oy2us}G;xYUY*O!cs@$b_d(Y-o}{c`u44VSqiyj~7Z~ zU{M7(E4DGU!ngt1hY2`gN$HnOVK?i!9^WPzW=7TPRAqf%S)>i_I-&6NxL@hKeP@3- zC@#sBm_ZaMV@nYIo$ZmpKOC=74K1-wZ5luc9<{MK#ZZ6M1Lulq7;bp;q-0k6(<|DS z0e~VnppSz?!3P2X>_*`nS@Cb$DY{G8sbw~%AAc-WJzi%Yu==lfC3LK^N4IYAY%N}R zh#ja#Wv35>*bB{_ecE>0V1dhAvZa1!R+)ubnTx?m?&K|9>xh|6wi;Rrd(l5KYf%gt z2rwynRlnbmI$7O)ixr8wEnqz+6^XzbB*}3w#k9AT%rQqteQGO)^;WaYSWuv&>X5to z20lGZBvK&gFz`V=S{YPzIPHPg%J!BDH4?QB4fOViC6rS&Q)wyny`I1hL&K!mj|kVm zmEEnKzYd)TUl4=)47JJlZX(ZGb;C(?N;285ZBe4dk%laYF%wZi;#Wqu>s!=ot?E1- zG%Zln9i6{fe%ZE<3dMJWn!sj)ck5!ws@4|Z3z_R#m8z1l%{xvUJ|N<(_0*gGd@|)_-&2H zsOa7qX&Wi8S9srB#;X)z7tkU)(ZI7M6O9}~Vc$Uzw+v%J%>bjbj9@Vn<@X>>H8o^r zO+apOK~gp2^ZPX3#6*KTBC4CrWRDMBC%F$msxWgufDGq7g0_Nz% zL)|azjvF;CAE@xzxvuUUte;BT;9Y-h@GhJv*7otEa)19u_PxIb4lO@{`srK%Vb0?x=LF!Da1-&0C?e(E~y4<)C4TDf^bMB-p#F*Ig{xLC5@ND~L(Se$bVNB+8~P{TkCq>XaFHh^b0r1OZ}KToR3I4xEHBib=v})B&d>8yTF%EAnR_y zucoS|w@n@S-pr}Q?#nDM|D%}`w_d?FQ)I|1g(YKl>F2O0|~ z>y?&i%=9KIWG^e-fbL`4=@E~os>_;kiMyg%df$RwV?GdO(;S!MT~;{yRQvmvD6GQh zqJPDAJw)i1iVD!hUS;3wJ)So&qnb=f6Xh6CT65}B=XjUb`x}hGg(xDLWE(ssL z@d8|9gCN50>pN0`J=#qa&HC@;>B8~40+cx#??!m$*w#@}|g!{^g5(F;WK&1@sledbyKNX3P zMDaAK+=qvL3SC(!*H>2H=x9=$mlWi~UGv~{In`#MG#xNypF3-?mWXH=V zHQJ?nWAv%;-v1gwzOEFSCUC-M?PL5*gOP?#ebQqV3F^hfp4}-QMx0mN+UT0xKytT) zmEy#ma6UKpABy=Dl8*g&p?~lNB#^MXyGzHN?TH1f=e%t)SD9BONK2FV z)@kqh)pLzm>0%k1;Nnet+w8EW)!Znr=|H-) zSl~nBnwA1^w)kQ-!r_DT4F@+Q^=Thu{g(>HknyUQYYbeo({)J()26wOs7q;w(5`@p8=~%QDte-CLj0lEsQj+=)&&ykfo(Ue`Fk6D%5U zG6sFJ@j7(#4xT^A6Gg4<+X(F2C~i>16{L#ez{|}ZQA~@{oA^ z1b=D+%Qie6Q2h!spqbQ*dGhaT6|{Pk{}ptp(VnJTdKAm32C3jHV$(EGg^?-jKO-NkNuenYch1GCWBmxUl?HBW;WX|HOMF5S5rhw2# zJ`{>8L7+ipzVb@q(;Kn)bnx7$aua`adD@`u9(l*W0ecU5K1)~7u?+Z~JKL25qS9Q6I9zjv@O^A%B-xI=6CCESjg zN^Ks(s-H9Lf4)fA`CxjuNXj%Y`+_mc_x#T;{On@I^i?LN)+gWCF%PP5N+wpR=a0GN zfd_}G;#&t!MntEns*6|dLF|rC4o@E0PmAjvkA+lcGw>EWD<&aIt=Fe*JRxWs6Dc*I z+g>J~%+ShFqfdDPNFb?C?vUKN;}|F@h{BDsuQu5nJ!*@xs!CJ<%g>(=uzZ!I zrn3c$al?Y-|44$50(qQWvBl(}-BpWey)gM}s`*s@~=<2?L`I6%2jyuIm8!>0V|B6|0S8_G?BK@bwsKWGyYozxTRxnyWrhr@C z`r5!?^Y1PB9E10rAw1;C>{!<=V5_zOe}4)s&l!pA)9+wmK(u0H!~z9!W&?ERCCBe3 zjo(@lma$;2th&#KC?GyfPxLHmFKumi|4MD;N{B9|LUlouiRggUzC{ zytFH{a6*1fSCRjehQsUE2lfBCXC~uZE(4rS_|OQ&m|?~5T(~2G1xXrVD-CZj_Fdm7 z>|*qCO}kYIf)jD{Zt1Ejrj`JX2tj}Ia4o{LbSQ=WqYz0}@Bge5i;pYLgQ9{vsG~hC z&tuzVRT_eFWDwx>3!U&D=+0`tabE-wkvLa-<#K*m3$q(dnGgUkuC#$D|95FDo-pqJ zH2a<xqQ5gr-)QbZ7+AzQ4XQqEl6}GM-~?yGf`}T z@BKb~ckPz}fh5=ooiGOzU4Q*c|I65f04hAEY))Opgt;SuXk1<6xy}v(%h;QN^QERc z+iI-@p3TzA&wJ}{9D1M-!QBiu6`rW{j|k|7vv&pm%`Yv?)DATrH9 z7h-U&L%`93z`IDQ1)uh@Q{0VX`OWUy%egZ~m8}V%KZ+v$#-7u(CSWC3_OISnmbzbFQcaEYUdh**8W-rhUEb@Ln`v{_+u+%agETt zLZJmQ&MA0)JsQPK(AmiiNgs969?YTi4Wpc-{ihmrnAt_(Bchsu|0~&{l~;Mb- zK;`#R))_4JTdS5Qr;jxaYG3{MSzAcY6Ynn8*2izxY;nbgh=ZUx*TUGr>?v-Vm76<< z+H1qEVANwfqeLhcr}~#ooj>I`i_R2WJMq+*4JH{_-O#$5RiPvE)&Y>2PaanM> z2SE$|UOfTqAI9VJA%4&Hqk!=^wzse)Wt3zq_G~~_sR2fYhQ2U@h61`vWD_z~3qj|_ zaFA-{{Lv0k)N=zZc*&`W*hCPIBCal2d^qihe7mMSj@w&U4W%mU_=Opd$3RrBxcfX$ z_{+2#XfNyA^%%{36?FEZBC7R90Ok%85!+RvP4NfTw6rk?s83WeXXeMg#k*be!J;Wx zpvf;h!Zh;spNheW_4&t?f6lzur~wuLaSx5l_#Lo`YUK9nmPQ z7Q!lEXF^XfdJxTC1iA9rH4&&IWT9ESEhdSsN(ZbMvk)#}g0<*(kxKgyS?TjPsg_F* zNi=1W?Dtn<4e&dN-jFri+BxP0SU%f@@$?Gabwe+gPz zI%KE+Cb=ktHwa&ocAs&!(_DBi>%Dh-+{B1fl($ZW2H5ggTw^!@8~fmi%_pw$I71<% z?*!K11Q1Bo0G(wf=iTDzQX5$cr=r2AjP$?7WJA6*S_zeyHOtRccY+pa6jA&<*w59< z1`NdXtqb-urzmsMiqT{4U0MblfC_-RrF%l{Amu&5qFem6A>{4av7c^}ub87hlg0r= zh|x`MWO9pz5;CY?)`eb~3c-i&iT+S{2N_SqD_@X)AK9)|2zdsdnM7jXcH1~V#h3~q zf#k7PmhaD2ohWrWvB5KLtWE~kxmOAF-GxZ*EHYvP>}TR~2^5^jsnCzC-fQ#6*uZxc z17K?;cs8QY-BBap;jQ@jmDcS(h2p6HTL2Wdo~HolA*8Tq}`pJqkdG9iP0k4S__?)|Tn{2>_6O8Em1 zD?GNVhrMs4s+Hk6bO}s`?0S~t)1pe|IqROGO6=65Mw7gZ$($M78e(R~o~@dAr$@|4 zGzjR~AM9NW416070r(A&(2Gx(1eqOskZ-!{ABvm6{O zqmcO4lwtI+M5Qz_wcWZ`O3bpsPb=q@lFAU1T|dzO zIxLVbx=atxROrF2=?CQZHFh9ThA!6azGr%S`QNK-$@m7G)h$*PZ=@q>1cs$Cqv7su9&Lbbq2I~=Kx|IjU~)H!|W z*jW@P?9XxwTI-`EuDJIi#T2#vxJIMBW^K>Nm#6WrF)Gk^mVCoD_c%xWXIFs+eSLr3 z5J-D({%{CYGZ!e3&il8g@h7ORyIW!HN*phrI#%@#=k0q5TK44-98wIAZHP4TuehlE zzp<~OJgC_uqXPp2q6JkljdOsiGsR1BOIw|enyjYc3|A(Pr%DKntaf+?!VOMmvdnxM zR@^Ex=~%WC5%oKDL%DMj09+UmJt8ikpn&U7#vo9zG#R_c?=KBlmKBAuueo@bmH+&w zC>l#&OE}|!Ce!3wOq~J0?Esd{aBEz;i(tSHe0FprkYlVQ1B*?0b5rlGyBF-`AEc95*PN zYLud)b&r-~H~EYqW}+9iCLl}V6*AEG)G_K*j3?KjfNigR5;2nr#Q%JsPCU3j5T6wt z@_C-+>9ofLA5zl?@3aGKSXW=%-L|~gy!L^>ntJ}bZrMK{kw0I4rHkKiOTWtBWC0E6s$P zo#U$x(STI3s8l8N{jy7Rh|Yq2!~a3rTSryZ{NbYqP&%chL`tQRl2#O?1QjXi?(Xgm zMY=;kq`SKWq`SMj>%<-2_x=9vTKBJe*IkRlIWv3j*?ab$nf;m1=b7ih>J406A9CH~ zN#)Bg&zN8k-JL!BG`%nHy1|orCXccMFOOpVwBAy3j$NnGw6N(KZ9vh#@+0j@cFm{> z5uH83uPP_#dK(}ze>@EF7C(*m%E>*;6bn>U=#3YsZlL#s)gWr&NrN|e-f_0Ov}T7i z-bDuW^TmsUE$N$-{Ezg{A2V0NM)GJMm>g-c_T+M+y|_g3{xp`zj?xAL!)ScFW{)LA z!Bl|MEp&LE{>sf4D7hM2ng-~~e;jsn7cDAN+Im3V#Mb-#?H0f(8NIq}RV#wwJxMz_ z6;;>#zl-_VqUs51Bzz-QDS9?Nt?n7|A%4!Udaf|Uoi!8}m7+rG2H4y1^p#s8N$0 z8`W=frpE!elfS2=U<15?6y|x&B>8keml&;A)+9osg8NNiL%s04X9R7_`!oo|vt)#- zP47!h(40Iou;f(2Hlj%dd6hHG@{H-b`%$fJ-Gv3s#LBhIj^ERnJ7Ng(_KOOjKkxXS z&Mpu6wrj=w9H*t|pW;T@W0)>%*mm)r{Pk4(uJuG7GT-3!#yl$Rn4STpLAk@|!>CFj zuZUf=IWHa=mY(YK-%ben5`2Zg>~@WC%&#^IUt@bn9KYV9h#vbbe16c7_w3g|Py1EN zed%iVCR(WU4e5;dC5wKi(;M#9?;F#8#?Rk;)Wr#jdvu@p>kt3sixaeeT2lP9&zc|0 zTj-FkPgC@_jJNesdHv5r*kkc`%|b{DB0Xv7SH%AypaO22Ue$1npU2=^eaBg@m2oa1 zl}VXFn{s@$SD&lsYZnHkD-7nMe7E?C=*vT`qkeZs$WB#t>>S$Ca#;aXht!NE$*2(@*q)P369UZcRZ#oVQq)j;P3g_bHkYj zCHD0rd1f60-KgZlpubu-Eb!k>HHGd8LbK<{p2V*V_xo>d@IkbD#v`Oz77&wBiLxtb zn5qfPWA*v-DH0hYqQY=FBL#7AUga^;cua zGBPOlroGUyzb%w-y9ZK--NQ%GHKkiEm>IJK!6)i3)Sx0SktupuJ&sVm6UwcG@Oq$P zyFD4M-g)_?irBjO$*E_=Xu9Sd{|IBq3hCv<BXxtrHE=M-+ zo-kUSZBF<|j#b-9Be+&e@A|S!*^G)wnoB4BC044g021Uy6Y-y--hkI!lXdAN^yFVN z+wG7F@`gS}A|}gW*x&lCDf6#i`~{QjyAO)i2l` zr2_A|6bxQIaecphkgr!a7uUTyhGZNQBWiWIWR}{q8K@6k{@Y!2;-huvWo<~;HH;ll zi*M7?&9OD1Y)aMhfY7mFD6^o90g~bSg>LRMcJ{6k8|Vh$1)t#^t365KbLDh9F+>iY z`1P#Q4&TCsPCTXbKR4~(i4Z=O!}yQ8;7M@cCoSGHpM9+D1nPxl(6%<5EU?{Dr1K~k zKND#mx2>Vh)5>Q`%pQH(`S#uW^G#&N6`x&?HR>PoVYG5~$iZXBzo-okroiR|A*^{z z&YeYv6~~4ZdsMG6>q@0&V}zA^nWB$af_Uu_}#}(#}p1z2wOdw*%?{UjLTV+OiZd#`D zEjc-C32R)`vm4DG-O_FAhvj=28NV*w*A235J0*}=1CcOgIBoh7Ku(5}D|>~j*(~(2 ze{Z%a7)5j(HQ?ooT43*b&EI8^*+8a>)HSRSYl~9t=Qxsf-h*uxD5QVixe6d;D+zK3 z5))@p-+6h+IyATZ=94IT*0QPGnUjutjyS$6<>VPgY&_JBn2t8{l5nMhX+Y$R(Tip=7gTq@`tCBe^1}&nTI?A%HkYQ2FSl)kp@Tt-lgI^%3ih&p^*=2*ybY(R$ zn|dt-_%bAQXpg_@oIcZVq2k)zMvTs@i!EQYtS2BDQ_L%!oZ`HHFC+dk?4h1oNDD2+ zm^&{UbOX7sP)X7M)zXUYc&Nj|<*K&p>t%%3pRE=E(i!V~j{=!IUsO4|Kwv=MC3x1p zMkT#~zq>(r$?aPCo7fe*!17ip|!xeVB>;zKK zAHRIbnU69Qt&vZ_p#D8HBI9*@*O7P|A`aQ+75yBtQ@54YK}9No2_sl;P!cWU15DN~ zEj?)in4?&v*-HA*A$>z>b3DB_f@Eu7v&~BOzI$wwI;U(c+oS|GaN*q`tny2*Xzt5J zB(=yJY^8f@VOpR-{PJIMNe;BtXhgiZLkybZ^{errh&Yi$o~R3DTBwcaiA%;!FZ%mC zN_5unW=&ma*lfp}^AEW!^B=r6NTZOH2$u21nAqCRSu)dOax``>CYnWsW^E? zD+5ubW+hD|R08&5bJZ3$9XNd2{c)`KvKc_~EC8&t(!Gg5;9tVUFJ8Is22msK5BT-# z8TMmtbg(f{$0cGIekDxV5yz$xnkwkjzIQR{+H(J_*GWeBV~@U}&7)XnEhDoSs_rT_ zqx7g!o}Gs*xC9Evo%h%Y`1` z102d~`)kh2%)n`0eSD!%*=blo3-lRnY-~6ZWw$GgIRuZ#aYK4?*@iNCu9j+X2EGJ| zR^Zg~KCZ3i@tzb*T&AJx##;((IGoRAv4XzB?6AVr7lD1v_QBiJoh*(FH+tOS_WPyV zrIQ3Ubs`Q#rTXXN_h~N_MeEnSIL^MSKx|pJo#Y)2qa69!PNv_QT2UYbGwNQ<9n4E* zeE#Z!>|Jg<&?o9YMH6P>1pA;GIa`anxRQ-b0lkySy!BS!^aV(w2pX=xZb-`voN)s^ z+-)hS23>t1uyyp+Bz4h(3mq6%BMOt-TSBV3a#7+xYT@% zx^|D;TTrtB@&V_sLB;;k5S zdQxN^&IX#n`g^~6|DwoXsk!F!_ktf)=WwQ(K(*Z;?_Jlcdv-k3?s>$%obpuBE69LR z4aiDtLLODSoh-L;SGS8EuPsz_PX-6ovn74(xou17*qfhvVs?VZfx^)dKFHCrS)f6o zCeuwx89CAu^asn$$6~Rg*3wGe05-dO@W#s<@^5|aeea|=YcbJeG7EyS9Y7rk@<81y8!N)*L#S_)?GhkqwXE(l}GD5QvQB*07btdhpfj{jO9$mX7$=?IQM^3fHiC-Pw7x5t^dg#cc zWu?IZ0WaNqw^uM=)a*XHMo^6RfT9s^VEYehcXw7;%l=Nec+m0sg6>5;Se3!XNLZgB z`^Toitc&hbL#$}q>UjQVuqcs;*J75)vB}t@>gI2}e5wG$Kh>aFgrZY$>7&;>{Ahu& zYSa^bmTM`oL&zBHjOJ`l7E#nY>;(e#&xugUU;N&JR#s6~h#z1r+^f~c(8`s@(PkSr zPbxQ4@3!FYbjTi!h;PImZuzKhmYiPyY9vBo5%Qo&o;-BJfWSBE<1Y@EP%XF~m72;? z|Ncz@->7+wdJf_mIc-OHMt)22d!C(LUC;T_0n{Rk3$MNFTS`iy@tHGlSOxTOoDBKg zur49rJG?#3n%^5FcHH5R!31xnwB~9wD^HBvieaOWk*F1RO2;=z)%kP)1{M5zL|S;$ zK<4*7K1^tKrS|+Vde9trFjeoEv?o8jqHg#c`Oz3s1LNfIvKJnPZML3<2E55ZYPEL8 zbEjLs9n+kP_kIVYkIb)Soe2WV2TP;|qFVm^b=GJej%t4O$9?l2wUj3Me$(KLoKd*I zIC-k?gv^}y*&Z}$n5wBV4D_skF>(0N;QK7@UTE^H;OsLH|N5$2; zz`u=pEZ%TEw9I+*YMy9;3dBpQ>4epIJG~sKh>M$+FRpTo($f1hJr7M#A$*b-z-?DY zz!Lquq~#eah^Fw)aI1`Lo=h{KkuZB-%&n)A~l#vY*G4YpL$zX6o@$`ia5Xflw6Z;WU=U}+3Tv5+-8*Stl^AE_gHnv zADA1exDFo)9wNgrf~);nBcKv5$Smt~e;4_cQw!;dS5d20`re2Y54Tb+JaeV)(FJRA$Ys>$9y^w9cSM~JfLrCbS^C^K;=QD#77-BuVWAsNwed)-_$+j-n z%Fj6*2caxIGF}#r%ORkpOLRsIQ7X}7{Z#(}rqdCKF{S0XCi=65I<*(>YR`zGFP^ej zqS^G=Ymd!vpMVGS!gzSSD(m;FJ!aPxf{-W24whFXwoS7xZ?0ksiTALRWjq~XmC zpclTNWOL`vU8yReNMZZg+%|T%`I!oZ=9pvD+yCjzX_1ft71rOqcb`)5Xj-gVS0A39 zu0Cw-IimPRlqXL$7|`+Iy`#}s!cdB&AZ2_U>vx(qa-q>+0>7*a0GX1U>i<0Ha}U*u zex!Zv&RMFTHeaewjh)UO$S!q9Am8zE@`k5ZyTJI-S)$$<^mRKIqC^;_8#&u*vdeuF zxPgN^V$r@I{ZZPyc&aAdih5Ub-E995vV1p6Jgto&8HpBwwH$W6iw^t33jklLH~T+E zXQN{w>uq>~47d}Zh-*g>-2tH>C2dXiEJE*5c^|v5jg9+{u}3|PXypK4I6$qW$!P&c zudu`nvVKp8hEP8WxXeBWm)}rOH2rU^$3T-k`X{}+Y6TSy|GE~Xh;?B{JkQ*BdWMOL zJYL{q_2^}Lbq^bp1uq+ud^a?R%W+3?_U#@(x>4ey6)G{mU}oMJ6~sO9W7lN6?W*>( z{~s2>9>Gr0G6=1*R!%u@+1#deQ{67W(QFzpa=@N9-{SP|W{eJ{-Ja(?Hu_OjL0H&zi}%KW^^(@i zXjwcjQi`-3w{_D+;mstHhXdLo(o&UeK3cL7P)gUNb`G+ny{< z=^t=#?mYb$KM;FLHB-L}XA~i14Y!@$V;T~sMH0i(qkuAse6At;B#qE_WVQ(P;E6De3Q>1qpV66h&(Xcf0pjLzUNhOY1^Rr(;iFxDESD8 zs}Q6Sug)zCdxoA>^}JCEuTP1e4}X*aOG`js-{Sc>O(ouHg5d z%faFgL>w?QS{7}F=^37HClg;3SB~(<4UgJP1aqtpl*>JzDbK-LX7|5Pq`4-x$`xrT z3n}|m|9?yWxctrIk^o+?CKE|Q8V=dXE*s?((F9>Zuopf^9&W1m3xzv}9c%%pQ{GBz z7p^O|b(NtxZMEub8oP@GE4{Nb7&#kqS9rfF=MVTYlMmn6^Nca?N!Es4@X_!eu0A^N zyCn!pV(~3V_6^VeRruVD3)Yv!HRC@yg+dSIUK%5h#PSXMFy*u6i#Bj&9~fJVkZT9^ zj;ZgAx+4hr6ptg=fXts2mDaQN+Qr4C$wK+}zm*=+2uvCkzNps7zs;;=wp}jfpP`>E zZ*HDFHQfPuy|wvk^Aj2qg_jnRnuGdb6bOrbY9LG$yD0n4X?KsoPlD5 z@x+hDfAvygWlO8vX6!=a`!BoGm$YkaY_AV*(+P;P5m90vE%9up5aA#AmL71+k87lV z!&%mlr3KsLQ50pYCQBP>U1yvqB`(Y50RGfI2558ENSjo61IIK(qO zp=cGQSqe1vgQt7dw1uTdS#`*zmWW5U`Y=r#w*gu;03v(k8aG#)qPy(3Ffj$HY7Ser3i)A& zt_4~mocQsB3=4HyxHCPjJ@?Qz0FtYL=jj|gH5rkm_Rjb%fjIX9SkB>ye=&VcdkukA zSe@gasPRKy71&R0CJCW71uGui!^Q4WR?I}+nvzQC%GyD^=ah>Yc&FAmx8MDA9de!U zxwNoQX?Xugt+z!>SNdHB!EW)yfIr`h2G%Tf|2q#{O0)}J(vrYW1{h=^~* zs&_y6jRVrAZ#B4oIym1lAuT0bPuL%Svm*HREK;NPQvd$IM;41u_}&G!$=9_(@dNEy52^1OkDcFFUmlicX<SGycFpOPjS(g%(|?awpU+Sgstw z!a9$p*EPJ52iXEG#+!VG5cOW1l`fPrXmG--FN?H?w=IWS*gJ`0uazud90zaKAoe5m zWaptqqx0OCF$ldSBi+m_hvhYHR0xpN?9U~|4AbcqH0gsajW0czU0NbdNIy;B_ZU1o z6D+SxcqVkAKWH$52wU85$24nnhRqPZSyMH3iyBB11{6bI$@qshO>A5Kg4EbwFA^YM zJm(hr;aQ{HPm!P&ttZz)+z(y5ZQW-N_I*C^LR!;$JONWni=FVx#}U`-D#!xt(5O2|Qo=5To^^vv;leI_Tw2d>;h zFFgj@WFW=M*bS!gVm(pbhIrxc4jN)--LhRjCzIGzf2i1RRRGRSZ#MHpTXb zeo{@8hldzAvH$$}BW7t?%w?dj?_ENeQxfSXzY8ZVqIisgzwPB9o5elwRm6ylgF5#a zM$xBG?d#9TYo7~Zo+f0`YqvVP2)5leNi3oFdmKIcTr$FkIkjbdM($17PgfCRNBc<` zX9|!8v)p(Dg~*xx4Wug6)s{S$wtnMkNA*F(Kqohk<*(~!E^$qn^Fi6yr+VT#k#n@U zh%dLXH^j!NwV@~ZtMXBx$a&ZGmKjzl(U*23?0pX)RH;_GlL&Pgst%A>@ihusQ%WW< za4-Ot41WTQPC(xg(E5QDy|SF?fZ=J`v0=odIN^@Hsu|cO@7@J)xd>6O+)`e|N8Q6{ z;W^LdmF7ae--^;|dh>W5xGl*4L%4~@Lo8Ix4~;Mv!H{j+l-4-aI0c#r+M$Ks6t zuOw@@JaAWBA3SIs&=eVpf4BF0Ma>j8JY8vc-}cQZo;)reDKs2Wt%J?*o;p4~k8k|Z zjoOWZvgX4{WiXZ~uP4xVfU@QXo*cMc-y)W_ww(0cHGdXAF1~<5Bg2RCy59QqJoOEz zzM3vnt!Pzo#^@$997xJZ=*&7d8cM_IRw**M+@E=KF=1mpFg`y11VzQ_@7Sn{sp)T9 z+_%kFYh#v1{nS+9fN~ZueIscEk-A6zBzXw@v>6h<(w@oovjIKjjjqC8)MFmZY>5cW zB+{axl})?8d|`f(1IO-*w}^%O6*YCyjd5!Cq}1ToM>vG82qO^5h>rFJ43*ic6^4D| z^$uo0gtt|<47~}lc57BYEso!drrUhk7 zxG(~Fb`NyOx9`u>Ddwa|DS2x)IRUaOxk5Yr4g<1$(sJIuT7!!OiOv&!aKWo)_{OO> zsk2Zo@IlqPFN&FR`BX+<={u5%+>uHPXV~Zo1up*RvHW%s8g8P4v^E?(foNZNcy;&C z$aigVCO+Fei5!N@3!joTv@l{3GBrn)X*Hrjg6oTG8c(+|ocmLfdNO#^<-uZTpfUu3 zP~XXEHC9-OLbN-B2^6fd4H#{I-3)-mBf(KoL30PVrc+>@iln={kXn^#&NifVzRvFC zBt37{IE-k8e40*qzO6n!PJ7kuNbmN12a=I;g+kBaW>tvPPuM+lfX3 zbXUsTp8jpn71f_fbsb8^>m6%Rzv)_k-g+3DWcV~_SJd5>+))6T{Mhf2Z5ebH#Fk#o zFFPzg0pRe_yY37-&MlwA1QFYsVR-u87=(ANBK!4LQ%~Cf#QU1HA7Y%2u`qJOs7JSz zr9X^8zw+3A<{Afczi!%X3;So&t;jdZsLd<+w}}_Xvt(*W6g2I$N5})Z=y@$h);#!E z9HZ4~;wy*g0lRjV!lz4r`L1bGDybn9uSglMUhxN3zdgUp`vz-Jw0HAD`p_x*yb>WO zu%zFUE8JJ^QN(_#Y9NGZpYGN&Zr-wWq2^28=W8wKj+GRjN`MI^`EIQT3d4RU|hI3LYv;7 zso*r9<}iRo0}fg5Gd6H4GA7t2gMFsuSG zPQzF*v9y}3vonH-0nV(`%EYO?cZxAky_6AS#qeps3u@+x=(zy&Y!C>rXny_rrJ(7O zjPCKFA-;hVJmdT2V@*n5z94;T3I+_?8i$D573?R^a2pnIlLsa@ti)<@VyeX@AVpJ*UO-YUII{!Z5iXnO0ZV{HjM@ z5WZ5R0Vva9sfa(a#+D+=%719uNm6x>&qsqeblPnS(+o)ga(36mQ8vMv@_r;@73g}< z)vh-dJ^a^bJ|Sd%2T#Xo5>|VbYgQ__=SeT`g)V^*MQ)BzN*rGKYXmuF>_`@t&=DQ^XkG70-4Y-Z}5&&~RLaT|K$j#wWsxy2q?8 z0nP;-Ft$t!pS+$=9C_HlBm$^@B%Wwq+)Qy13Pj)h{Xe);D2=?S>5E+X^vL*0xc8Rs zX8@@^Q8&lbRJ%jD&jl};3>9Z{wf2Ff*BEu>byyiw+Y~mL^j|n%yG1k;KomG#Fi{!S zO_M?>KZrhhdM>`Qd6w~@Za?f+o$Tv4{OkB*JuIi9vq8O;GLw**Q_(`_TXk*c&MZt=gL-(wf$oI_qZ7h32QY# zNtOATJ%LQ!$HVG3IajZvxP^aIOZ{L>U7{H?5_shbIg`~$z1oXaW*pMrJWFM=IQ?tX zeCDBalZ_-$N^o96cQ4;z6yyA8U5ZIA0OZG zlGVc~cm-(1eN<&_AvgNEm_` zU1pWI0T{^UP&&JsM1lfh_OdIb7kc$69*r}-Ym({MKqAh0ZFWh<2I@mNO$PTB*Mf2; z!nY7T>xMy|OJs25NKtF#DY#~+7yHR(dB-~tbAaV?Tz=0k(AH`@jxw2BJ;q!62=)9- zb_c#?=Sa3n;b7z2e*Z;y3CCsgky574^R?4bs7dMEV8n%{tyS!!uCbRyx4Yx<2h^zu)itXo==( z!6|*)wG+ydJkZ!%qWB_H@x{pOY#%#H$}4l;WKQQ}?TRl$~Qc_}9%=|Ta7#1R(V_R^9&FbN_ec}3R!u0z3`UyS#17@W{>uo$Wca1bZVrHfL z9H6_ZP%zA$t>ehCz!;xVtGxV2Zr+^H{eel2}i^d4~+ zik)NgZ90G2{^5D1I5X<=m)@=1BRm@DvK>zhQ0g8q}0+VVW@d93nJ#ar*GqXX=!%9%{Z>i}W9dVbys(5Fm+mm zOHvWm-hRpXVJX&4gW4Z}g+5*cK=0zHo)|iVh7Q;dA&?##exJ3y?%?7nf}W{}wiC1u z5D3_CEjS8BiYTw8a&g6?I(7@co;()EZi|lIFOn-K&#|K9Rb?AmS4CY96Dw2I9f$47Cgs(%S>c5Zc~;<%BHW2Q-BjQ!7hZL^CG7BK5FVSpdEFcpOnWOc>J%BELv~L`LcwQgAN=|S%Bzj(twS{9l8B=>M*$HvY6?kHrV3d%^SA3H< zcCscaFE4+6b0ftIKRY{HV{Zgw^tOGyCCsXJ?G|U7Gv4`ZhCCXBmE>nL7pKGCZ1`ZQ zO%sQ0A|G|ymf!dO#+y+J{iZ`*Lan^SKu^iwq9fdB3l{%`VZ5PiEv(HI7m>!B`P6Ak zRExuG771KazF77xyP=o5oMus&PTi8)lhj|_c5uo;$JJiXNFMZMoEhp=#D%S3Dwz38 z`mK?Elk_A1#iQH$%91yFIOZrHAl7HPk%KWjjNJXFZQ16@Y1)#97D5gTpE$&aEk;6@@0a*J$8CgYTTFxjFAJ*M1LF!@Te;W}Ik+t0*?wp6$ zU+%8{I6|Tv8&CwJcnhvPGHk-oBgE?XWqjX%V`5`znVG|^jv8#)wFNh{;f4kVnSeis zLT0m-KLdlL|^9XZ)#Z_QPYFsb8kOr0MY;A$h0cE_3>?}zSn^rTW zYg1awpNH1u!|Un=&CO{;-l(-$c3{dC!=fJzV;L_gEPU(XA#8OCgtEq`rn1Y+KiR_$ z%eC8(AyiRvo&Lu7a!Iumh{ORyKr-KM&MTg&z~6|v9ggt7Wo2arb3I(tTF{$?kvK0J zd<|49D=Raqt4Vm1<;qXe2Mq5;Mb*^QEN{Kw^*GxbXhEl&6~oq++*KLfVn-y}pFSt* z(*{NC1vJzI9B;lf$@}OwliK{U^1>zcw-Q=*Jd4}ibDN`Tj-*kDw_8oX$!3KeW!!Hi z(|UI~qv!x3I+A`nw3_50iv!(BPm)7rm9d$+eN-2V>Vj{CcOq+RBcl%0=Qvrve%W)l z_LjFVk$TC}h`sy#hh_}z_`aynP-)ZppT!(EnLA4@qKh9BT+R|J!!*367d(4oCAW+U zCPK%FmpFjjN>*~2KWLgk9zP6dXlNRZc#Sj-r*`+~|47J%Tk}_ej>OxG#Cmr^@$K{Cm86^J z-P-BwyH4JM9$zfcjo_ZC(Z;AMEI;d=`i9maC}(X0sBlt@a4+B=Cp0V*9M$BEPMRA>OD;J8V1Z^neuuK#l~Ef z#|-RA4+6dH{BTxM&x2I_qp++w(xkAfTu6eP-}>qEG_=uKw&Pe#X+X(HMvT}xqUxFp zg!+^=Ko-@$17q`gK+|AnP0b`%HA$nBaf?-*z};u1hrqoCmuX$&R$pr8prhrf}XyEcgnWesQe z^%_DR&srUbAe!88f*kqgLUOEXDjH{GYwaho8&VJK1vzOYtRy{X8R${#4fy$O*%tzO zD^^$BVjG6@Df!9k-l2|PJ!E9%d99ZPKpG=fP+NBUwNIRNwUjz^hcU8CF19W6nts>t zVYvu@+l)Q+hq~F|u=@P($4#@Lprr3}{bh$O35593<`i7LSZy60C;+I&_@h_n>0@LU z#DL)g7gyJI%bJF5lx6nnx`u5fEiJr;g%1pL`8hcOqB9)H15hiU5o7xuG@x_re0;ke z`6TPeQshAyZF*PLL6}ddjQfItQ#yeh?67(aNCx~URjIYRH`^e@@o&>13c)&upHPY8 zuWe}n(40v=?I*)lduB@!a>Jwt33mf8t|;7$?u*BoS%E^eKxE0qe(JC$O1(KxJWQ5w zYkw7t&s2GvS8HZ(z~E7rP4<3Z>+{)NoxVmGm0v~M4%^+d#$}O8x3TbW^H z_}%TTG%%trEL!eTJApuq<+GjDdMqb>LuDO>^vg)tb+H|^X3$S-p*=bTqbsApe6>8x zVHnrWBTPm04_`fvn(DC6h~}?>iskinY)^!flAJyg8%jM?mrAUTNd2Zu;2O^YQ9;nn zb#TYYl9-@?UEgO|O(TpK?#M&i)#uyH;TV4ht2E%7L&})E_*u|#VEKrV5fjXS&N&gQ zS2Uqhs^0zHyk1_^WToMO+)+1oXA0pKd{q8r{`$h*|6S51FuiLoctLR@)>mHhhe6P5 z{1mjuR2EJZ{{H@AB~yZwOQGYED&7q*)D;vU!CJl(KEA%lK_aBxZ=`dB19aN7<}b5b zN`l01(7d$poSiu|ESZ4GiD6Mwp?IDug)aS8*8%y(CcM}J(b6Fzt1qRcI5~6tm;Z6! z!9F|-Hxp@oskx;DjpSjv0m;C|dbWV;wKvGQh^;EGv28DkgoM| zqxwRA_WCgcMNC)^oig ze54G90!$BGNLbF&7ol!G=1e*3l>O+yV*F2MiQ4bSIWcA@6z$oC97l61n3?yEnhq`m$+1PM$ad92Pu9g})UtS*cW*ICv zaKk@6BRW1k^#x9bip+pvN<>w4byigsE0RRM{j(O@>gJbfMI?!4L;U;6F)kmU5#a`M zv+g@K_{|*7OJ*;n*lVOC94LmfgHW@3jjg}huB|l;a_$Yi|9pkI%#}eQcW#Ap{fd^` z9jP+5skCiQzSltPGn@jOh7|Jovxi$Rjt|1g))rM9+vfRka5ChpMTDX)u0P!RVQfw0 za(d1i<7;FKhF7iR!{FrriP;i8P832SvD0wtjSz_}BM?`|%*x9872~muyRor>j)y1d z;!^js=Cxq*-uktNyE}cqH)91%;L2k+)QU_ucr2@V1Q&Fb>pNRzw~&*sdfzsc^t0r- z(u9S`K=+B>0e08&g_~Jy>71(Kq!giF#R_})K{_d6z6YE$+l|)j8=mP0BU-OeQhdPJ z{%`(T!AdpOB)|euKpMX1fK#Vj9)ii#4EkhBjC;Q?{b=rnhf`2eex1?Bc$f}C7{Yyxsk(QrJ7*yqoL(lRn5 zXrmV}Fxt0&Lti$Y+uP~zIjX2Lz=Mctq8w8SqYPfpzKD75!v!&#n;pcQnu7>c2PeVH zmKH*$TlhWOj_P?Hh(ntQij7~p0tsVLae10$t`w{*OEH%M%vTo!wQe_28r{zrQzs}H zcoIxT$8HDl2`>lumSTQFgJ?hY0QX|K*;MhyW5tWwu2a+SSZON?7>@rA8cc8mj4pP;aw>TM}Y@@ueT+q z%}lyuYn%7sGl{b8i2_ofaA$rvX{nR#N+k}H#ZS2Ep0Gh@)^mN%$(Z$sHz$Q{1(5- zTi2&Fnf}I6b4jxn>Wc1%lt4?2CmH1C<0i<0j0A*1L(#iXhext>Q++32h(* zpOr)=&mk}8F~Wfe#R3-Dt@M)~Eh0KSb*Jv^Yq1m5X(2Ly#?W`PpTdcq%-d{3Zdy;H zkL_Z<10tq-V!P>+tpztzf{)YfV5qtVZFoXFp$w+=dSs*ZSNl%7SjZf(lpayG=SL3Fm9>(X71y zAgA0dj{#i6yf#6ONA)kYGQ0F4s0uhpePgH(3SjuWJ8axjak{RHQ~M#?g5(e~M2A~p zZbm>75)uSZop($WCZx24?{SOrUf-h7A!)`cVC-=_=q5Dt#s(U6I<5J?Vh z+8TysU@Lt2LfkEZwmiIJZaNEbN?!Z9(sm7(W&m6{^GEHS2@1Qnz_t$)N$WdwJ0{|T z-`SFw@g}cqZ3TfIsBbhjf!3Nl1iAWp+!|joEr0ky528KN^I0`X^J=S@YdbUG%+fa-Lr4)((jP23p=){t9F5j>d$}olZ zCVyqnW$DkuO5PjR%X%i_dfY=wdnBZ0>{jGo56VTo9(oMNp%5UC=kG8sEr}dI+Wc@$ zkN|;*E{6wE{m}I?cEh36-CpuJ?^G6_VRbTi2|4cjPO#ti{e>*qkj6P;zXkOPd`R)) zAQ2JNW4Y$(HKfI{5=%!n-O{b4^WL1hDr7|3nhnk7bX}^Jf3-!s5<{o3RP?9*T6Y8> z>9}#-D%^MffbpJIe zp!)zAk-mO@oL6AN4g-)3-F`DY~^5;F;os zo0*!nPy00G?_!cuuV8^`x(xfTx}B3HU=Go+^7jbE*kauoNE0wd;so~2`wFY{#VK*G zj>ek0S1wadu+x=jGqhXc`C55dag*@T-HyBmUmeUUNpm!hrT^mIuGeMy!{dkQzP?QO z>PgnI$Z3OGaIl3UL&&$>yHF%qQTA}lav%dPE~fhjB&QWwS>$+y@Lxso#3W=2nq^S? z1x2BLkA*Gg`_E_T@=?oLZnf2~9serN<# znJXyZr{75a-8wqFOS;{X*S%lq9EeSh9M(Y_3O*_*hzSP<)YKr-wFJy0_B$`< zN*%pkFF~I1&fJi3wfyS%RlNa2+a7uY{acH@nNHeM+PSS!+gZl0gd;2tJM*#}bTRZg zpjVnca*M8W#eQ(^=e+MZXuT9Z{Y6YT zTclA~31O#Oz>}oCV|RXZY^E-tPF1Agt^6zXoouSW5ws*?R>e(8Ddh0!g*g=8`<5T87JRD>Qb}Xi(8+CFF z;26j*$8!pXOH-*>4sdb=zhClP!*0TQ1zcbZtjXqyC2uJ8pm;FTv6%sbnhfMG8W~HM ztP18d?OCDl2uoFiYx22`hDO5so$GJcis;W_Cg>WG)QV2w;WnuFs3Mf1KLe%-28;VD zUF2^`_J=T@(+E7vVCZ)~H8Y1- z5$;J>$cYUETsX!g?T!bIdHUO5w(@eZaI=;z#bdo`tlRANqgRLcAKj5ZTU_>BTE*gP zPVe*V0thGm8WJ^rLFeiU zRvnQ3fY?Idn0g1RDUIhKZ1`ir;E*wZY=AtOD;=$BY#iScj@L42UP#(w->``4@9+PR z)Rm61I`9qcjB;t+kf2eDPOx3u>kIU+ce zKKtTjni2U5f29zr7KJp%AfosT+R8~BesKXZCxOD8fvB3@caVT3q|9GToa%g88Sl%J z$`3K9p{-PDrTVJAIbEv)(AL`l`QELCGE&9+cZ9;hO+!M9uYxVMYS_c9%&}aG8t14o zyC{o0Y(9Z-)=IuHKHqOAc;nfiIZgc)4KyXuv_^!abt7M)$(sjkm(Bi3ak*B#SgUr} zcOH?q62UTua`0q}Tmp~uUnYEd!}ffTE6(u}hF+!>U0u!jl$bc!lmz_G1HJ;ivikj4 z>6Mn-b}Qhz_E;BUV36fJ)g=iALqcU-cZMJ^_yPrV(W~RST&x*9w57$V#z|2TCeJRY z*#B8w9ysZpSHJ|{{{qg{-#A)V8J!K^1pc>W3xtv^JbHUjy)#ZGq z5ce>A!(8`j#fg<9Onf|%>FP|5vJf|^@apuB_Xt;AY@BW%8@=UQGZ8{{su5Eo#osQ_ z&)q(#0a&`5DMUh$2{T~Y?C_zEhW|u^>`)OPs}!IKe_gnWX1&YxgC9h9I3m$=G(vB}P=Xz|%|5>f<6^MmckT|0kr3)&erBVB>fK(w zc29RGbahY1bm3zeI;W9Vu?!n@PLaWyr`_UOtvJz68G#RG+$xb&^i5KWOoI6ut5s>u zDsw2QH_%GN6z=x5>~wo1IoCJ=U%C?xPDO!J>(0WF#Xi>z2~{Is9OE5IXQFeWaTNSj}Q?ZoHWFYSDq` z(JdmD-r}yPV(YibPU-$j3Is-fmapXGr+CqaCXV^K(Rri_#XB!MSDEuPweqM-L-A(Q z?5XDD$={jB&s_PqFY+>K=B#0_3Y zh8?};;4AFMiZ-kzRQ>Na1ft-_MRYy0qb&E$zYJB^(=uZ3d5mqdparqki|>x?xi_e% z`|nS?x;6W(-v1n$ZNFN~SZC*|X9GO}OXRg8B8Y4LCll$$3t@g3hO0YWc-st>-YyPi)8;j{3^5gD%P}Tv{%7H*VIH z;6>^vUE%(w|8zhSFam((+EsNP`V&up=Zd-rl@4px@HtD27MF;ydPs}}ElHBlrRmex z7Ej4eRugGR%Em3%KCd6X&);!J=KHmI^M)~-_)`+O>G%D#1jAoSB1A&M1|NMtBGZJ5 zbkU^Pm8cYRryb(k=;x<|wy!-IWvD;3PID<(3}3^Z6dR#JjJ!kztTNXIwmYdJ>kHrDv{*p4E@%Gqx>_}e8I-mKPnvQZH_lukfhS8+E|9@#N^T2bam`EzIUR@ zBo=ceJlyNOKkbTz^G9fHO`q|9;CMdKj}z*1WIWO}6PV=j?`LMYI7`n5_}w+-R3?{o zTz=ZXa)G&&3*+n3`Tpm$xsr)@hRt-SPAdC^tcEN-L8%QdHfIIS@XnJJlT92g6F(l1 zQ%S~yM26G)su~Q7&t52e9WJ9MSJSuiD;+2QfYUn z$;rtBs8XEc z3p;TqRkqsMd=^OvgoRfqDA=oOzUJ}IDbz1ha-vk>LlyCHdv6rpq1}Yzx(M17$!90k z__1j1A`p@Ek>Z$gi>BLiBNTPur9ySXSV0^Wa6Y+1OMwSUTKZ>&gz>MDoU`yr4(99O z*?k*C!7gE#bZ95IK~+zWx7{7FkTCgDCJPCX>-uTdf)nbQEY=^6c#8DjThB-nwdodD zYBp5s6!aIT=qC;BKb{^MXNu%psougG)K%cJ+(p((Ci@j>s{ZfN<^Vm`P}|P&XR~ckxi%8XN>( z-fBOU|3-4bw*b{*&+R2kI}qe=5nS=z>v>!OpWELHg(>2X_071@+gD!pNiKx=1ev7C zUBVf>L0R{Lv&QYIZ^I~0<{2u*k=ogL<_(6H*0(?6KV89sc$gl$G1nq*O~KfQK_A*H||1xG?w)LMqb_O{MPyO>65`6P$_g{aDg2{peKgd z6a~0)B;Ca0#`csCgZPlf-66-m1jc(hKVUij@5Qi6SRk`wcD3Xm1mfc&`}%a0 z&shgjSzr4+S6(45LInTly)X5KMZ^~r0njz8XZWC-zhI!=$XDDW`EP;t`}=Tf!3GLl z&&=K8`{cqSax8fd{IpedvQZ0NlK$A8LDbrq|13iz-wM3fX7`$9(3PNKWVCuvVHDVw zvuXg_1@oKN&qx1LFU|~_Wj-d_|177XkOAR=-%MyLejlaM@C{9w|L2LEhSb(#g8;Ph ze=MrvV-raK$I*uacbthhP}2X~^7_~RR@whl8mzIOS)l02{9l$Z%xWZ-|5WpTUrRpz z`=37izk2fj{Lcxp`~RvhZ}xw>$^U-2|FtT9@xQ&8|MlRUoSLdeBkBDJTe9aQBoU9X zh(Kc3I7d;hGe+Pme#iu8HKitV@B(9fDdRVCCqSv~UlE!W2L#ruReezl+8UCCs744}%39F^~6-67A<>4e$h z*%y(G#7!^$sHk9rH2T0HqqDO+$4#T741=Jr^YON{eA%I>k#%e{HE#z3KF$#hht;f? z($gR|YXr3-hbW$x`XH|5DC$~}Q4R-kWj*9)w4eGTlo_I_oqoKjtt*KW*-Wl?W7rm- z)Sj?RmGu)rf%>?F;zr_a=78QWE$#HHnWGW8JTh7El=FWb4YcV+R=M721`J4zy{L;tocHb|$w z`OI3wsmrA3=Xf|_pE4$@kW1mAbz*0tFLTTrjmN?+c#GzuqBodWkcJU2l&_BMBetRC z_iwykz~lj^^AN$L*^3)GROGRr{i3KPuL)cm`-y|Nu^gtfce*>R=MCX@M`j9)3 zB;OFVd8Fzg{O|9alFpAI5b|o?Q<(Fcwrk6@n~>fR_QPA=M7X<>d&29?9i==Sh@7%= z-_B{UXW0-&(*XbiKp>tY_i`+#xp)u|b?MUroJ7g*_YiZt4Idb>AnAOLefLQ(eMFBg z-dfF+>7zjy|E4IFAtFT}QnIqAFyITj<5U9a+%^zLS10S}q9mP{&ewN>ZeXwr$-hP5 zVPdY$gNgpNAIo;UV-|XwlFGJ`+eMuofDe z0lW+j1Xw7tZ6s7c6cMKXvB=%AYXK@nB1Ya3cBR&a0sWjB`#`HVmKR;ez6R%I;?tk*F21v zL)GuKyLu#LqUQ1HnQu2}y>`Ip8AmP<6qU`-IEYJ&I9VT}#V|dXfP|@0J~C25H#bJ9 z9*jNR z9{Rqjr(gE**SAP2DtJJ4ig&P@tPz?ZEe8bhZB;p8Ji_hJ`J-BPb~Y|TS8lt3ZLIR^ zVx=icjH8xYqyO-n>P0BAQMOsgMXktc`ikZS{PqY9GCIA7n{Ny;xjbBK%(KD$>QP(4 zP^G&3yN&%mAgnb0c>gX87UD#KL#TJ_^(6gnQg5N=+&fzYo4F?5xW6(Q;!gpu@#0Ks zh10(yG`Q{4XBGx2CuTEjJB6=iw0b_GlU7{_*ZhKf}c+9dbGECl+sT2vc?lLD7}v z_C+RVR{>|oNPK(uTl-F|;cb*KFR22bpA}37PQ)Sm(3H;G>39oTvb~%~!Px=$26hf1 z;i=D2;xN!9H7NLSoA-(eY$OP4wB;mne^1X644^-nOYrHmP(m?Z*2TOy+f-kyDZ`%?JL8w$nk?Ccj{1~_ZSYjZ>K z^90tgoLf>d(3OxJ^zYi$4lviSJ1z;!$K8KCkiM{k;VWVfbtQgc7d9gNv)?+=@-6nL z2t`-)-*}@#|0oNJ*LXeu#aLC-RlbSvvWy}$2k;W%VYdccj-y4}gv5EfzrIb@kE$%P zi;}z@kCu;N$jR_nG~t?f9W`o8QhFl{hAfaqF*0j zgZ$(^kx5k6-jdQ$f-vHmoP;cPa6UP*{D>UQ6j0q=^)CqnSId=iH#1Gy^ zM4}TM8mLjrtI& ztE!?wCWnmOKS0DltBeRHsh~*xW>`k7&{0{5-*#DIcwt=gt5-%^T8+oF14G#|^mh6O zjwRwaT-0RnSF-oUqm9VHks2Yl11I*)4D+Wbuzh)EJKMSEcgo0H(a^>lbZe2@7!7yKc%lkDp`e%_98(4XEVJUQ2{e$M)gP!9@!f-*;HCieL<;(dr<`iPa zQ5qZ5Csg2>+n*p(7Z4ju8k!Rv-f2~{+M7DjdaamQq>_eQpdNX!KyL8+Mop9U%T9a@ z>DZ<>o3$Z|eAYHG(eXYjAg>Ygd3Z9LI=wGR$w&}5 zB@aFVIuVZ@A8`D}j4TJ3R=WlVv52C77GxA+EG;Y?WXs>IAE}|7bT=!?_XR%ZjkiLm z>8y-yLuRO!mX>m6d9eoC~4j$%zD#cye;$!(6MlqeMx1 zFfkamx~{>JLXr}kP$_bC#~i)HW1L-h*`~vr7-*y&SW_o?yrTKc==RR0fh(tlocZ(6 zwhCrn9&i-!365lm#si^T^6@iSc?^8ZKI-h0WU;89>wh*0YVdV7x))WiuCBI@wQ{d< zcR08jcwgoFs{DN#5*~iKDcHN!cGmUKLBz<=f)8>99E1jvi@ksUDlI*|WvNSPd|@GG zd|aKJ-w6_^jp*t>k?-~gwb6= zQB92?(_;-I{3C|h?u^zJH9I#ML64OL&p+x}8Y@Y#lEO}p>>PzoYHdZ9v(br)W&s5U zd?9E)$TTKXxIMehp&qsfzp9sp536q?+UTWjB%rL)ydT%k5M2G=>8bP-?Up0Z?oS%* zkRUoNL^|_+A)$kj`t{k3#poC`{&0mPW^quSWw}VO@doVV{JXxry*=G>wvs`G-_4rq zG<|%z^(P}5O!&0yns7ZY{#tXm9~%5HXnNxBcfes`WdVV}+ngEh?pyqGXDNta8EfP5 z;^H=s9+#ZluGi>PFJ!=a$B(d|MC;s8BqnQPWyB43lJT=cZ0e%;!rp%zftUQyD_a}3 z&L}7F^sKA3{2)6;4ot<1jR^SdiIUUzo)6=^S)n&-YHG#079U5GyM5fkPln%G0mA(& zu@eDr;T!UYzw?nSkO}*0;ipewmn;Iqd{B$uw}D3y#iy?cYQg^7G=DWztAX-O6<;N7)o=`)`8@$+rdLWD0iJ`B*8ynyU4d4{~rCfRL}G0w86BVDP=@*V}gRKWRLJ)ayh6gZlu0E?|KfU9wEk zJL%rwxIMFRMK$_HOmZA4mzw)dC`t+YqKs-FPSdNY*4no|+Miu{>rAeI7#w`{7ICC6 z`Uz(17#L-`f|Q-}Gb%|-$gZsH*d#!K$LlE>4x?T1cEj$xN$1ay_FRAXbI6?z8Abq? zw=Hd+C(0EL18oSs#A#}8VErtwOZ8%`*pP9MdP(n@yv9P>NXTr88g6R0*`7NZ$N3^G z-Raf7Y%;u9XHv`_d&N$K>Fe7i7q>Vi=5NEs!Ce8rj?r5$-{U}5+Ei=}VpM~>RuWz@ z7y7y5Yb=vmp90G)Y2qru&gnk^yIJA1n=8kjtuec-VtozpYVh8rf0 z+YQPW_Ye-&wjjn{tVGjH`vPj0={IJ&xV1}M#pKP65Fz^lu#He|Ga%-6->%+3O!n1S zZ_U?xkE)97FoBqZ{O%|an3vAeoNQs_(mX3i+b5CA9sCg}Qo;u8G-y?XQo^{e1vTw;Dc9k7|l zP;#L*C}+mB5V7QbXWA&2j&|DL7$A9Lg$*7Nn0d&}2-9;Uk<|?CC5-&GWf*jq7wt9? zplXayvB}bZ-0fGg8$-Fv8TQQb#yqH*e=K^~+Eq*BB=k9haDx_fX6~HOm#=<#&4DyS z!XR{xZVVQ|V>@lK+8wIX=#&#Jz(&9PsHj@XdN_^8(DB8SRV-!?2E8sz5kfLR`&Y*z z*27&Xk69_daO0l)4Bhy}VdUtVZs&XzCZpfXwR_8&`+$d#R^ZRITPH|BBr&{?EsKI1 z<@f+4>G7y7vku}qU<6;VTf!#{g4BT2*7vdE&8<^a0?9~49t{(-=PK?tvq8yu#icKw z0&w{G4*@*4K7oRvw$5P)RN=!A8umGEh54a339S}`N$=jH${^Q2M=iR!I?umgqAJCr zKIJ7{+06;57{?;}O02_fLW0VhB%Sf~_RrYNF2NIg8XN2oV#rXh8oA^*Nusm$#Id_z z-osjCg;OW&4=Is(J~H*Q_<0jnHAn%H0EuDT;=APq?Cxq} zfYAT}NK$~h0oz?)_fsH~0b4!6+aYVyzc}s*=Z8Z!9Oi%&6A%`wmS_S%B>3pGdT{*S zo>A+7sEKsM8G^lvQuPuOAgFbECFGYgsgyoiHI+CJRGhd~7ZsF4zsGQ1J+@7`Ea9h!=L-Y33h;z9)qu2@hwTZVj*R zxAF4w=2lfD&d`#MPM~q!3I1#MJl$HXZ5N_fObGzptLgQ>&DK?6Uv`vOne~4?awq_6 z0@`^yUTa%hmCyCZp)?*WLV88~chMG9gc>71*698Afoy3B*AQv{)A`|H#d4#p69~rE zC;Oj2f0iDQaGQ1*pqH&|un~X#HHGI=*6NQb}2v=q1))-3~Ar$U0ntnK=;?KU{8%TaXD{J?c{8k{l9;<58`(u<`_P311COTeAsiX z!;s0l`isgJH3nT>&m9xk)=I21YrQ{8@)_x>Bh+aTP#_3q!G=6NJ;XX zbcX6lM2po#dmo3dkMPP)^j(@K; zwCm|51Z=oT%0wMSjO%sT)ptYhi2Ii{5m+_F&mi4hCMInDXBTIIRX?M&>YwE-Es<KTmBC1cA`vr}OV&053GLu0|+A`hz!eKVpRQd5YiO~_s8pNsZs`!_> z2%#SHco9)$j(8XA7FXxj%!jG6>ZDk^5>z4__3^R`QFV=vJCW!P$>=l;X&zZ0eTN-1_)vp0PQI&?Tiqja~rjmD*Q zZ+2y&E)U?NG~Lk+Z{-}-<7UuFSkTC%4W)1di#h=E`%sBh{Ld)~2ipf(!f7jRABFg6-D;bHS4l>K{OdqBrYzGEyWpb;L*yc>t&D>Fc+6@Vx;m4ghZr zPw5S_nE9lR*Lwz=a;JHay0#nTN03K&WP8UVRn;Fe&O^~_vM?TSLZ|{87U5^ICQxpm z_*4MoEO+yi0O&g|Z6*Rj!gYMCNF_zN=@0IGHEBIrphZZaB&f8mm72e$Z7%C!hPKONiN^X=o@=i>H9e)WzH>=q=umD zbu~z*om^Bf6pPEA9=Ey!mk=c-K1IyO|B08pFnfn8NN6hnwm)nrRUVzyl{8#sI_Hxw+a$U zrpXbvCNr~^;PV|`)a6m%-Bj1`1o|vy=}W{|`V&*OSF7{Hz-~+ZQs~zOA7<)KWrCWS z!5R-LrAs*4Po(pc$XSz}55j`Bernm2J z%)4MkTpn#|i3OAA=l~PQ5de%c>KYoJTp_g+X^&JIjZHbfo!X`m;=6^tE$Dt;(WYF7 z>XPN_Hv~3WBd-szOPCa~O~45AslR{w8S48Y9t7_j(ofiGE#9;iXgv~7Vz1{85j9C&L3u>*yqup**XNxCC{)qG$$lNVTfF#vu(8E+N zhlcSFHPMrFosI2n^S#NEnZE?)WSKXNf0r)k#gyaShxKVZw6H2iV;%p>~ySjTt&O+kcW*i?Y5SPpG^b-6i{Q zT}?@vD)>!En;tZHdJQa0%)P5{i7x)L@Byi!yD!ezQfzD;M3|4)@d<}X*4EcQZ2Thl zCgM9sjdBedKmW%KbYrSG`o(KRk+hLfW{<7-z$S-T zFFM>KV=$Ay-$SEz2eK}H*c4mcvQ?M70J+)(8?Mcua>gRp36#-|BBo?>U}{pkH15=+ZZ?oDv~sUWe7`#}S6+1K zn>QL&vb#^$AoK5QS>!JtR;1LCmoDDv&(}JZ`AG(F3Q?hwk{pb$$=YA51gME^=14i) z-ZlXzwRZ6{1>=Cnu(}HCEdIbBBW~1{+<06cok+& zLvK?xG%M;P)Fh7HqSOVOped%4`}BXr9JL zy|_jr4Ry7(D^lfof4ymvU5oEqfuqbp2v*68(rDxxX6i(f9J=VxKb==rIS=Dc91Jp@ z8@cTrcki>~H3#mGSz(VigryXy(7?tcNArwZNz90?t*-qhl#WL~W?Pb`UDAWc zym&@<*hcZkWeP3Aqf}ayt83Krkv~-EXy#RcA+ueWv0U z_-s!hP_-1e-B2NNimT!NPhs(6If%zkiJ#>l0+3SXlPnJmp5*1h9OR6TnZXQsVakmU z>pBN(VZSHAd{72MzhuHxM-h95%KE3Ki{)X71_=>i&y4q0{0BBjK!NAWi{8f+xovjE z+8jDJ^HUL&1kq8pp;s#z+9nRBiPkykk9EHI;TXL|jfo1>D-g4P<^H&?so`PghEUJU?c*^^mE+h3If>OdO%kj8Rxws943LWoCLadph zw}`NOgx{>LZ{o=8BGvt_nSk}0rESC5Gaa(*YI!-+UeccxALSzbE--2EPY&#?r%D9_ zu5j}yMbhrVh~lYtyeB<)q6gFX&zP{TWiBPTu$sRs_FsA~Ig8SGO)w_WEteTIeM({; z0Wa2bec6uJIW@_u3b*j`>PSgR$yJ9SvHyOS>TED{T7|)2m579n3+qT~ zQZll)lG8}0S>B$W;)u7m*XXZwY3S)rQ%pENSi(b2V-tC|?RyymSAXCIjPTQMH~-nH zNV$<{ZEXcp8FDikGI4Qnv$w8MMMVsb$3p!yThbBR2j+tJqOV{57FVs@_oyj_g}8V> zk)YQ8J*#Xy5w??vy~AYrLjjeW#n0;|cThBcvLDZ>|KKkEi2OOrkgFwh%($<+Y89;9 zQpgi{`wkq{^i%uOD=q$}+?QE!@Jq&JrF3yqlc`@c&GSb^;Zss7TXuK-DK0IQ1c^h+s4_j7A`yVXtO$0QrFJrndLs;=ZFxVePbyvS0>CA9Nv(_ zOA~p=m(}TZzciVgntumTX?E_u#^Rj9wBY-zI-XvRlxYOhGwW#*g*q?yiJC6%JJROG zO&lu6sDEgy`HHC6HEwZ>-Gl!W`$Y0J5cZN4*x29hqAoKJ2GvakoD1~5(Uk4v)kgYp z#dEx1>hX_Fah?mSCGD{{DRgQbHGG^;xs=j`Vz4b?Hb1+lCZI*1SkLa;Ff8)`&Dwsh zPpB);SX2b%=J&MJAD^TMq;@i3UigCfxHhnD3~Cd?K;preFMvjvHu6Z_TlYKJsDu*r zp;=z&u+;!(KP8MlOFIGMu2GAdk}-V1EKX zK5m$c_5AV=kpX_9wQo4g03}LENy&PvSvutqpTP?(#`z+A)JIKJr0Sm}F$D($4q0b> z`{2i;iVp^5x-qQ+_0`WoCmtRRnzrO^L-5z^PSv4rKzX1WitiQrWC7 z{cTj$DY*Z|(wo+j*DwV9u(1CuAyaPrBXhl2V7IwiiL`)6CrVHh!xmbx@avlZu63k- zadPGOUqTfTf?PDY?Gdvl26)B%D~u6kFVy`;k%=(v#i38;3+2;CPrVScx-CNQF`w4B z37)|Xw960L+{Qsj^xoV6d~50Q-=+Ari{Qyc6$b>_eSRR7odnw?W))^`zT)E6KKu0A zl>Fl!Lc+K^{t3x{VgdZ04kvPq^6{<=vLV>8tE!+5RWz+tNFd6oySB*>r1RbDxG%jk zFs=}OE<8fRG3m~_n=N|t3X(0riJIclq3WxwFrW{?EhAkAzY0NnW5Hv0jZCfj>Fag_~Ab5WAdu6}`lDVE*y=Cz9C8 z8sX@CSchQNa(a(oTzKhsq)4or`ss4PSG^c22BQr;bg!|)^64gVAo+ST0zXOQw0`IW z0zx%vK0abV7S##D!ns+xy3Ub2-rGEYXCER{fxnF1Z=*os+yevGZ%8}-sptvqHbqkO zybOW@Ohy22F(Jd!&ZtrmY8>Q= z%{|oyGxZ6!htQjib|7M-qU=eyp)^bE1Lss9=6f1-v*8y7(M~;k9kj@>1TuZoh-gVU zXDk{C7wCJ(9#E9PqPo1ic`=D3^T0pEZO@78cgy0`1bp!1%pwujr(3{3ll%QUX8H(q zpV$X&QP1(yb`Frg9?PA%_cxO^GDMj-LM6h}Zq|I~Ig71=I(p$trC_>H6SX-S0o1$; zd4anWNT(>s%GGEDa7UEwSEj3ihB>UFrktr?1}>$(wjRF(p~*Nn|LPnyG(Ma4_VxCn zBRG1OMQ$kZ#;%NRGhbz55r}M)jRbA+q}HWG4;vfq10p)5eNpG;acoT(th`e9`-+W8 z<@`(X3Vv)u=pzFhY~JX{Vwb~54zew72vsSmUz@y>3<2i_c@P))JJ!)wUps6X9|x|n zT^CA1odxW(Z$sPFq$Avv=W9BJycu=BAkO^czu8z(gOT!#$OkV(s}@yMrmt%l_xAVOZv5Bu`2ZnK2tc3$Dj3WuEyAVQ zfZkrIkkC+5P*iE}?x=NR45h+ud3;gKIQtSqln=7(YlNCjm3@SkFYbrlo9TuUU@_ZO z_q}Zf4q|3u77fSdMsOuCUQWdtm1*|ul^ToY%0)u>py#mO!-Qo#x<#2 z*8jjRaoLl2oR@30{tVC7E?buOpjU`E6p{l^i2o7WxF4!j@3XZ;w$qKTC=l~`YKoNX zA07PaJ`_$pr)+fsl!!cB2)4g}7WIv8_CHJrETMa5g`jJx^Aiq+*r4&o*Q+B_K(IA* zax3&w#ZH_BE$8u`JYL83R=VUEzSda7q>PL?>DAlI{xs)f zg`P;(hG-KdxEHVE4LJrxWd0w|bK5^ikb~-j$zGBzGK0$+7UP=tpDPkQ>~haNNiiY( zK3A2WT#6isc^=@PvM~ zEVHtDmz<$$Eqt4lhu>9>)*uh^-jUqyN%3AxMKZsB{gxv*Lz%(tO{3D4=*mO!9UVR~ zaX3iO_cF7wkzdISvOyTwvwHmfzU;A0@H_jfng8NgD!yPFjF(#op}g$li8=DNw=bjL z5-MtMH{xj32iD`mSX&alEPq`;DFcM8G?H&0WZ>^VlmUvt0UBqONllailnu0Oy>e8# zD#T43+RR%q9_;5?mSM3YzZtyStksM6X!xxvh(s>PYqS-LSwCqD_h-{)lBvX)LFHp) z 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 I)J$Ig50Mf!dH?_b literal 422404 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�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

    Rz7q;DqlnA7p0rp*AJ(ah65xx`mL{P^jc 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 }=0vqWxe+wmOv(oExw7YF`hSzF0HFS~@;}gEt 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� z)+b#^pFD6z`4zm^1jW3!P)RL6P;eRXQ1ym8-Pa8xT1V*k7($!t$ej7hX$Q$~>kTlZ zJp-0)zU_vv2LE{}T(TNqbvW-Ej2?InzKe6H&HAmpN&r$|J|t^pxIL@v5yR`w>w9vC z<*huMaA}5e+ZU}G(jT>e`8=_qGj+!3^=({HRQY)kLE-!lx`tbw7K3cla`lZQ4_Dbv zSnC;Z$0veAiVKw|DnltpXx;F)YTmhmn4iDkMcmj-4wa^d<3bHsP*JSJ4!<(li%#=) z@~#g~zE$fk0 z7NLynFAf2+ybq~S_buQ>&qSNndqQhVkzh5^PZY8U6eyLwUM!lnldAPaB!h&|H~$^P zfxC%{j~GvYCG>7>-SBU%5NZkAR8%_OIdooO{Xe53shY10+g&A9}lu+)Oa9 zz;crfpTIH)36>=RaS&8sc^d;|U|?YQq+5K_y7r)45!sn(Hh&H zc)5_hwGf~yGtuxUf(3eu4m}K(BoOQOUHy86fLs6gS*7rQPTLUGS}wh~$H%|o?zLb! zrvAZBEvcL56n@&{>3_to0leu{lLWa-kV=eR$HCY%&y zu+U**Ol&fBff)K7STYj@`|zupaqa=>U$Yi>fL1J$%73^=mwo(Wt^c~jl}FI6=zwM3 zCx?hXHh_fov;zh;^ge$YYBPY@eyN2U4HOe62I(J*_>Sc|J5AMBF(V8YjWT3i0-#vw zY%rIdIO*KbQuKM?LMYJipc=|tv#OI0&bAg03;u}zUnJfCuzz;{l!bka5R?ZX zB~o_y#mA4SSv|0zjevcho=1ED8;@Ucl2H5Gfbh^<*?+Rbr9_#9P=EB9KMN88?^Z3MwUqREB;fp&%@0?~!)+?i(F;l%wc`h~r&Pq{G zmbJT~HjCAsI1~H)yFzDS;DzZn3!EQ0tx_Di;u_CQ5)Sc?-^u@mNlJyh{nSX=_WC^2 z>_I~6BWLjt7>L;m47%vSaS}!VISBJA&wPE{ey*vOxt1y>j`6o3$Y^Nl{&U&Yg+@5Yu|GDNsiI|wHTcH7g=H7c?qs@kHhM7g=g;U6 zl;tLEC=HsH#E@$=A!^X{`W&)#;t<+nLTZqHb1jXJ`wxgJrG~DKsW5V%1)%x5i#a!g za;Hy1LvKj^h2Edy=HC#8kO06PFFiLQJ3$%;uhk`#K|3L((zc6a0fa4Ew^y%(LN0n)8lPWgn)M3gCAqJu9?O-ziqk~x6nQA4SGDl1Rv zIskHEG*J5=WU3m=z@(TM5a@}293a|mVWp=>!3jYEeNa>DnntF2{FpyCHbz~+z1axw zT+cBG=ASf?5u#;a2wubp9W5)`n2x&%d-<-NmVLT^QN)K9;a?@$NAtqF?&bejwfdcC z+|>bygx4akSWkr7XOS&-_yR~rBUD_7ueiFCH43#nEEz}>!$?G=bmkk;c)-3&D?d-~ z`aali8h>LX6(!_cI&90kMwxl2aM)}RMWjb-h0g1}cQp6?;}N+_w@Li3O3w%}afdN5 zcOzbI0^ztLQbmH#a_n|LPO6)5_@fJ$A)R0I(9xVfOPnV+_9ReplrQhyHcz zZ`>ED9p87K%;taBNdzz(HxdR`;v>X1-?5uV@ak{m*Y#%{9gJjZJ<45q+re+wmfYLy zj!uwG!t=J(1n*J+n2$Nf=3U3!r;qHCX;wkuK_NTeW-THh5rZJm!%R}dt_oCHpl#Zd z?8hPi3OX6~(4=_r4g@mdl-iKJxA$Bu8<#Y`lFNi&zq|hO-?of{Kxhs=hjN#FsM^Cv z`j6e%ymLSjvVt*J?Hr2I8vmuBZbNd+%XzVL`HGF<7H#rAJbuGReMXSXBzDujd$Nwe z1F#(!ZH}X>QfrHkyj@^E!>#OOQy74J>s`0z`^tzK#a`9e2*8vaefdZDuBFq>ghmBC zNlx5J+gq8v*S~jcOfp`Z%IvP76GqH1G)z30W07(p18!3QX2J_0)k$3oAd19GAYA

    $@BH_~y1bF$k1t9eixAycQ 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

      kLVO_Z{vS^wkRXl48 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 diff --git a/icons/mob/humans/onmob/uniform_1.dmi b/icons/mob/humans/onmob/uniform_1.dmi index 12f4d104c2f0b58920cec89b08c21cfd7e6a0cd8..70455716c4775f050f5baab0c11d26b6fd495e04 100644 GIT binary patch literal 63721 zcmb@uWmp`~^XR*{yAxa!oIsG^Zox@Na0vtm?!gw<;6V}~i%WnY!6CQ?2=2~8upo=G z!0s8oKY7kM&vXCx#l0`s?HPJ!x~r;tK3!EkF*;f*1h}-gAP|T^O;u431VZV2_`}8o z&OBpp@&FE6{0v@uD%yBhyW6{Z+PgS|K)%^I>6$KCvc!>Ne+(;9Jj&-s^QZ{b{??^C zCRr&-`XX>UVyo`D_>wCgQF+kI6Sc_dzbyRGu+ zb7j&U6iuv~wy)f{x(_++xNk(p z7eDV|>l4C>ULIP)5pSXSFvfPle4L!aal_a04eTbCLt_VD zdi5IEZH$c2`9<#n#OU_TTTP2Zd=8F3vr8yg%tcEUUSJd2RAV{3iTpzD#lQTE_x;zm zuGG@D)L7?F1B?wXG;IBtLxtAk?<`4Z%Tf59RO48`#5i7;lZ4XLvPOO$5GC(q{xf~p z1=?QzCGlHQRK{Z(6O|*_NRq_+XxhiMzr^O<8ILE$D5%Rju

      pu;mFo?%Bof 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 literal 3679 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

      Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
      ` tags.
      # Changelog :cl: balance: Oppressor tailhook is now 8 deciseconds instead of 7. /:cl: Co-authored-by: InsaneRed --- .../xenomorph/abilities/praetorian/praetorian_abilities.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm index c2fbd6b9d8c4..199df345fb62 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm @@ -129,7 +129,7 @@ // Config var/max_distance = 7 - var/windup = 7 DECISECONDS + var/windup = 8 DECISECONDS /datum/action/xeno_action/activable/oppressor_punch name = "Dislocate" From 0f6be68035878bc33bf9dd0941083c410210342d Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 26 Feb 2024 10:44:52 +0000 Subject: [PATCH 126/148] Automatic changelog for PR #5759 [ci skip] --- html/changelogs/AutoChangeLog-pr-5759.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5759.yml diff --git a/html/changelogs/AutoChangeLog-pr-5759.yml b/html/changelogs/AutoChangeLog-pr-5759.yml new file mode 100644 index 000000000000..29bc5a8fdabc --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5759.yml @@ -0,0 +1,4 @@ +author: "InsaneRed" +delete-after: True +changes: + - balance: "Oppressor tailhook is now 8 deciseconds instead of 7." \ No newline at end of file From 9b28aa8e483e12c75914205a7889a9b6f203131a Mon Sep 17 00:00:00 2001 From: BadAtThisGame <79063506+BadAtThisGame302@users.noreply.github.com> Date: Mon, 26 Feb 2024 12:12:01 +0200 Subject: [PATCH 127/148] Shiva's Panic Room Nightmare Insert (#5800) # About the pull request On the day of the xenomorph incursion on the colony, the alarms started blaring calling all colonists to take shelter and hide, top Administrators made a break for the Spaceport shuttles. All but one, the Assistant Operations Manager knew the shuttles would be gone by now, so they opened the panic room for all civilians who wanted to be safe from the aliens. Now we are in the present day, the supplies are running low, the weapons are lackluster to deal with the xenos and outside contact has been cut off, same as the power in some areas. A group of doctors, scientists and normal civilians lead by the Assistant Manager must find a way to survive before it is too late for their rescues arrival. # Explain why it's good for the game More nightmare inserts are great. I like the story they provide and this time I did not majorly buff them, hopefully this can be merged same as the LV one. # Testing Photographs and Procedure
      Screenshots & Videos ![image](https://github.com/cmss13-devs/cmss13/assets/79063506/a7297c7b-4e60-41c6-a336-85dc2ea17d9c)
      # Changelog :cl: mapadd: added a new nightmare insert in the Operations Panic Room on Shivas --------- Co-authored-by: Jeff Watchson --- .../effects/landmarks/survivor_spawner.dm | 41 + .../panic_room_insert_shivas.dm | 43 + colonialmarines.dme | 1 + .../maps/Ice_Colony_v3/nightmare.json | 9 +- .../maps/Ice_Colony_v3/scenario.json | 7 + .../Ice_Colony_v3/Shivas_Snowball.dmm | 158 +- .../standalone/panic_room_hold.dmm | 2547 +++++++++++++++++ 7 files changed, 2729 insertions(+), 77 deletions(-) create mode 100644 code/modules/gear_presets/survivors/shivas_snowball/panic_room_insert_shivas.dm create mode 100644 maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm diff --git a/code/game/objects/effects/landmarks/survivor_spawner.dm b/code/game/objects/effects/landmarks/survivor_spawner.dm index 2250ebf3edf2..a22198d3d703 100644 --- a/code/game/objects/effects/landmarks/survivor_spawner.dm +++ b/code/game/objects/effects/landmarks/survivor_spawner.dm @@ -144,6 +144,47 @@ spawn_priority = SPAWN_PRIORITY_VERY_HIGH +/obj/effect/landmark/survivor_spawner/shivas_panic_room_cl + equipment = /datum/equipment_preset/survivor/wy/asstmanager + synth_equipment = /datum/equipment_preset/synth/survivor/wy/corporate_synth + intro_text = list("

      You are the last alive Senior Administrator on the Colony!

      ",\ + "You are aware of the xenomorph threat.",\ + "Your primary objective is to survive the outbreak.") + story_text = "You are the Assistant Operations Manager stationed on 'Ifrit' by Weyland-Yutani. This whole outbreak has been a giant mess, you and all other Company personnel ran to the Operations Panic Room, until you heard shooting outside and closed the shutters. You are running low on food, water and ammunition for the weapons you one-day said were 'useless' and a waste of Company dollars. You remember that Administrator Stahl sent out a distress beacon to any ship in range, hoping to get picked up by the Company, he ran to the Spaceport. You have not seen him since. In their attempts at trying to breach in, the so called 'xenomorphs' have tried attacking the shutters, but to no avail. They will soon try again. You must survive and find a way to contact Weyland-Yutani." + + spawn_priority = SPAWN_PRIORITY_VERY_HIGH + +/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc + equipment = /datum/equipment_preset/survivor/doctor + synth_equipment = /datum/equipment_preset/synth/survivor/emt_synth + intro_text = list("

      You are a Medical Doctor on the Colony!

      ",\ + "You are aware of the xenomorph threat.",\ + "Your primary objective is to survive the outbreak.") + story_text = "You are a Doctor working on 'Ifrit' for Weyland-Yutani. This whole outbreak has been a giant mess, you and all other Company personnel ran to the Operations Panic Room, until you heard shooting outside and closed the shutters. You are running low on food, water and ammunition for the weapons. You remember that the xenomorphs have a sort of implanter which latches on to your face and then... something bursts out of your chest, through the rib cage. You had plenty of those cases at the Medical Bay. In their attempts at trying to breach in, the so called 'xenomorphs' have tried attacking the shutters, but to no avail. They will soon try again. You must survive and find a way to contact Weyland-Yutani." + + spawn_priority = SPAWN_PRIORITY_HIGH + +/obj/effect/landmark/survivor_spawner/shivas_panic_room_sci + equipment = /datum/equipment_preset/survivor/scientist + synth_equipment = /datum/equipment_preset/synth/survivor/scientist_synth + intro_text = list("

      You are a Weyland-Yutani Scientist on the Colony!

      ",\ + "You are aware of the xenomorph threat.",\ + "Your primary objective is to survive the outbreak.") + story_text = "You are a Scientist working on 'Ifrit' for Weyland-Yutani. This whole outbreak has been a giant mess, you and all other Company personnel ran to the Operations Panic Room, until you heard shooting outside and closed the shutters. You are running low on food, water and ammunition for the weapons. You remember that the XX-121 species, codenamed that by Research Director Clarke, have a variety of different species, what you can assume a 'leader' of some sort and that their acid is deadly should it come in contact with you or the shutters. You ran far from the labs and have not seen some your coworkers since. In their attempts at trying to breach in, these so called 'xenomorphs' have tried attacking the shutters, but to no avail. They will soon try again. You must survive and find a way to contact Weyland-Yutani." + + spawn_priority = SPAWN_PRIORITY_HIGH + +/obj/effect/landmark/survivor_spawner/shivas_panic_room_civ + equipment = /datum/equipment_preset/survivor/civilian + synth_equipment = /datum/equipment_preset/synth/survivor/chef_synth + intro_text = list("

      You are a worker on the Colony!

      ",\ + "You are aware of the xenomorph threat.",\ + "Your primary objective is to survive the outbreak.") + story_text = "You are a civilian working on 'Ifrit' for Weyland-Yutani. This whole outbreak has been a giant mess, you and all other Company personnel ran to the Operations Panic Room, until you heard shooting outside and closed the shutters. You are running low on food, water and ammunition for the weapons. You remember hearing the alarms blaring and decided to run with a couple others to the Panic Room, hoping to be safe from the threat until rescue arrives. Now you wait along with others for their second attack on the Panic Room. In their first attempt at trying to breach in, the so called 'xenomorphs' have tried attacking the shutters, but to no avail. They will soon try again. You must survive and find a way to contact Weyland-Yutani." + + spawn_priority = SPAWN_PRIORITY_MEDIUM + + //Military Survivors// /obj/effect/landmark/survivor_spawner/lv522_forecon_tech diff --git a/code/modules/gear_presets/survivors/shivas_snowball/panic_room_insert_shivas.dm b/code/modules/gear_presets/survivors/shivas_snowball/panic_room_insert_shivas.dm new file mode 100644 index 000000000000..9f1e2c705efb --- /dev/null +++ b/code/modules/gear_presets/survivors/shivas_snowball/panic_room_insert_shivas.dm @@ -0,0 +1,43 @@ +// /obj/effect/landmark/survivor_spawner/shivas_assistant_manager +// panic_room_insert_shivas.dmm + +/datum/equipment_preset/survivor/wy/asstmanager + name = "Survivor - Corporate Assistant Manager" + flags = EQUIPMENT_PRESET_EXTRA + paygrade = PAY_SHORT_WYC7 + skills = /datum/skills/civilian/survivor/manager + assignment = "Assistant Operations Manager" + idtype = /obj/item/card/id/silver/clearance_badge/manager + faction_group = list(FACTION_WY, FACTION_SURVIVOR) + access = list( + ACCESS_WY_GENERAL, + ACCESS_WY_COLONIAL, + ACCESS_WY_MEDICAL, + ACCESS_WY_SECURITY, + ACCESS_WY_RESEARCH, + ACCESS_WY_ARMORY, + ACCESS_CIVILIAN_PUBLIC, + ACCESS_CIVILIAN_RESEARCH, + ACCESS_CIVILIAN_ENGINEERING, + ACCESS_CIVILIAN_LOGISTICS, + ACCESS_CIVILIAN_BRIG, + ACCESS_CIVILIAN_MEDBAY, + ACCESS_CIVILIAN_COMMAND, + ) + languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) + + survivor_variant = CORPORATE_SURVIVOR + +/datum/equipment_preset/survivor/wy/asstmanager/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/suit_jacket/manager(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/beaker/vial/random/good(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/paper/research_notes/grant, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + add_survivor_weapon_civilian(new_human) + ..() diff --git a/colonialmarines.dme b/colonialmarines.dme index 7569f131d1ec..18cfc47f5ad0 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -1776,6 +1776,7 @@ #include "code\modules\gear_presets\survivors\lv_624\corporate_dome_insert_lv624.dm" #include "code\modules\gear_presets\survivors\lv_624\preset_lv.dm" #include "code\modules\gear_presets\survivors\new_varadero\preset_new_varadero.dm" +#include "code\modules\gear_presets\survivors\shivas_snowball\panic_room_insert_shivas.dm" #include "code\modules\gear_presets\survivors\shivas_snowball\preset_shivas_snowball.dm" #include "code\modules\gear_presets\survivors\solaris\crashlanding-offices_insert_bigred.dm" #include "code\modules\gear_presets\survivors\solaris\preset_solaris.dm" diff --git a/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json b/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json index 9c3008696d3a..301ffa337115 100644 --- a/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json +++ b/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json @@ -96,5 +96,12 @@ "landmark": "lz2-north", "path": "lz2-variations/north/full-closed.dmm", "when": { "lz2-north": "full" } - } + }, + { + "type": "map_insert", + "landmark": "panic_room", + "chance": 0.5, + "path": "standalone/panic_room_hold.dmm", + "when": { "panic_room": "full" } + } ] diff --git a/maps/Nightmare/maps/Ice_Colony_v3/scenario.json b/maps/Nightmare/maps/Ice_Colony_v3/scenario.json index 414bbcb15abc..4b4eb7b6b92f 100644 --- a/maps/Nightmare/maps/Ice_Colony_v3/scenario.json +++ b/maps/Nightmare/maps/Ice_Colony_v3/scenario.json @@ -8,6 +8,13 @@ { "weight": 1, "type": "def", "values": { "lz2-southwest": "half", "lz2-south-gate": "none", "lz2-southeast": "half", "lz2-eastsouth": "full", "lz2-southeast-gate": "full", "lz2-east": "none", "lz2-east-gate": "half", "lz2-north": "none"} }, { "weight": 1, "type": "def", "values": { "lz2-southwest": "full", "lz2-south-gate": "none", "lz2-southeast": "half", "lz2-eastsouth": "none", "lz2-southeast-gate": "open", "lz2-east": "full", "lz2-east-gate": "none", "lz2-north": "open"} } ] +}, +{ + "type": "pick", "name": "Panic Room", + "choices": [ + { "weight": 10, "type": "def", "values": { "panic_room": "none"} }, + { "weight": 3, "type": "def", "values": { "panic_room": "full"} } + ] } ] diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm index e5c8e3e13c69..7ff89252a916 100644 --- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm +++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm @@ -7035,6 +7035,17 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) +"bws" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/shiva{ + dir = 10; + icon_state = "yellow" + }, +/area/shiva/interior/garage) "bwJ" = ( /turf/open/floor/shiva{ dir = 4; @@ -7260,12 +7271,6 @@ /obj/item/device/motiondetector/hacked, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"bIP" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) "bIV" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) @@ -10094,6 +10099,12 @@ icon_state = "yellow" }, /area/shiva/interior/colony/medseceng) +"ffg" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "panic_room" + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "ffj" = ( /turf/closed/shuttle/elevator{ dir = 10 @@ -10105,6 +10116,14 @@ icon_state = "yellow" }, /area/shiva/interior/lz2_habs) +"ffo" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/shiva{ + icon_state = "yellow" + }, +/area/shiva/interior/garage) "ffw" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/shiva{ @@ -10768,14 +10787,6 @@ /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"fNR" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/shiva/interior/garage) "fOa" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -11 @@ -10911,13 +10922,6 @@ icon_state = "floor3" }, /area/shiva/interior/aerodrome) -"fWJ" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/lz2_habs) "fXp" = ( /obj/structure/prop/invuln{ desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; @@ -11956,17 +11960,6 @@ dir = 1 }, /area/shiva/interior/colony/central) -"hat" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/garage) "hbo" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, @@ -12028,13 +12021,6 @@ icon_state = "wred" }, /area/shiva/interior/colony/medseceng) -"hgk" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, -/area/shiva/interior/garage) "hgI" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, @@ -14767,10 +14753,6 @@ icon_state = "floor3" }, /area/shiva/exterior/lz2_fortress) -"jTR" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, -/area/shiva/interior/colony/medseceng) "jTT" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -18191,6 +18173,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/medseceng) +"npM" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) "npY" = ( /obj/structure/inflatable, /turf/open/auto_turf/snow/layer3, @@ -18446,6 +18432,13 @@ /obj/structure/machinery/space_heater, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) +"nED" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "yellowfull" + }, +/area/shiva/interior/lz2_habs) "nEH" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/decal/warning_stripes{ @@ -18544,6 +18537,12 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) +"nJu" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/shiva{ + icon_state = "yellow" + }, +/area/shiva/interior/garage) "nKc" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ dir = 1; @@ -19331,6 +19330,13 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"oDJ" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "yellow" + }, +/area/shiva/interior/garage) "oDM" = ( /turf/open/floor/shiva{ dir = 10; @@ -27212,12 +27218,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"wZO" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/shiva/interior/garage) "wZW" = ( /obj/structure/bed, /turf/open/floor/wood, @@ -27285,6 +27285,12 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/shiva/interior/colony/botany) +"xdk" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/garage) "xdT" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, @@ -37097,7 +37103,7 @@ puZ puZ puZ anc -fWJ +nED mCn uRi xQJ @@ -37421,7 +37427,7 @@ puZ puZ puZ anc -fWJ +nED mCn cce xQJ @@ -37745,7 +37751,7 @@ puZ puZ puZ anc -fWJ +nED mCn cce xQJ @@ -43668,7 +43674,7 @@ tHd tHd jMf tHd -jMf +ffg tHd jMf ofw @@ -53212,7 +53218,7 @@ ver ver ver fEO -hat +bws ktd bFg bIV @@ -53374,7 +53380,7 @@ ver ver ver ver -fNR +ffo ktd cZk bIV @@ -54184,7 +54190,7 @@ aAh ver ver ver -wZO +nJu ktd cZk bFg @@ -54346,7 +54352,7 @@ ver ver ver pNf -hgk +oDJ ktd gJo lTc @@ -54987,11 +54993,11 @@ oQl oQl oQl ktd -bIP +xdk tXd aAh pSD -bIP +xdk ktd oQl oQl @@ -55149,11 +55155,11 @@ oQl oQl oQl ktd -bIP +xdk ush vUL aCA -bIP +xdk ktd oQl oQl @@ -55312,9 +55318,9 @@ oQl oQl ktd ktd -bIP -bIP -bIP +xdk +xdk +xdk ktd ktd oQl @@ -58331,16 +58337,16 @@ acT qDT eAZ acT -jTR +npM cso agh -jTR -jTR -jTR -jTR +npM +npM +npM +npM agh cso -jTR +npM acT aii agh @@ -58493,7 +58499,7 @@ aDn eAZ eAZ aDn -jTR +npM cso agh cso @@ -58502,7 +58508,7 @@ cso cso agh cso -jTR +npM acT acT aii @@ -58658,10 +58664,10 @@ aek eXL cso agh -jTR -jTR -jTR -jTR +npM +npM +npM +npM agh cso qdd diff --git a/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm b/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm new file mode 100644 index 000000000000..15ec0c4e099d --- /dev/null +++ b/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm @@ -0,0 +1,2547 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) +"aq" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"aH" = ( +/obj/item/tool/pen/blue{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"ba" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"bi" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -5; + pixel_y = 12 + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"bI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"ce" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/interior/colony/s_admin) +"ch" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 20 + }, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/bar) +"cv" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"cL" = ( +/obj/item/prop/colony/folded_bedroll, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"cO" = ( +/turf/open/floor/shiva{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/s_admin) +"cS" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/interior/bar) +"cY" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "large" + }, +/obj/item/frame/table/reinforced, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"dg" = ( +/obj/structure/barricade/metal{ + dir = 1; + health = 210 + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"do" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"dv" = ( +/obj/item/ammo_magazine/rifle/m16, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "redfull" + }, +/area/shiva/interior/colony/s_admin) +"dF" = ( +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"eO" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/s_admin) +"eZ" = ( +/turf/open/floor/shiva{ + dir = 8; + icon_state = "redfull" + }, +/area/shiva/interior/colony/s_admin) +"ff" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"fj" = ( +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"fx" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/shiva/interior/bar) +"fM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Panic Room Shutters"; + id = "south_panicroom" + }, +/turf/open/floor/shiva, +/area/shiva/interior/colony/s_admin) +"fR" = ( +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"fT" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "green" + }, +/area/shiva/interior/colony/botany) +"gf" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"gh" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/ammo_magazine/rifle/extended{ + current_rounds = 0 + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"gk" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/shiva/interior/colony/s_admin) +"gn" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 7 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"gB" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"gL" = ( +/obj/structure/bed/bedroll, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"gO" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"gR" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"hN" = ( +/obj/item/ammo_casing, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/s_admin) +"iF" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"iS" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"iZ" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "redfull" + }, +/area/shiva/interior/colony/s_admin) +"js" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva{ + dir = 10; + icon_state = "green" + }, +/area/shiva/interior/colony/botany) +"jE" = ( +/obj/effect/acid_hole{ + dir = 4 + }, +/turf/closed/wall/shiva/prefabricated, +/area/shiva/interior/colony/s_admin) +"jK" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"jL" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"jP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/soft/sec/corp{ + pixel_y = 10 + }, +/obj/item/tool/stamp/hos, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"ky" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 10; + pixel_y = 16 + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"kB" = ( +/obj/structure/bed/bedroll, +/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"kP" = ( +/obj/structure/surface/table/woodentable{ + dir = 1; + flipped = 1 + }, +/obj/structure/machinery/computer/objective, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"kT" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"lb" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"lq" = ( +/obj/item/ammo_magazine/rifle{ + current_rounds = 0 + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"lP" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"lQ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"mC" = ( +/obj/structure/machinery/power/apc{ + dir = 8; + start_charge = 0 + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"mI" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"ne" = ( +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard/cp_bar) +"ng" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"nh" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"ns" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/rifle/ar10, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"ob" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/cans/ale, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"of" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Panic Room Shutters"; + id = "north_panicroom" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"ov" = ( +/obj/item/trash/buritto, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"oH" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva{ + icon_state = "green" + }, +/area/shiva/interior/colony/botany) +"oT" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"oY" = ( +/obj/structure/closet/crate/secure/weyland, +/obj/effect/landmark/objective_landmark/science, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"pz" = ( +/obj/item/weapon/gun/boltaction, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "redfull" + }, +/area/shiva/interior/colony/s_admin) +"pC" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"pG" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"pQ" = ( +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) +"pS" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"pV" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/shiva/interior/colony/s_admin) +"qT" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"qU" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"rB" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"rM" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"rQ" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/obj/effect/landmark/survivor_spawner/shivas_panic_room_civ, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"sq" = ( +/obj/structure/machinery/faxmachine, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"sy" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"sZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/s_admin) +"ti" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/shiva/interior/colony/s_admin) +"tk" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"tl" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"tu" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"tD" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_2" + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 9; + pixel_y = 17 + }, +/obj/effect/landmark/corpsespawner/chef, +/obj/structure/bed/bedroll, +/obj/item/bedsheet/ce, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"tG" = ( +/obj/structure/janitorialcart, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "green" + }, +/area/shiva/interior/colony/botany) +"tW" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"tY" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"ug" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/s_admin) +"uh" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/ammo_casing, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"ul" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"uA" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/shiva/interior/bar) +"uE" = ( +/obj/structure/machinery/door_control{ + id = "north_panicroom"; + pixel_y = 30 + }, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"uJ" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"uM" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"uP" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"uR" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"vn" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"vq" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"vs" = ( +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/s_admin) +"vL" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "green" + }, +/area/shiva/interior/colony/botany) +"wH" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/shiva/interior/colony/s_admin) +"wM" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_y = 5 + }, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"wO" = ( +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "large" + }, +/obj/item/shard{ + icon_state = "large" + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"wW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/s_admin) +"wX" = ( +/turf/open/floor/shiva{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/s_admin) +"wY" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) +"xa" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"xg" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"xD" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/structure/machinery/light/double, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"xZ" = ( +/obj/item/storage/belt/marine, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"yd" = ( +/obj/item/weapon/gun/rifle/ar10, +/obj/item/ammo_magazine/rifle/ar10, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "redfull" + }, +/area/shiva/interior/colony/s_admin) +"ye" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner/shivas_panic_room_cl, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"yi" = ( +/obj/item/trash/wy_chips_pepper, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"yo" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"yq" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/decal/remains/human, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"yz" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"yQ" = ( +/obj/effect/landmark/survivor_spawner/shivas_panic_room_sci, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"yS" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/weapon/gun/boltaction, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "redfull" + }, +/area/shiva/interior/colony/s_admin) +"zc" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"zi" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"zp" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"zu" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "green" + }, +/area/shiva/interior/colony/botany) +"zw" = ( +/obj/item/ammo_casing, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"zA" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"Ad" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"Av" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "redfull" + }, +/area/shiva/interior/colony/s_admin) +"AC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"AY" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"AZ" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/shiva/interior/colony/s_admin) +"Bg" = ( +/obj/structure/machinery/light_construct{ + dir = 1 + }, +/obj/item/light_bulb/tube/prison, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Bq" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"Bv" = ( +/obj/structure/machinery/door_control{ + id = "south_panicroom"; + pixel_x = 30 + }, +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"BD" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11; + pixel_y = 20 + }, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/bar) +"BQ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/shiva/interior/bar) +"BU" = ( +/obj/effect/landmark/survivor_spawner/shivas_panic_room_civ, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Cc" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/shiva/interior/colony/s_admin) +"Cd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Cu" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"Cx" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"CZ" = ( +/obj/item/ammo_casing, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Dg" = ( +/obj/effect/decal/cleanable/vomit, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Dl" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Dx" = ( +/obj/structure/machinery/light/double, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"DB" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/s_admin) +"DU" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"DW" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"DY" = ( +/obj/item/trash/burger, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"EX" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"Fa" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/shiva/interior/colony/s_admin) +"Fc" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/rifle/ar10, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"Ff" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/shiva/interior/colony/s_admin) +"Fg" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) +"Fn" = ( +/turf/open/floor/shiva{ + icon_state = "radiator_tile" + }, +/area/shiva/interior/bar) +"Fp" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Fx" = ( +/obj/structure/surface/table, +/obj/structure/prop/ice_colony/hula_girl, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"FH" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/stack/rods, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"FK" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"FY" = ( +/turf/template_noop, +/area/template_noop) +"GC" = ( +/turf/closed/wall/shiva/prefabricated, +/area/shiva/interior/colony/s_admin) +"GJ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"GQ" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgibhead" + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"He" = ( +/obj/item/stool, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Hf" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"Hp" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/s_admin) +"Hx" = ( +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"HA" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"Ik" = ( +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"Iy" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/corpsespawner/wysec, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"IB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"IQ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"Jp" = ( +/obj/item/ammo_magazine/rifle/extended{ + current_rounds = 0 + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"Jv" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"Jx" = ( +/turf/open/floor/shiva{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/botany) +"JF" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"JQ" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "redfull" + }, +/area/shiva/interior/colony/s_admin) +"Kb" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/botany) +"Ko" = ( +/obj/structure/bed/chair, +/obj/item/ammo_casing, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Kp" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"KO" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) +"KR" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"Ld" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/shiva{ + icon_state = "green" + }, +/area/shiva/interior/colony/botany) +"Lh" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Lk" = ( +/obj/structure/largecrate/random/case, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard/cp_bar) +"Lr" = ( +/obj/structure/prop/ice_colony/tiger_rug{ + icon_state = "White" + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Lu" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/s_admin) +"LE" = ( +/turf/open/floor/shiva{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/shiva/interior/bar) +"LF" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"LU" = ( +/turf/open/floor/shiva{ + icon_state = "snow_mat" + }, +/area/shiva/interior/colony/botany) +"Mi" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"MG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Panic Room Shutters"; + id = "south_panicroom" + }, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"ML" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/shiva/interior/colony/s_admin) +"MR" = ( +/obj/structure/safe, +/obj/item/spacecash/c1000{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c500, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "redfull" + }, +/area/shiva/interior/colony/s_admin) +"Nq" = ( +/turf/open/floor/shiva{ + icon_state = "green" + }, +/area/shiva/interior/colony/botany) +"Nt" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib6" + }, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/s_admin) +"Nu" = ( +/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"NC" = ( +/obj/item/lightstick/variant/planted, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"On" = ( +/obj/item/stack/rods, +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"ON" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) +"OV" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"Pb" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"Py" = ( +/obj/item/trash/kepler, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"PG" = ( +/turf/open/floor/shiva{ + dir = 4; + icon_state = "snow_mat" + }, +/area/shiva/interior/colony/botany) +"PI" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"PV" = ( +/obj/structure/bed/bedroll, +/obj/effect/landmark/survivor_spawner/shivas_panic_room_sci, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Qh" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/shiva/interior/bar) +"QS" = ( +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"Rs" = ( +/obj/structure/surface/table, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/obj/item/paper_bin{ + pixel_y = 7 + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Ru" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"Ry" = ( +/obj/item/tool/mop{ + pixel_x = -10 + }, +/turf/open/floor/shiva{ + icon_state = "green" + }, +/area/shiva/interior/colony/botany) +"RD" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"RH" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"RP" = ( +/turf/open/floor/shiva{ + dir = 10; + icon_state = "green" + }, +/area/shiva/interior/colony/botany) +"RQ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"RS" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"Se" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"Sl" = ( +/obj/structure/machinery/disposal/broken, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"Sq" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "green" + }, +/area/shiva/interior/colony/botany) +"SB" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"SU" = ( +/obj/item/device/flashlight/lamp{ + pixel_y = 7 + }, +/obj/item/frame/table/wood, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"Tc" = ( +/obj/item/frame/table/reinforced, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Td" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/ammo_casing, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"Tj" = ( +/obj/structure/machinery/disposal/broken, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Tr" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"TG" = ( +/obj/item/prop/colony/folded_bedroll, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "redfull" + }, +/area/shiva/interior/colony/s_admin) +"TI" = ( +/obj/item/ammo_casing, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/shiva/interior/colony/s_admin) +"TL" = ( +/obj/item/weapon/gun/energy/taser, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"Ub" = ( +/obj/item/trash/kepler/flamehot, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"Ue" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/item/ammo_casing, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/shiva/interior/bar) +"UD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Administration"; + locked = 1 + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"UW" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva{ + dir = 10; + icon_state = "green" + }, +/area/shiva/interior/colony/botany) +"Vb" = ( +/obj/item/bodybag, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Vi" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"Vl" = ( +/obj/effect/acid_hole, +/turf/closed/wall/shiva/prefabricated, +/area/shiva/interior/colony/s_admin) +"Vy" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"VC" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"VE" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Colony Security Checkpoint" + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"VX" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"Wj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Wm" = ( +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) +"WA" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/shiva/interior/bar) +"WT" = ( +/obj/item/frame/table/wood, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/shiva/interior/colony/s_admin) +"Xt" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) +"Xu" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/shiva/interior/colony/s_admin) +"XP" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"YD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"YS" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/shiva/interior/colony/s_admin) +"YT" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva{ + dir = 1 + }, +/area/shiva/interior/colony/s_admin) +"Zi" = ( +/obj/item/weapon/gun/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/shiva/interior/bar) +"Zl" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/shiva/interior/colony/s_admin) +"ZD" = ( +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/shiva{ + icon_state = "bluefull" + }, +/area/shiva/interior/colony/s_admin) + +(1,1,1) = {" +PG +ce +FY +FY +FY +FY +FY +FY +FY +FY +FY +FY +ce +ce +ce +ce +ce +ce +pQ +pQ +Ik +FY +FY +"} +(2,1,1) = {" +PG +ce +FY +FY +FY +FY +FY +FY +FY +FY +FY +ce +ce +JQ +yS +Av +yd +ce +QS +NC +QS +FY +FY +"} +(3,1,1) = {" +Kb +ce +FY +FY +FY +FY +FY +FY +FY +FY +FY +ce +MR +wM +fj +rQ +iZ +ce +Ik +jK +pQ +FY +FY +"} +(4,1,1) = {" +RP +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +fj +xZ +fj +dv +ce +yz +Ik +Ik +FY +FY +"} +(5,1,1) = {" +RP +GC +iS +pG +tu +ba +Cd +mC +dF +dF +qT +JF +ce +pz +TG +eZ +ce +ce +ce +ce +Ik +FY +FY +"} +(6,1,1) = {" +RP +Vl +dF +Hx +Ad +Hx +dF +CZ +Hx +Ad +zw +dF +ce +Nu +Ub +xZ +Pb +vq +pS +ce +QS +FY +FY +"} +(7,1,1) = {" +Ld +nh +rM +tk +YT +zi +xa +dF +tk +Kp +rB +qU +ce +ul +dF +dF +ov +yQ +kB +ce +Ik +FY +FY +"} +(8,1,1) = {" +RP +Vi +CZ +lQ +gO +uM +dF +dF +RH +Tr +PI +Dx +ce +uE +CZ +tl +Dl +dF +iF +ce +NC +FY +FY +"} +(9,1,1) = {" +UW +GC +mI +Hx +RS +Hx +CZ +dF +Hx +RS +Jp +dF +of +Td +RD +Rs +sq +ye +fj +ce +QS +FY +FY +"} +(10,1,1) = {" +js +zA +do +Hx +Hx +lP +dF +Lr +Hx +Hx +Hx +yq +of +Vy +Fp +Tj +Fx +tY +oY +ce +QS +FY +FY +"} +(11,1,1) = {" +Nq +tW +dg +uh +lq +Hx +dF +dF +Hx +Hx +Hx +CZ +of +ns +PV +He +Wj +dF +gf +ce +QS +FY +FY +"} +(12,1,1) = {" +oH +GC +Bg +oT +Cx +Hx +dF +CZ +LF +Ad +Hx +dF +of +Fc +CZ +DY +dF +BU +ce +ce +cS +ch +Fn +"} +(13,1,1) = {" +Nq +aq +rM +tk +Bq +XP +dF +dF +tk +Bq +XP +sy +ce +YS +dF +dF +cL +bi +Mi +MG +Qh +LE +LE +"} +(14,1,1) = {" +Nq +SB +FK +RH +HA +Cu +dF +dF +cY +HA +Cu +dF +ce +yi +BU +dF +dF +Ko +gB +fM +Ue +Zi +LE +"} +(15,1,1) = {" +Sq +GC +dF +Hx +RS +Hx +CZ +dF +zw +RS +Hx +dF +ce +fj +Vb +ky +CZ +ZD +GJ +fM +fx +BQ +BQ +"} +(16,1,1) = {" +vL +GC +dF +Tc +VC +dF +Lh +dF +gR +dF +vn +Xt +ce +Se +Dg +dF +yQ +CZ +Py +fM +uA +LE +LE +"} +(17,1,1) = {" +fT +ce +GC +GC +GC +jE +GC +ce +oT +cO +cO +uh +ce +tD +RQ +uP +IQ +gL +Bv +MG +WA +LE +LE +"} +(18,1,1) = {" +Ry +GC +DU +jL +TL +fR +ob +GC +AY +vs +vs +AY +ce +GC +GC +GC +GC +ce +ce +ce +cS +BD +Fn +"} +(19,1,1) = {" +tG +GC +gn +fR +fR +Iy +jP +GC +Ru +Hp +cO +Hx +GC +VX +cv +kP +lb +GC +ai +Wm +FY +FY +FY +"} +(20,1,1) = {" +Sq +GC +Hf +ff +OV +xg +YD +GC +gh +cO +cO +Hx +FH +IB +aH +SU +xD +GC +ne +Wm +FY +FY +FY +"} +(21,1,1) = {" +zu +ce +ce +VE +ce +wO +bI +ce +EX +cO +hN +Hx +GC +pC +fj +kT +fj +GC +KO +ON +FY +FY +FY +"} +(22,1,1) = {" +Jx +On +KR +GQ +uR +Hx +Hx +On +Cx +Nt +cO +AC +ce +GC +GC +AZ +GC +ce +Fg +Wm +FY +FY +FY +"} +(23,1,1) = {" +PG +UD +Lu +wX +TI +wX +ug +UD +eO +wW +vs +Hx +GC +Ff +wH +AZ +WT +GC +Lk +Wm +FY +FY +FY +"} +(24,1,1) = {" +LU +Hx +eO +wX +DB +wX +wX +Hx +sZ +vs +vs +zw +Zl +ML +AZ +ti +wH +pV +ne +Wm +FY +FY +FY +"} +(25,1,1) = {" +PG +nh +zc +zw +Hx +Hx +Hx +nh +DW +Hx +Hx +uJ +gk +ng +wH +Cc +Fa +GC +ne +ON +FY +FY +FY +"} +(26,1,1) = {" +PG +GC +Hx +Hx +Jv +Hx +AY +GC +yo +Hx +Jv +zp +GC +Sl +Xu +wH +AZ +GC +wY +Wm +FY +FY +FY +"} +(27,1,1) = {" +PG +GC +GC +GC +GC +GC +GC +GC +GC +GC +GC +ce +ce +ce +ce +GC +GC +ce +ne +Wm +FY +FY +FY +"} From f9b18f9191a4b18fb5cc9235e67ddd74050c085b Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 26 Feb 2024 11:03:12 +0000 Subject: [PATCH 128/148] Automatic changelog for PR #5800 [ci skip] --- html/changelogs/AutoChangeLog-pr-5800.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5800.yml diff --git a/html/changelogs/AutoChangeLog-pr-5800.yml b/html/changelogs/AutoChangeLog-pr-5800.yml new file mode 100644 index 000000000000..ea11b03f077c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5800.yml @@ -0,0 +1,4 @@ +author: "BadAtThisGame302" +delete-after: True +changes: + - mapadd: "added a new nightmare insert in the Operations Panic Room on Shivas" \ No newline at end of file From 405037d89ef0d21d703c9773ffda10fe49b1c6fc Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Mon, 26 Feb 2024 10:12:36 +0000 Subject: [PATCH 129/148] (Slightly) Less confusing failure message for built-in visors (#5804) # About the pull request Resolves #5799 by adding a failure message when trying to remove a built-in helmet visor. # Explain why it's good for the game Slightly less confusing for players. # Testing Photographs and Procedure
      Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
      ` tags.
      # Changelog :cl: qol: Added a failure message when trying to remove a built-in helmet visor. /:cl: --- code/modules/clothing/head/helmet.dm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index adfbfb023309..f1ee7e82d8bc 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -511,7 +511,17 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( new_action.give_to(user) return - if(HAS_TRAIT(attacking_item, TRAIT_TOOL_SCREWDRIVER) && length(inserted_visors)) + if(HAS_TRAIT(attacking_item, TRAIT_TOOL_SCREWDRIVER)) + // If there isn't anything to remove, return. + if(!length(inserted_visors)) + // If the user is trying to remove a built-in visor, give them a more helpful failure message. + switch(length(built_in_visors)) + if(1) // Messy plural handling + to_chat(user, SPAN_WARNING("The visor on [src] is built-in!")) + if(2 to INFINITY) + to_chat(user, SPAN_WARNING("The visors on [src] are built-in!")) + return + if(active_visor) var/obj/item/device/helmet_visor/temp_visor_holder = active_visor active_visor = null From 75d16d6420c80408f758e614a908872b1df66e6a Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 26 Feb 2024 11:16:51 +0000 Subject: [PATCH 130/148] Automatic changelog for PR #5804 [ci skip] --- html/changelogs/AutoChangeLog-pr-5804.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5804.yml diff --git a/html/changelogs/AutoChangeLog-pr-5804.yml b/html/changelogs/AutoChangeLog-pr-5804.yml new file mode 100644 index 000000000000..5b044fa988cb --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5804.yml @@ -0,0 +1,4 @@ +author: "SabreML" +delete-after: True +changes: + - qol: "Added a failure message when trying to remove a built-in helmet visor." \ No newline at end of file From efccddbfaa68926b85fcd038e9e112b8c214397f Mon Sep 17 00:00:00 2001 From: Julian56 <117036822+Huffie56@users.noreply.github.com> Date: Mon, 26 Feb 2024 13:07:29 +0100 Subject: [PATCH 131/148] Balance : set base price for B12 to 30 and for the M4 to 20. (#5698) # About the pull request 1-set base price for B12 to 30 and for the M4 to 20. 2-Medic comtech and SL have a discount of 20% because they have extra supplies to by that are dependent on their role. 3-I also remove the free M4 for the FTL. 4-change price for drop pouch from 15 to 10 If you think M4 base price is to low i can increase it to 25. if you think discount is to high or low i can change it... if you think removing M4 to FTL is to much i can give them a discount for armors or just for the M4 lowering it to 16 instead of 20 # Explain why it's good for the game 1-base price for B12 was already 30 but i am lowering M4 cost because it only give limited advantage 2-Medic comtech and SL had all some sort of discount for a bunch of items so here i am just picking a discount that seem balance. 3-This is to avoid people choosing FTL for the extra free armor instead of picking Rifleman. 4-I think it's to expensive for what it is and it's very niche use. and because Spartan asked me. ![image](https://github.com/cmss13-devs/cmss13/assets/117036822/a951f5c7-2593-4e18-bf93-16901dc282b2) # Testing Photographs and Procedure
      Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
      ` tags.
      # Changelog :cl: balance: set base price for B12 to 30 and for the M4 to 20. balance: Medic comtech and SL have a discount of 20% for the B12 and M4. (B12=24 & M4=16=) balance: removed the free M4 for FTL but added FTL the option to buy it for 20. balance: changed the price of Drop Pouch from 15 to 10. /:cl: --------- Co-authored-by: Julien --- .../vending/vendor_types/squad_prep/squad_engineer.dm | 2 +- .../vending/vendor_types/squad_prep/squad_leader.dm | 2 +- .../vending/vendor_types/squad_prep/squad_medic.dm | 4 ++-- .../vending/vendor_types/squad_prep/squad_rifleman.dm | 4 ++-- .../machinery/vending/vendor_types/squad_prep/squad_tl.dm | 7 ++++++- 5 files changed, 12 insertions(+), 7 deletions(-) diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_engineer.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_engineer.dm index 4053b9294c13..95864404f4e8 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_engineer.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_engineer.dm @@ -51,7 +51,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_engi, list( list("ARMORS", 0, null, null, null), list("M3 B12 Pattern Marine Armor", 24, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR), - list("M4 Pattern Armor", 30, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR), + list("M4 Pattern Armor", 16, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR), list("RESTRICTED FIREARMS", 0, null, null, null), list("VP78 Pistol", 8, /obj/item/storage/box/guncase/vp78, null, VENDOR_ITEM_REGULAR), diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_leader.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_leader.dm index 845d169a701a..0039d5b03250 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_leader.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_leader.dm @@ -16,7 +16,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_leader, list( list("Basic Engineering Supplies", 0, /obj/item/storage/box/kit/engineering_supply_kit, MARINE_CAN_BUY_KIT, VENDOR_ITEM_REGULAR), list("ARMORS", 0, null, null, null), - list("M4 Pattern Armor", 30, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR), + list("M4 Pattern Armor", 16, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR), list("CLOTHING ITEMS", 0, null, null, null), list("Machete Scabbard (Full)", 4, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR), diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm index 7d16d15af6fd..b29b528ded13 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm @@ -72,8 +72,8 @@ GLOBAL_LIST_INIT(cm_vending_gear_medic, list( list("VP78 Magazine", 3, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR), list("ARMORS", 0, null, null, null), - list("M3 B12 Pattern Marine Armor", 28, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR), - list("M4 Pattern Armor", 28, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR), + list("M3 B12 Pattern Marine Armor", 24, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR), + list("M4 Pattern Armor", 16, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR), list("RESTRICTED FIREARMS", 0, null, null, null), list("VP78 Pistol", 8, /obj/item/storage/box/guncase/vp78, null, VENDOR_ITEM_REGULAR), diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_rifleman.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_rifleman.dm index b132d8d4f13d..0b980fc31960 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_rifleman.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_rifleman.dm @@ -82,13 +82,13 @@ GLOBAL_LIST_INIT(cm_vending_clothing_marine, list( list("ARMORS", 0, null, null, null), list("M3 B12 Pattern Marine Armor", 30, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR), - list("M4 Pattern Armor", 30, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR), + list("M4 Pattern Armor", 20, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR), list("CLOTHING ITEMS", 0, null, null, null), list("Webbing", 10, /obj/item/clothing/accessory/storage/webbing, null, VENDOR_ITEM_REGULAR), list("Brown Webbing Vest", 15, /obj/item/clothing/accessory/storage/black_vest/brown_vest, null, VENDOR_ITEM_REGULAR), list("Black Webbing Vest", 15, /obj/item/clothing/accessory/storage/black_vest, null, VENDOR_ITEM_REGULAR), - list("Drop Pouch", 15, /obj/item/clothing/accessory/storage/droppouch, null, VENDOR_ITEM_REGULAR), + list("Drop Pouch", 10, /obj/item/clothing/accessory/storage/droppouch, null, VENDOR_ITEM_REGULAR), list("Shoulder Holster", 15, /obj/item/clothing/accessory/storage/holster, null, VENDOR_ITEM_REGULAR), list("Machete Scabbard (Full)", 15, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR), list("Machete Pouch (Full)", 15, /obj/item/storage/pouch/machete/full, null, VENDOR_ITEM_REGULAR), diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_tl.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_tl.dm index a013ddb15212..a70b7046af81 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_tl.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_tl.dm @@ -33,6 +33,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_tl, list( list("ARMORS", 0, null, null, null), list("M3 B12 Pattern Marine Armor", 30, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR), + list("M4 Pattern Armor", 20, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR), list("CLOTHING ITEMS", 0, null, null, null), list("Machete Scabbard (Full)", 5, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR), @@ -89,11 +90,15 @@ GLOBAL_LIST_INIT(cm_vending_gear_tl, list( GLOBAL_LIST_INIT(cm_vending_clothing_tl, list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), list("Standard Marine Apparel", 0, list(/obj/item/clothing/under/marine, /obj/item/clothing/shoes/marine/knife, /obj/item/clothing/gloves/marine, /obj/item/device/radio/headset/almayer/marine, /obj/item/clothing/head/helmet/marine/rto), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), - list("M4 Pattern Armor", 0, /obj/item/clothing/suit/storage/marine/medium/rto, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), list("Map", 0, /obj/item/map/current_map, MARINE_CAN_BUY_KIT, VENDOR_ITEM_MANDATORY), list("Essential Fireteam Leader Utilities", 0, /obj/effect/essentials_set/tl, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), + list("ARMOR (CHOOSE 1)", 0, null, null, null), + list("Light Armor", 0, /obj/item/clothing/suit/storage/marine/light, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Medium Armor", 0, /obj/item/clothing/suit/storage/marine/medium, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Heavy Armor", 0, /obj/item/clothing/suit/storage/marine/heavy, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("BELT (CHOOSE 1)", 0, null, null, null), list("G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), From c85d4d72248e16411336140d97f3f22fbe105b43 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 26 Feb 2024 12:16:44 +0000 Subject: [PATCH 132/148] Automatic changelog for PR #5698 [ci skip] --- html/changelogs/AutoChangeLog-pr-5698.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5698.yml diff --git a/html/changelogs/AutoChangeLog-pr-5698.yml b/html/changelogs/AutoChangeLog-pr-5698.yml new file mode 100644 index 000000000000..39ceb86101f2 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5698.yml @@ -0,0 +1,7 @@ +author: "Huffie56" +delete-after: True +changes: + - balance: "set base price for B12 to 30 and for the M4 to 20." + - balance: "Medic comtech and SL have a discount of 20% for the B12 and M4. (B12=24 & M4=16=)" + - balance: "removed the free M4 for FTL but added FTL the option to buy it for 20." + - balance: "changed the price of Drop Pouch from 15 to 10." \ No newline at end of file From 0a04c899c8558f35f0441d1dbe5c7483815774b0 Mon Sep 17 00:00:00 2001 From: Megaddd Date: Mon, 26 Feb 2024 14:43:39 +0200 Subject: [PATCH 133/148] Reduces automatic research chemical contents property string (#5738) # About the pull request Obfuscates automatic research chem suffix on health analyzers, for example, `ACR1ATX1BNM5REG1BST10OMB5NGN1NTR1` to be just `7a`, or any other two random characters instead. Does not hide properties from showing on the research paper as they did before however. # Explain why it's good for the game Cleans research chemicals with many properties from excessive text bloat on health analyzers Non-corpsman grunts with a medical analyzer on the front should probably not be able to deduce all effects of a custom research chemical just based on its unique identifier. You can still ask your local corpsman or researcher. Or they may also simply label the containers appropriately. # Testing Photographs and Procedure
      Screenshots & Videos ![image](https://github.com/cmss13-devs/cmss13/assets/8878624/c27b76a5-a9fb-4066-94bf-40e213be38fb) ![image](https://github.com/cmss13-devs/cmss13/assets/8878624/d903b30c-9739-4b69-a20e-47ae41982fd6) (Before this PR, this whole thing would show up in medical analyzer next to your chem name, ew)
      # Changelog :cl: balance: health analyzer no longer shows large custom research chem property text rows. /:cl: --------- Co-authored-by: Megaddd <> Co-authored-by: BeagleGaming1 <56142455+BeagleGaming1@users.noreply.github.com> --- .../reagents/chemistry_machinery/chem_simulator.dm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/code/modules/reagents/chemistry_machinery/chem_simulator.dm b/code/modules/reagents/chemistry_machinery/chem_simulator.dm index 8a95e3f3b07e..dd7f008e47d2 100644 --- a/code/modules/reagents/chemistry_machinery/chem_simulator.dm +++ b/code/modules/reagents/chemistry_machinery/chem_simulator.dm @@ -380,8 +380,7 @@ relate(C) if(!C.original_id) C.original_id = target.data.id - C.id = encode_reagent(C) - C.name = C.id + encode_reagent(C) if(C.id in simulations) //We've already simulated this before, so we don't need to continue C = GLOB.chemical_reagents_list[C.id] @@ -577,8 +576,8 @@ var/obj/item/paper/research_report/report = new /obj/item/paper/research_report/(loc) var/datum/reagent/D = GLOB.chemical_reagents_list[id] var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) - report.name = "Simulation result for [D.name]" - report.info += "

      Official Company Document
      Simulated Synthesis Report

      Result for [D.name]

      " + report.name = "Simulation result for [D.id]" + report.info += "

      Official Company Document
      Simulated Synthesis Report

      Result for [D.id]

      " report.generate(D) report.info += "

      This report was automatically printed by the Synthesis Simulator.
      The [MAIN_SHIP_NAME], [time2text(world.timeofday, "MM/DD")]/[GLOB.game_year], [worldtime2text()]

      \n" playsound(loc, 'sound/machines/twobeep.ogg', 15, 1) @@ -590,7 +589,9 @@ var/suffix = " " for(var/datum/chem_property/P in C.properties) suffix += P.code+"[P.level]" - return O.name + suffix + C.id = O.name + " " + copytext(md5(suffix),1,3) + suffix //Show random suffix AND real properties on research paper + C.name = O.name + " " + copytext(md5(suffix),1,3) //Show ONLY random suffix on health analyzers + return /obj/structure/machinery/chem_simulator/proc/complexity_to_string_list() var/list/L = list() From 82b160b68870c267d62ada4951a143632e74d89b Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 26 Feb 2024 12:52:50 +0000 Subject: [PATCH 134/148] Automatic changelog for PR #5738 [ci skip] --- html/changelogs/AutoChangeLog-pr-5738.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5738.yml diff --git a/html/changelogs/AutoChangeLog-pr-5738.yml b/html/changelogs/AutoChangeLog-pr-5738.yml new file mode 100644 index 000000000000..206e2fa3e6c7 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5738.yml @@ -0,0 +1,4 @@ +author: "Megaddd" +delete-after: True +changes: + - balance: "health analyzer no longer shows large custom research chem property text rows." \ No newline at end of file From 96c1dbc9320e4b44c8d98fe4f3e6e4557f8fcfd3 Mon Sep 17 00:00:00 2001 From: harryob Date: Mon, 26 Feb 2024 12:48:05 +0000 Subject: [PATCH 135/148] speeds up ci runs by 3 minutes (#5803) closes #5679 --- code/controllers/subsystem/ticker.dm | 8 ++++++++ code/game/world.dm | 1 + 2 files changed, 9 insertions(+) diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index 20691a1a7723..f265315460e3 100644 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -8,6 +8,10 @@ SUBSYSTEM_DEF(ticker) var/current_state = GAME_STATE_STARTUP //State of current round used by process() var/force_ending = FALSE //Round was ended by admin intervention + + /// If TRUE, there is no lobby phase, the game starts immediately. + var/start_immediately = FALSE + var/bypass_checks = FALSE //Bypass mode init checks var/setup_failed = FALSE //If the setup has failed at any point var/setup_started = FALSE @@ -80,6 +84,10 @@ SUBSYSTEM_DEF(ticker) var/mob/new_player/player = i if(player.ready) // TODO: port this == PLAYER_READY_TO_PLAY) ++totalPlayersReady + + if(start_immediately) + time_left = 0 + if(time_left < 0 || delay_start) return diff --git a/code/game/world.dm b/code/game/world.dm index 958278042ea5..e55741ca71e5 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -374,6 +374,7 @@ GLOBAL_LIST_INIT(reboot_sfx, file2list("config/reboot_sfx.txt")) /world/proc/HandleTestRun() // Wait for the game ticker to initialize Master.sleep_offline_after_initializations = FALSE + SSticker.start_immediately = TRUE UNTIL(SSticker.initialized) //trigger things to run the whole process From 62ef80e60bde1196f7a60af5f5fa0ebe74502f32 Mon Sep 17 00:00:00 2001 From: Julian56 <117036822+Huffie56@users.noreply.github.com> Date: Mon, 26 Feb 2024 16:40:11 +0100 Subject: [PATCH 136/148] adding vendors for maintenance technician (#5749) # About the pull request # Explain why it's good for the game # Testing Photographs and Procedure
      Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
      ` tags.
      # Changelog :cl: add: adding vendor for maintenance technician. code: remove some item that maintenance technician spawned with and put them in is vendor instead. maptweak: replaced secured closet by vendor for maintenance technician. /:cl: --------- Co-authored-by: Julien --- .../vending/vendor_types/crew/engineering.dm | 74 + code/modules/gear_presets/uscm_ship.dm | 8 - colonialmarines.dme | 1 + maps/map_files/USS_Almayer/USS_Almayer.dmm | 52864 ++++++++-------- 4 files changed, 26502 insertions(+), 26445 deletions(-) create mode 100644 code/game/machinery/vending/vendor_types/crew/engineering.dm diff --git a/code/game/machinery/vending/vendor_types/crew/engineering.dm b/code/game/machinery/vending/vendor_types/crew/engineering.dm new file mode 100644 index 000000000000..9d5a809e52f7 --- /dev/null +++ b/code/game/machinery/vending/vendor_types/crew/engineering.dm @@ -0,0 +1,74 @@ +//------------ MT CLOTHING VENDOR--------------- + +GLOBAL_LIST_INIT(cm_vending_clothing_maintenance_technician, list( + list("MAINTENANCE SET (MANDATORY)", 0, null, null, null), + list("Essential Maintenance Set", 0, /obj/effect/essentials_set/maintenance, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), + + list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("Insulated Gloves", 0, /obj/item/clothing/gloves/yellow, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), + list("Headset", 0, /obj/item/device/radio/headset/almayer/mt, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), + list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), + list("Map", 0, /obj/item/map/current_map, MARINE_CAN_BUY_KIT, VENDOR_ITEM_MANDATORY), + + list("HELMET (CHOOSE 1)", 0, null, null, null), + list("Beret, Engineering", 0, /obj/item/clothing/head/beret/eng, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("White Hardhat", 0, /obj/item/clothing/head/hardhat/white, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Orange Hardhat", 0, /obj/item/clothing/head/hardhat/orange, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Blue Hardhat", 0, /obj/item/clothing/head/hardhat/dblue, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Welding Helmet", 0, /obj/item/clothing/head/welding, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + + list("SUIT (CHOOSE 1)", 0, null, null, null), + list("Black Hazard Vest", 0, /obj/item/clothing/suit/storage/hazardvest/black, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Blue Hazard Vest", 0, /obj/item/clothing/suit/storage/hazardvest/blue, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Orange Hazard Vest", 0, /obj/item/clothing/suit/storage/hazardvest, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Yellow Hazard Vest", 0, /obj/item/clothing/suit/storage/hazardvest/yellow, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + + list("BACKPACK (CHOOSE 1)", 0, null, null, null), + list("Technician Backpack", 0, /obj/item/storage/backpack/marine/tech, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Technician Satchel", 0, /obj/item/storage/backpack/marine/satchel/tech, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Technician Welderpack", 0, /obj/item/storage/backpack/marine/engineerpack, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Technician Welder-Satchel", 0, /obj/item/storage/backpack/marine/engineerpack/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), + list("Technician Welder Chestrig", 0, /obj/item/storage/backpack/marine/engineerpack/welder_chestrig, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + + list("BELT (CHOOSE 1)", 0, null, null, null), + list("G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_MANDATORY), + + list("POUCHES (CHOOSE 2)", 0, null, null, null), + list("Medium General Pouch", 0, /obj/item/storage/pouch/general/medium, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Refillable Injectors)", 0, /obj/item/storage/pouch/firstaid/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("First-Aid Pouch (Splints, Gauze, Ointment)", 0, /obj/item/storage/pouch/firstaid/full/alternate, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("First-Aid Pouch (Pill Packets)", 0, /obj/item/storage/pouch/firstaid/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Construction Pouch", 0, /obj/item/storage/pouch/construction, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Electronics Pouch (Full)", 0, /obj/item/storage/pouch/electronics/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Tools Pouch (Full)", 0, /obj/item/storage/pouch/tools/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Flare Pouch (Full)", 0, /obj/item/storage/pouch/flare/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + + list("MASK (CHOOSE 1)", 0, null, null, null), + list("Gas Mask", 0, /obj/item/clothing/mask/gas, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + list("Rebreather", 0, /obj/item/clothing/mask/rebreather, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + + list("ACCESSORIES (CHOOSE 1)", 0, null, null, null), + list("Brown Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest/brown_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_RECOMMENDED), + list("Black Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Webbing", 0, /obj/item/clothing/accessory/storage/webbing, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + )) + +/obj/structure/machinery/cm_vending/clothing/maintenance_technician + name = "\improper ColMarTech Maintenance Technician Equipment Rack" + desc = "An automated rack hooked up to a colossal storage of Maintenance Technician standard-issue equipment." + req_access = list(ACCESS_MARINE_ENGINEERING) + vendor_role = list(JOB_MAINT_TECH) + +/obj/structure/machinery/cm_vending/clothing/maintenance_technician/get_listed_products(mob/user) + return GLOB.cm_vending_clothing_maintenance_technician + +/obj/effect/essentials_set/maintenance + spawned_gear_list = list( + /obj/item/device/lightreplacer, + /obj/item/device/demo_scanner, + /obj/item/storage/bag/trash, + /obj/item/storage/toolbox/mechanical, + /obj/item/device/flashlight, + ) diff --git a/code/modules/gear_presets/uscm_ship.dm b/code/modules/gear_presets/uscm_ship.dm index 578df21b67df..681fbd1f47ef 100644 --- a/code/modules/gear_presets/uscm_ship.dm +++ b/code/modules/gear_presets/uscm_ship.dm @@ -252,17 +252,9 @@ if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) back_item = /obj/item/storage/backpack/marine/tech - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/mt(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/engi(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/welding(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/device/demo_scanner(new_human), WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/bag/trash(new_human), WEAR_L_HAND) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/welder_chestrig, (new_human), WEAR_R_HAND) /datum/equipment_preset/uscm_ship/maint/load_rank(mob/living/carbon/human/new_human) if(new_human.client) diff --git a/colonialmarines.dme b/colonialmarines.dme index 18cfc47f5ad0..cf2c064f1292 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -973,6 +973,7 @@ #include "code\game\machinery\vending\vendor_types\antag\antag_guns_snowflake.dm" #include "code\game\machinery\vending\vendor_types\antag\antag_guns_sorted.dm" #include "code\game\machinery\vending\vendor_types\crew\commanding_officer.dm" +#include "code\game\machinery\vending\vendor_types\crew\engineering.dm" #include "code\game\machinery\vending\vendor_types\crew\medical.dm" #include "code\game\machinery\vending\vendor_types\crew\mp.dm" #include "code\game\machinery\vending\vendor_types\crew\pilot_officer.dm" diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 4f2891030011..22845ed4e40c 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -133,6 +133,15 @@ allow_construction = 0 }, /area/almayer/stair_clone) +"aaG" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "aaH" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down1"; @@ -148,6 +157,19 @@ /obj/structure/lattice, /turf/open/space, /area/space) +"aaZ" = ( +/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/aft_hallway) "aba" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -169,20 +191,10 @@ /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/lifeboat_pumps/north2) -"abj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "abk" = ( /obj/structure/window/reinforced/toughened, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"abn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "abs" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/north1) @@ -237,6 +249,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"abN" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "abQ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -273,6 +294,15 @@ icon_state = "tcomms" }, /area/almayer/shipboard/weapon_room) +"aca" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "acc" = ( /obj/structure/machinery/door/airlock/almayer/security{ access_modified = 1; @@ -295,6 +325,12 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"ace" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "acf" = ( /turf/closed/wall/almayer/outer, /area/almayer/living/starboard_garden) @@ -551,9 +587,6 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) -"acQ" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "acS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -619,9 +652,13 @@ }, /area/almayer/lifeboat_pumps/north1) "ade" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "adj" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down1"; @@ -721,6 +758,13 @@ icon_state = "test_floor4" }, /area/almayer/living/offices/flight) +"adS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "aea" = ( /obj/structure/machinery/light{ dir = 1 @@ -821,6 +865,14 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) +"aeD" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "aeE" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -1030,6 +1082,14 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) +"afA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "afB" = ( /obj/structure/machinery/light{ dir = 1 @@ -1193,6 +1253,15 @@ icon_state = "bluecorner" }, /area/almayer/living/offices/flight) +"agh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_umbilical) "agj" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/commandbunks) @@ -1224,27 +1293,6 @@ "agu" = ( /turf/open/floor/almayer, /area/almayer/living/officer_study) -"agv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - access_modified = 1; - dir = 2; - name = "\improper Requisitions Break Room"; - req_one_access_txt = "19;21" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) "agA" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -1419,14 +1467,6 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) -"ahL" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ - pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "ahN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/floor/grass, @@ -1546,6 +1586,14 @@ icon_state = "plate" }, /area/almayer/living/starboard_garden) +"aiI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) "aiJ" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down3"; @@ -1625,6 +1673,12 @@ icon_state = "redfull" }, /area/almayer/command/cic) +"ajq" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "ajs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -1739,18 +1793,6 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) -"akn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, -/area/almayer/hallways/lower/vehiclehangar) "ako" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1917,10 +1959,6 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"alh" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "alk" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -1933,6 +1971,12 @@ }, /turf/closed/wall/almayer/research/containment/wall/purple, /area/almayer/medical/containment/cell) +"alu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "alw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -2007,6 +2051,12 @@ "alX" = ( /turf/open/floor/almayer, /area/almayer/command/cic) +"alY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) "alZ" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -2026,14 +2076,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/stern_hallway) "amd" = ( /obj/structure/machinery/vending/cola{ density = 0; @@ -2043,6 +2085,15 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"ame" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "amg" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) @@ -2084,14 +2135,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"amu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "amw" = ( /turf/open/floor/almayer{ dir = 9; @@ -2182,19 +2225,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) -"ang" = ( -/obj/item/clothing/head/welding{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "anm" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -2283,6 +2313,18 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) +"anE" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_aft_hallway) "anM" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -2302,18 +2344,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"anU" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/offices/flight) "anV" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ @@ -2335,12 +2365,12 @@ "aoe" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/morgue) -"aog" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +"aof" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "aoh" = ( /obj/structure/morgue/crematorium, /turf/open/floor/almayer{ @@ -2479,12 +2509,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) -"aoN" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) "aoP" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -2528,6 +2552,15 @@ icon_state = "plating" }, /area/almayer/engineering/upper_engineering) +"aoZ" = ( +/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/hull/upper/u_a_s) "apa" = ( /obj/structure/surface/rack, /obj/item/tool/screwdriver, @@ -2611,6 +2644,9 @@ icon_state = "red" }, /area/almayer/living/starboard_garden) +"apx" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_bow) "apz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -2903,13 +2939,6 @@ icon_state = "plate" }, /area/almayer/medical/medical_science) -"aqH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "aqI" = ( /turf/open/floor/almayer{ dir = 8; @@ -2928,19 +2957,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"aqL" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_midship_hallway) "aqN" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -2994,9 +3010,6 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) -"aqZ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_stern) "arb" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) @@ -3288,12 +3301,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"asE" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "asF" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ access_modified = 1; @@ -3394,6 +3401,12 @@ icon_state = "plate" }, /area/almayer/medical/morgue) +"asV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "asX" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /turf/open/floor/almayer{ @@ -3547,11 +3560,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) -"atH" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "atK" = ( /turf/open/floor/almayer{ dir = 10; @@ -3600,12 +3608,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"atS" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "atT" = ( /obj/structure/toilet{ dir = 1 @@ -3687,6 +3689,15 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) +"aux" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) "auy" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -3833,17 +3844,6 @@ "avo" = ( /turf/closed/wall/almayer/outer, /area/almayer/powered/agent) -"avp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "avs" = ( /turf/closed/wall/biodome, /area/almayer/powered/agent) @@ -4218,9 +4218,6 @@ icon_state = "plate" }, /area/almayer/command/cic) -"awE" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) "awF" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/numbertwobunks) @@ -4525,6 +4522,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"axT" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "axV" = ( /obj/structure/machinery/telecomms/server/presets/command, /turf/open/floor/almayer{ @@ -4550,17 +4551,6 @@ icon_state = "tcomms" }, /area/almayer/command/telecomms) -"axY" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "aya" = ( /turf/open/floor/almayer{ dir = 4; @@ -4846,19 +4836,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) -"aza" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "azc" = ( /obj/structure/machinery/computer/telecomms/traffic, /turf/open/floor/almayer{ @@ -4883,12 +4860,6 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering) -"azg" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "azh" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer{ @@ -5260,6 +5231,15 @@ icon_state = "plate" }, /area/almayer/living/offices/flight) +"aAM" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "aAP" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -5287,15 +5267,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"aAU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "aAZ" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -5544,6 +5515,17 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) +"aBK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) +"aBO" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "aBP" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ access_modified = 1; @@ -5554,15 +5536,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/hull/upper/u_m_p) "aBR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ashtray/glass, @@ -5696,32 +5669,36 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) +"aCr" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "aCt" = ( /obj/structure/bed/sofa/south/white/right, /turf/open/floor/almayer{ icon_state = "sterile_green" }, /area/almayer/medical/medical_science) -"aCu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "aCw" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/medical/morgue) -"aCA" = ( -/obj/structure/largecrate/random/barrel/white, +"aCy" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aCB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/lower/l_a_p) "aCC" = ( /turf/open/floor/almayer{ icon_state = "sterile_green" @@ -5758,14 +5735,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/containment) -"aCX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "aCZ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -5804,6 +5773,16 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering) +"aDf" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "aDh" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -5944,6 +5923,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) +"aDG" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = 25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "aDH" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -6034,6 +6024,21 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"aDY" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full{ + pixel_y = 8 + }, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/suit/storage/hazardvest/black, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "aEe" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -6078,15 +6083,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"aEr" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "aEA" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -6117,6 +6113,14 @@ icon_state = "silver" }, /area/almayer/command/cic) +"aEE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "aEG" = ( /obj/structure/bed/chair{ dir = 8 @@ -6168,6 +6172,22 @@ "aET" = ( /turf/closed/wall/almayer, /area/almayer/living/captain_mess) +"aEU" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_midship_hallway) "aEW" = ( /turf/closed/wall/almayer, /area/almayer/living/numbertwobunks) @@ -6318,6 +6338,20 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) +"aFx" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart/green, +/obj/item/weapon/dart/green, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "aFy" = ( /obj/structure/bed/chair{ dir = 8 @@ -6358,15 +6392,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) -"aFG" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"aFE" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "aFI" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -6389,13 +6420,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"aGa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "aGb" = ( /obj/structure/ladder{ height = 2; @@ -6418,6 +6442,11 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) +"aGh" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "aGj" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 2; @@ -6428,12 +6457,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"aGm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_p) "aGn" = ( /obj/structure/barricade/handrail, /turf/open/floor/almayer{ @@ -6691,6 +6714,19 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering) +"aHx" = ( +/obj/structure/ladder/fragile_almayer{ + height = 2; + id = "kitchen" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "aHK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -6734,6 +6770,13 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) +"aHV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "aHX" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -6769,11 +6812,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"aIh" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "aIl" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6844,13 +6882,6 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"aIy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_umbilical) "aIB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/floor/grass, @@ -7077,6 +7108,16 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"aJB" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "aJG" = ( /obj/structure/bed/chair/office/dark{ dir = 8; @@ -7373,36 +7414,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) -"aLx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_x = -7; - pixel_y = -26; - req_one_access_txt = "3;22;2;19;7" - }, -/obj/structure/surface/rack, -/obj/item/rappel_harness{ - pixel_y = 8 - }, -/obj/item/rappel_harness, -/obj/item/rappel_harness{ - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/hallways/lower/repair_bay) "aLE" = ( /obj/docking_port/stationary/emergency_response/external/hangar_starboard{ dwidth = 8 @@ -7473,11 +7484,6 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"aMf" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "aMg" = ( /obj/structure/sign/safety/intercom{ layer = 2.9; @@ -7615,10 +7621,6 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"aML" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "aMO" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 @@ -7703,6 +7705,18 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) +"aNz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "aNI" = ( /obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, /turf/open/floor/almayer{ @@ -7796,18 +7810,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/stern_hallway) "aOy" = ( /obj/structure/machinery/light{ dir = 1 @@ -7967,14 +7969,18 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"aPe" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 +"aPc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/hallways/upper/stern_hallway) +"aPd" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "aPf" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, @@ -8051,15 +8057,6 @@ 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{ @@ -8109,19 +8106,13 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/alpha) -"aPN" = ( -/obj/structure/ladder{ - height = 2; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 +"aPP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/s_bow) -"aPO" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_a_s) "aPS" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/almayer{ @@ -8328,14 +8319,14 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering) -"aRl" = ( -/obj/structure/machinery/door_control/cl/office/door{ - pixel_y = -20 +"aRm" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_a_s) "aRo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -8360,15 +8351,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/hallways/upper/stern_hallway) "aRt" = ( /turf/open/floor/almayer{ dir = 8; @@ -8475,22 +8457,6 @@ }, /turf/open/floor/plating/almayer, /area/almayer/medical/upper_medical) -"aRL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/lower/port_midship_hallway) "aRP" = ( /turf/open/floor/almayer{ dir = 1; @@ -8550,6 +8516,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) +"aSg" = ( +/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/aft_hallway) "aSk" = ( /obj/structure/machinery/power/smes/buildable, /obj/structure/machinery/light{ @@ -8559,18 +8533,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 @@ -8701,6 +8663,24 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_two) +"aSV" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = 35 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + anchored = 1; + chemical = null; + density = 0; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "aTa" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -8709,6 +8689,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) +"aTc" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "aTf" = ( /obj/structure/platform{ dir = 8 @@ -8770,6 +8753,12 @@ icon_state = "green" }, /area/almayer/living/offices) +"aTu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "aTv" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; @@ -9128,6 +9117,13 @@ icon_state = "kitchen" }, /area/almayer/living/captain_mess) +"aVw" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "aVC" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ @@ -9173,13 +9169,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"aVM" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "aVR" = ( /obj/structure/ladder{ height = 2; @@ -9277,6 +9266,15 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) +"aWj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Officer's Bunk" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/bridgebunks) "aWk" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -9360,6 +9358,26 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) +"aWB" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/repair_bay) +"aWC" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "aWD" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -9409,11 +9427,28 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) +"aWY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) "aWZ" = ( /obj/structure/pipes/standard/simple/visible, /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/airmix) +"aXa" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/lower/port_midship_hallway) "aXb" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -9433,6 +9468,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"aXd" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "aXe" = ( /turf/open/floor/almayer{ dir = 1; @@ -9479,12 +9520,40 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) +"aXU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"aXV" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig"; + closeOtherId = "brigmaint_n" + }, +/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) "aYd" = ( /obj/structure/dropship_equipment/medevac_system, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"aYf" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "aYq" = ( /turf/open/floor/almayer{ dir = 6; @@ -9545,6 +9614,10 @@ /obj/structure/safe/cl_office, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"aYN" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "aYQ" = ( /obj/structure/machinery/bioprinter{ stored_metal = 125 @@ -9562,12 +9635,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/hull/upper/u_a_s) "aZe" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -9599,14 +9666,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"aZv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/u_m_p) "aZy" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -9634,12 +9693,19 @@ allow_construction = 0 }, /area/almayer/stair_clone/upper) -"aZI" = ( -/obj/structure/reagent_dispensers/watertank, +"aZJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "green" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/squads/req) "aZK" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -9731,6 +9797,20 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_one) +"bak" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "bat" = ( /obj/structure/machinery/door_control{ id = "ARES Mainframe Right"; @@ -9793,14 +9873,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"baW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "baX" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 @@ -9812,17 +9884,6 @@ "baZ" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_lobby) -"bba" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "bbd" = ( /obj/structure/machinery/light{ dir = 4 @@ -9883,6 +9944,16 @@ icon_state = "plating" }, /area/almayer/shipboard/starboard_point_defense) +"bbF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "bbS" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) @@ -10080,6 +10151,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_two) +"bcQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/clothing/head/soft/ferret{ + pixel_x = -7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "bcR" = ( /obj/structure/sink{ pixel_y = 32 @@ -10412,6 +10496,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_one) +"beA" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_m_s) "beE" = ( /obj/structure/platform{ dir = 1 @@ -10497,31 +10587,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"bfb" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"bfd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - 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/aft_hallway) "bfl" = ( /turf/open/floor/almayer{ dir = 5; @@ -10546,9 +10611,6 @@ icon_state = "redcorner" }, /area/almayer/living/cryo_cells) -"bfs" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/l_f_s) "bft" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -10641,6 +10703,11 @@ icon_state = "redcorner" }, /area/almayer/squads/alpha) +"bfG" = ( +/turf/open/floor/almayer{ + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "bfJ" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/handheld1, @@ -10660,9 +10727,17 @@ }, /area/almayer/hallways/hangar) "bfO" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/photocopier{ + anchored = 0 + }, +/obj/structure/sign/poster/art{ + pixel_y = 32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "bfV" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 @@ -10684,12 +10759,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"bgh" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "bgj" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 @@ -10904,6 +10973,12 @@ icon_state = "red" }, /area/almayer/squads/alpha) +"bhe" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "bhf" = ( /obj/structure/machinery/light{ dir = 4 @@ -10948,14 +11023,6 @@ icon_state = "plate" }, /area/almayer/living/chapel) -"bhy" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "bhG" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -10999,35 +11066,24 @@ /turf/open/floor/almayer, /area/almayer/hallways/hangar) "bhV" = ( -/obj/structure/ladder/fragile_almayer{ - height = 2; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 - }, +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_p) -"bhZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/storage/toolbox/electrical, +/area/almayer/maint/hull/lower/l_a_s) +"bib" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/access_button/airlock_exterior, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/upper/u_a_s) -"bij" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, +"bic" = ( +/obj/structure/largecrate/machine/bodyscanner, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_s) "biq" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/beaker/large, @@ -11058,6 +11114,13 @@ icon_state = "test_floor4" }, /area/almayer/medical/chemistry) +"biv" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/item/frame/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "biy" = ( /obj/structure/pipes/unary/freezer, /obj/structure/machinery/power/apc/almayer{ @@ -11075,22 +11138,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/stern_hallway) -"biC" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/access_button/airlock_exterior, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "biF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/roller/surgical, @@ -11148,10 +11195,11 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/starboard_garden) -"bjg" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"bjh" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "bjk" = ( /obj/structure/machinery/door_control{ id = "perma_lockdown_2"; @@ -11174,14 +11222,6 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"bjt" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "bju" = ( /turf/open/floor/almayer{ dir = 1; @@ -11206,6 +11246,12 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) +"bjH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "bjQ" = ( /obj/structure/machinery/shower{ dir = 8 @@ -11225,12 +11271,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"bkb" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "bkd" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 @@ -11297,6 +11337,14 @@ "bkA" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/chemistry) +"bkB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "bkE" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -11335,17 +11383,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) -"bkS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "bkT" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -11432,22 +11469,6 @@ icon_state = "plate" }, /area/almayer/living/offices) -"blq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/cryo_cells) "bls" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -11488,6 +11509,9 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lockerroom) +"bma" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_stern) "bmb" = ( /turf/open/floor/almayer{ dir = 8; @@ -11650,18 +11674,6 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"bmC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-y" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) "bmD" = ( /turf/open/floor/almayer{ dir = 5; @@ -11819,14 +11831,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/hull/upper/u_m_p) "bnH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -11844,6 +11848,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_lobby) +"bnO" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "bnR" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -11920,25 +11930,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) -"bom" = ( -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) "boq" = ( /obj/structure/bed/chair/comfy/alpha, /turf/open/floor/almayer{ icon_state = "redfull" }, /area/almayer/living/briefing) -"bos" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) "boy" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -11981,11 +11978,6 @@ "boL" = ( /turf/open/floor/almayer, /area/almayer/living/starboard_garden) -"boU" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "boV" = ( /obj/structure/cargo_container/wy/left, /obj/structure/prop/almayer/minigun_crate{ @@ -12169,24 +12161,6 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) -"bqc" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"bqg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "bqm" = ( /obj/structure/closet/boxinggloves, /turf/open/floor/almayer{ @@ -12227,6 +12201,10 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"bqM" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "bqN" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -12327,12 +12305,6 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) -"brm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "brn" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, /turf/open/floor/almayer{ @@ -12343,11 +12315,6 @@ /obj/structure/supply_drop/bravo, /turf/open/floor/plating, /area/almayer/squads/req) -"brq" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) "brr" = ( /obj/structure/machinery/cm_vending/clothing/medic/bravo, /turf/open/floor/almayer{ @@ -12393,6 +12360,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) +"brD" = ( +/obj/structure/closet, +/obj/item/clothing/suit/armor/riot/marine/vintage_riot, +/obj/item/clothing/head/helmet/riot/vintage_riot, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "brH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -12604,22 +12582,6 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"btn" = ( -/obj/item/device/camera{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/camera_film, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "btr" = ( /obj/structure/closet/boxinggloves, /obj/structure/machinery/light, @@ -12661,6 +12623,9 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"btL" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_s) "btM" = ( /obj/effect/spawner/random/toolbox, /obj/structure/pipes/vents/scrubber{ @@ -12680,15 +12645,6 @@ "btO" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"btV" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "btX" = ( /obj/structure/machinery/light{ dir = 4 @@ -12828,21 +12784,24 @@ }, /area/almayer/squads/bravo) "buY" = ( -/obj/structure/stairs{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "bvb" = ( /obj/structure/machinery/light{ dir = 8 @@ -12868,6 +12827,12 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bvm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) "bvr" = ( /obj/structure/bed/chair/office/dark, /obj/effect/decal/warning_stripes{ @@ -12888,19 +12853,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_one) -"bvD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) "bvF" = ( /turf/open/floor/almayer{ dir = 8; @@ -13017,32 +12969,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bwv" = ( -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"bww" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"bwG" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_s) "bwH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/crew/alt{ @@ -13053,21 +12979,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"bwN" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, +"bwM" = ( +/obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"bwP" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_f_p) "bwR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/med_data/laptop{ @@ -13141,14 +13058,12 @@ 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" +"bxw" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "bxA" = ( /obj/structure/machinery/power/apc/almayer/hardened, /obj/effect/decal/warning_stripes{ @@ -13193,29 +13108,24 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/workshop) -"bxV" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +"bxO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "mono" }, +/area/almayer/hallways/upper/aft_hallway) +"bxQ" = ( /turf/open/floor/almayer{ dir = 1; - icon_state = "blue" + icon_state = "silvercorner" }, /area/almayer/hallways/upper/aft_hallway) -"bxY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"bxZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/lower/s_bow) "byb" = ( /obj/structure/barricade/handrail/medical, /turf/open/floor/almayer{ @@ -13283,15 +13193,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"byt" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "byu" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -13319,15 +13220,23 @@ icon_state = "silver" }, /area/almayer/living/cryo_cells) -"byH" = ( -/obj/structure/bed/sofa/south/white/right{ - pixel_y = 16 +"byD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"byZ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/upper/stern_hallway) "bzg" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -13428,13 +13337,6 @@ icon_state = "test_floor4" }, /area/almayer/command/securestorage) -"bAy" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "bAH" = ( /obj/structure/largecrate/random/case, /turf/open/floor/almayer{ @@ -13529,12 +13431,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/hull/upper/u_m_p) "bBd" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -13567,6 +13463,10 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"bBp" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "bBu" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ @@ -13650,6 +13550,21 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bBO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -9; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "bBQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -13661,18 +13576,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"bBR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bBU" = ( -/obj/structure/sign/safety/security{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "bBY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer{ @@ -13710,10 +13613,6 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/briefing) -"bCk" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "bCl" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -13745,18 +13644,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"bCv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "bCx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -13808,6 +13695,16 @@ }, /turf/open/floor/almayer, /area/almayer/living/cryo_cells) +"bCI" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_x = 27 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "bCM" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ @@ -13829,12 +13726,6 @@ icon_state = "red" }, /area/almayer/squads/alpha) -"bCR" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "bCS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -13859,11 +13750,6 @@ icon_state = "plate" }, /area/almayer/shipboard/weapon_room) -"bDi" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) "bDn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/closed/wall/almayer, @@ -13879,6 +13765,16 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) +"bDz" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "bDD" = ( /obj/structure/bed/chair{ dir = 8 @@ -13915,6 +13811,10 @@ icon_state = "plate" }, /area/almayer/living/cryo_cells) +"bDN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "bDO" = ( /turf/open/floor/almayer{ icon_state = "tcomms" @@ -14049,6 +13949,10 @@ icon_state = "redcorner" }, /area/almayer/living/cryo_cells) +"bEe" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "bEg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -14074,16 +13978,14 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"bEk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +"bEj" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 6; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/upper/u_m_s) "bEl" = ( /obj/structure/machinery/computer/supply_drop_console/limited, /turf/closed/wall/almayer, @@ -14122,6 +14024,16 @@ icon_state = "cargo" }, /area/almayer/squads/req) +"bEt" = ( +/obj/structure/noticeboard{ + pixel_x = -10; + pixel_y = 31 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/squads/req) "bEv" = ( /turf/open/floor/almayer{ dir = 1; @@ -14308,12 +14220,16 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"bET" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, +"bEV" = ( /turf/open/floor/almayer{ - icon_state = "sterile_green_side" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/medical/lockerroom) +/area/almayer/hallways/lower/starboard_midship_hallway) +"bEW" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "bFa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -14322,6 +14238,19 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) +"bFf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "bFj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -14337,21 +14266,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) -"bFl" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "bFp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -14395,15 +14309,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"bFB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "bFC" = ( /obj/structure/machinery/light{ dir = 1 @@ -14426,14 +14331,6 @@ /obj/docking_port/stationary/marine_dropship/almayer_hangar_1, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"bFX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) "bGa" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -14630,13 +14527,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"bHg" = ( -/obj/structure/bed, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) "bHk" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 1 @@ -14681,6 +14571,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bHC" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "bHD" = ( /obj/structure/ship_ammo/rocket/banshee, /turf/open/floor/almayer{ @@ -14705,6 +14605,13 @@ "bHP" = ( /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) +"bHU" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "bId" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -14723,11 +14630,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bIj" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" - }, -/area/almayer/hallways/lower/port_midship_hallway) "bIn" = ( /obj/structure/machinery/computer/cameras/almayer_network, /obj/structure/surface/table/almayer, @@ -14831,19 +14733,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"bIO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) "bIU" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ @@ -14860,13 +14749,6 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"bIW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) "bJe" = ( /obj/structure/surface/table/reinforced/black, /obj/item/explosive/grenade/high_explosive/training, @@ -14910,6 +14792,12 @@ icon_state = "test_floor4" }, /area/almayer/living/auxiliary_officer_office) +"bJr" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "bJt" = ( /turf/closed/wall/almayer, /area/almayer/living/grunt_rnr) @@ -14948,6 +14836,25 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"bJK" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"bJN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) "bJS" = ( /obj/structure/surface/rack, /obj/item/tool/wrench, @@ -15015,14 +14922,13 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"bKk" = ( -/obj/item/tool/wrench{ - pixel_x = -8; - pixel_y = 10 +"bKi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "silver" }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) "bKm" = ( /obj/structure/closet/crate/freezer{ @@ -15108,23 +15014,17 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) -"bKJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"bKG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/almayer/maint/lower/cryo_cells) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "bKM" = ( /obj/effect/landmark/start/marine/medic/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"bKP" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "bKQ" = ( /obj/structure/bed/chair{ dir = 8 @@ -15139,39 +15039,6 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"bLc" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) -"bLf" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - 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/stern_hallway) "bLh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -15394,18 +15261,16 @@ icon_state = "green" }, /area/almayer/squads/req) -"bMf" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"bMh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bMi" = ( -/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - icon_state = "cargo" + dir = 4; + icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) "bMq" = ( @@ -15475,16 +15340,9 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"bME" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) +"bMH" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_p) "bMJ" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/canister/oxygen, @@ -15557,22 +15415,6 @@ 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 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/hallways/upper/aft_hallway) "bNa" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black, @@ -15587,12 +15429,6 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"bNc" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/maint/hull/upper/u_a_s) "bNe" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -15683,14 +15519,6 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"bNr" = ( -/obj/structure/sign/safety/storage{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "bNs" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -15774,16 +15602,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"bNI" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, +"bNK" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/starboard_umbilical) "bNL" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -15826,15 +15651,11 @@ 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/aft_hallway) +"bOb" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "bOq" = ( /obj/structure/prop/almayer/cannon_cables, /turf/open/floor/almayer{ @@ -15850,21 +15671,23 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) -"bOw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "bOx" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, /turf/open/floor/almayer{ icon_state = "test_floor4" }, /area/almayer/squads/charlie) +"bOy" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) +"bOz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "bOC" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; @@ -16206,6 +16029,25 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) +"bQd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) +"bQr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "bQt" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -16251,6 +16093,9 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) +"bQF" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) "bQG" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black, @@ -16355,20 +16200,11 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"bRo" = ( +"bRl" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"bRt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/hallways/lower/starboard_fore_hallway) "bRP" = ( /obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ @@ -16579,6 +16415,13 @@ }, /turf/open/floor/plating, /area/almayer/powered) +"bTr" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/hull/lower/l_m_s) "bTt" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -16609,14 +16452,6 @@ icon_state = "bluecorner" }, /area/almayer/squads/delta) -"bTz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_umbilical) "bTA" = ( /turf/open/floor/almayer, /area/almayer/squads/delta) @@ -16629,12 +16464,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"bTD" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/upper/aft_hallway) "bTE" = ( /turf/open/floor/almayer{ dir = 4; @@ -16665,6 +16494,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"bTL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "bTM" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -16743,12 +16578,12 @@ icon_state = "plate" }, /area/almayer/living/tankerbunks) -"bTW" = ( -/obj/structure/machinery/light/small, +"bTY" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/hallways/lower/starboard_aft_hallway) "bUa" = ( /obj/structure/closet, /turf/open/floor/almayer{ @@ -16863,17 +16698,21 @@ }, /area/almayer/squads/req) "bUH" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/machinery/door_control/cl/office/door{ + pixel_y = -20 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/upper/aft_hallway) +"bUJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_s) "bUN" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -16888,11 +16727,6 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"bUQ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "bUT" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 @@ -16926,6 +16760,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) +"bVk" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "bVn" = ( /obj/structure/machinery/light{ dir = 8 @@ -16950,14 +16797,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"bVr" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "bVs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -17006,6 +16845,12 @@ "bVU" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/port_point_defense) +"bVW" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "bWc" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -17042,12 +16887,6 @@ icon_state = "plate" }, /area/almayer/living/starboard_garden) -"bWg" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "bWh" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -17058,6 +16897,12 @@ icon_state = "test_floor4" }, /area/almayer/powered) +"bWm" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "bWn" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -17097,6 +16942,15 @@ icon_state = "test_floor4" }, /area/almayer/living/chapel) +"bWD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "bWJ" = ( /obj/structure/machinery/shower{ dir = 4 @@ -17136,14 +16990,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"bXh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "bXo" = ( /obj/structure/ladder{ height = 1; @@ -17198,6 +17044,13 @@ icon_state = "green" }, /area/almayer/squads/req) +"bYd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "bYn" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/port) @@ -17254,9 +17107,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"bYW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/panic) "bYY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -17298,18 +17148,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"bZf" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "bZi" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -17330,22 +17168,18 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"bZo" = ( -/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/stern_hallway) "bZr" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "plating_striped" }, /area/almayer/squads/req) +"bZu" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "bZw" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/combat_correspondent) @@ -17376,13 +17210,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"bZS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "bZU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -17463,19 +17290,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/hull/upper/u_a_s) -"caq" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "car" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -17504,6 +17318,13 @@ icon_state = "test_floor4" }, /area/almayer/living/cryo_cells) +"caL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "caM" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ @@ -17557,17 +17378,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) -"cbc" = ( -/obj/structure/platform_decoration, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +"caZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/u_a_p) "cbg" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; @@ -17606,6 +17424,15 @@ icon_state = "silver" }, /area/almayer/command/computerlab) +"cbo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "cbu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 @@ -17620,25 +17447,18 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_medbay) -"cbK" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) -"cbL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "cbM" = ( /obj/structure/closet/crate, /obj/item/clothing/glasses/welding, /obj/item/circuitboard, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) +"cbO" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "ccb" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer{ @@ -17720,12 +17540,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"ccL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) "ccN" = ( /turf/open/floor/almayer{ dir = 4; @@ -17844,12 +17658,32 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha) +"cek" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cep" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "ceu" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "green" }, /area/almayer/living/starboard_garden) +"cez" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "ceC" = ( /obj/structure/prop/almayer/ship_memorial, /turf/open/floor/plating/almayer, @@ -17867,17 +17701,28 @@ "ceE" = ( /turf/closed/wall/almayer, /area/almayer/command/cichallway) +"ceI" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "ceK" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"ceY" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"ceS" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/upper/aft_hallway) "ceZ" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/almayer{ @@ -17895,24 +17740,6 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"cfm" = ( -/obj/structure/flora/pottedplant{ - desc = "Life is underwhelming, especially when you're a potted plant."; - icon_state = "pottedplant_22"; - name = "Jerry"; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses/prescription{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "cfo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) @@ -17953,6 +17780,67 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"cgd" = ( +/obj/item/clothing/under/blackskirt{ + desc = "A stylish skirt, in a business-black and red colour scheme."; + name = "liaison's skirt" + }, +/obj/item/clothing/under/suit_jacket/charcoal{ + desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; + name = "liaison's black suit" + }, +/obj/item/clothing/under/suit_jacket/navy{ + desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; + name = "liaison's navy suit" + }, +/obj/item/clothing/under/suit_jacket/trainee, +/obj/item/clothing/under/liaison_suit/charcoal, +/obj/item/clothing/under/liaison_suit/blazer, +/obj/item/clothing/suit/storage/snow_suit/liaison, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/marine/dress, +/obj/item/clothing/glasses/sunglasses/big, +/obj/item/clothing/accessory/blue, +/obj/item/clothing/accessory/red, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/clothing/accessory/black, +/obj/item/clothing/accessory/green, +/obj/item/clothing/accessory/gold, +/obj/item/clothing/accessory/purple, +/obj/item/clothing/under/liaison_suit/corporate_formal, +/obj/item/clothing/under/liaison_suit/field, +/obj/item/clothing/under/liaison_suit/ivy, +/obj/item/clothing/under/liaison_suit/blue, +/obj/item/clothing/under/liaison_suit/brown, +/obj/item/clothing/under/liaison_suit/black, +/obj/item/clothing/suit/storage/jacket/marine/vest, +/obj/item/clothing/suit/storage/jacket/marine/vest/grey, +/obj/item/clothing/suit/storage/jacket/marine/vest/tan, +/obj/item/clothing/suit/storage/jacket/marine/bomber, +/obj/item/clothing/suit/storage/jacket/marine/bomber/red, +/obj/item/clothing/suit/storage/jacket/marine/bomber/grey, +/obj/item/clothing/suit/storage/jacket/marine/corporate, +/obj/item/clothing/suit/storage/jacket/marine/corporate/black, +/obj/item/clothing/suit/storage/jacket/marine/corporate/blue, +/obj/item/clothing/suit/storage/jacket/marine/corporate/brown, +/obj/item/clothing/suit/storage/jacket/marine/corporate/formal, +/obj/structure/closet/cabinet{ + storage_capacity = 35 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"cgj" = ( +/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/aft_hallway) "cgl" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ @@ -17965,6 +17853,13 @@ "cgo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie_delta_shared) +"cgp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "cgq" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, /turf/open/floor/almayer{ @@ -18039,15 +17934,11 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) "cgU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "chb" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/sign/safety/maint{ @@ -18076,6 +17967,12 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie_delta_shared) +"chi" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "chk" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, /turf/open/floor/almayer{ @@ -18117,15 +18014,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{ - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "chL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -18248,16 +18136,13 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha) -"cif" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "plate" +"cie" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/hallways/lower/starboard_fore_hallway) "cil" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/waterhazard{ @@ -18309,21 +18194,6 @@ icon_state = "test_floor4" }, /area/almayer/powered) -"ciB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "ciD" = ( /obj/structure/platform_decoration{ dir = 1 @@ -18332,21 +18202,31 @@ 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/aft_hallway) "ciN" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"ciO" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_y = 15 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "ciQ" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -18354,6 +18234,29 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"ciV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/recharge_station{ + layer = 2.9 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "cjc" = ( /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, @@ -18487,34 +18390,13 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) -"cke" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"ckh" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"ckq" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ckj" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/nanopaste{ - pixel_x = -3; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/maint/hull/upper/u_a_s) "ckr" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -18522,6 +18404,9 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"ckw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_p) "ckK" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -18531,6 +18416,15 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) +"ckO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "ckP" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -18580,15 +18474,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"ckZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "cle" = ( /turf/open/floor/almayer{ dir = 4; @@ -18804,13 +18689,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"clV" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/squads/req) "clW" = ( /obj/structure/machinery/cm_vending/clothing/smartgun/delta, /turf/open/floor/almayer{ @@ -18842,17 +18720,17 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"cme" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"cmb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" }, +/area/almayer/maint/hull/upper/u_f_s) +"cmi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/port_midship_hallway) "cml" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -18893,9 +18771,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"cmr" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "cmv" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = -30 @@ -18972,29 +18847,6 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"cmL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cmN" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"cmV" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "cna" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -19069,6 +18921,16 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"cnx" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "cnE" = ( /obj/structure/machinery/prop/almayer/computer{ dir = 4; @@ -19094,15 +18956,6 @@ icon_state = "test_floor4" }, /area/almayer/command/computerlab) -"cnI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_umbilical) "cnM" = ( /obj/structure/window/reinforced{ dir = 4; @@ -19133,13 +18986,11 @@ }, /area/almayer/living/port_emb) "cnP" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/cryo{ + pixel_y = -26 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "cnR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -19241,20 +19092,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"coo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "cop" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/tankerbunks) @@ -19305,6 +19142,13 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) +"coQ" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) "coT" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -19348,12 +19192,16 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices) -"cpz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +"cpG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/hull/lower/l_m_s) +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "cpJ" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -19375,22 +19223,56 @@ /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 +"cpU" = ( +/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." }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"cqd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/light/small{ + dir = 4; + status = 3; + icon_state = "bulb-burned" + }, +/obj/effect/decal/cleanable/blood, +/obj/item/prop{ + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + desc = "A blood bag with a hole in it. The rats must have gotten to it first." + }, +/obj/item/prop{ + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + desc = "A blood bag with a hole in it. The rats must have gotten to it first." + }, +/obj/item/prop{ + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + desc = "A blood bag with a hole in it. The rats must have gotten to it first." + }, +/obj/item/prop{ + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + name = "circuit board"; + desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; + layer = 2.78; + pixel_y = 10; + pixel_x = 8 + }, +/obj/item/prop{ + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + name = "circuit board"; + desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; + layer = 2.79; + pixel_y = 7; + pixel_x = 8 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" + icon_state = "sterile_green_corner" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/medical/lower_medical_medbay) "cqm" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/folder/white{ @@ -19404,23 +19286,17 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"cqp" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "cqz" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"cqH" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +"cqB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) "cqJ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -19447,24 +19323,20 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) +"cqX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "cqY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigar/tarbacktube, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"crc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_midship_hallway) "crh" = ( /obj/structure/machinery/light{ dir = 1 @@ -19474,15 +19346,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"cri" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "crp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data{ @@ -19493,22 +19356,41 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"crD" = ( -/turf/open/floor/almayer{ +"crr" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "greencorner" + icon_state = "pipe-c" }, -/area/almayer/squads/req) -"csd" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"crG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"crX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "csI" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"csT" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "csZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -19534,29 +19416,10 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/bravo) -"cth" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"ctp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "cts" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"ctw" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_umbilical) "ctx" = ( /obj/structure/bed{ icon_state = "abed" @@ -19586,11 +19449,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"ctQ" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "ctT" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -19603,15 +19461,60 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cryo) -"cui" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"ctV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/port_fore_hallway) +"ctW" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"ctX" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/workshop/hangar) +"cua" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"cuk" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "cuq" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, @@ -19637,19 +19540,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/aft_hallway) "cuN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -19670,39 +19560,23 @@ 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/hull/upper/u_m_s) -"cvb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, +"cvp" = ( +/obj/structure/girder, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/req) -"cvg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/area/almayer/maint/hull/upper/u_a_p) +"cvt" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"cvi" = ( -/obj/structure/machinery/vending/hydroseeds, /turf/open/floor/almayer{ + allow_construction = 0; icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"cvx" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/hallways/lower/starboard_midship_hallway) "cvH" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -19715,10 +19589,12 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"cvI" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +"cvL" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "cvZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -19728,16 +19604,13 @@ icon_state = "silver" }, /area/almayer/command/cic) -"cwi" = ( -/obj/structure/sign/safety/rewire{ +"cwe" = ( +/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/aft_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "cwo" = ( /obj/structure/largecrate/random/mini/chest{ pixel_x = 4 @@ -19748,14 +19621,28 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"cwL" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +"cwy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - icon_state = "orange" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/port_aft_hallway) +"cwC" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) "cwS" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer/no_build{ @@ -19781,6 +19668,10 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) +"cxi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "cxk" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, @@ -19791,15 +19682,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/main_office) -"cxF" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/lower/port_midship_hallway) "cyo" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ @@ -19807,39 +19689,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"cyp" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/plasticflaps, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/maint/hull/lower/l_a_p) -"cyv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) -"cyL" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) -"cyR" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "cyU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -19854,37 +19703,16 @@ }, /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/aft_hallway) -"czN" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "green" +"czH" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/security{ + pixel_y = -32 }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"czR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) "cAm" = ( /obj/structure/bed/chair/office/light{ @@ -19903,15 +19731,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"cAz" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "cAF" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -19924,6 +19743,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"cAY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/lower/port_fore_hallway) "cBb" = ( /obj/structure/machinery/light{ dir = 1 @@ -19974,6 +19806,12 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"cBq" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "cBs" = ( /obj/structure/bed/chair, /obj/effect/decal/warning_stripes{ @@ -19990,27 +19828,43 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"cBC" = ( +"cBz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"cBE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + pixel_y = 10 + }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) -"cBV" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/maint/hull/upper/u_a_p) +"cBQ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"cBR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/lower/l_a_p) "cBZ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -20070,22 +19924,15 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"cCL" = ( -/obj/effect/landmark/crap_item, +"cCG" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"cDd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cDb" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, -/area/almayer/maint/hull/lower/p_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "cDn" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/glass{ @@ -20113,15 +19960,6 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) -"cDx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_p) "cDC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20175,21 +20013,6 @@ icon_state = "plating" }, /area/almayer/command/cic) -"cEA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "cEC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20212,6 +20035,35 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie) +"cEL" = ( +/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/aft_hallway) +"cER" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"cET" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"cFb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "cFh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -20240,18 +20092,23 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"cFH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"cFL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cFN" = ( +/obj/structure/machinery/cm_vending/gear/vehicle_crew, /turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" + icon_state = "cargo" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/vehiclehangar) "cFP" = ( /obj/structure/sign/safety/outpatient{ pixel_x = -17; @@ -20261,42 +20118,47 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"cGd" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) -"cGp" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - pixel_y = 0 +"cGi" = ( +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "mono" + dir = 4; + icon_state = "red" }, -/area/almayer/medical/upper_medical) -"cGA" = ( +/area/almayer/hallways/lower/starboard_midship_hallway) +"cGk" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) +"cGC" = ( /obj/structure/sign/poster{ - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cGB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_m_s) -"cGR" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_f_p) +"cGP" = ( +/obj/item/toy/deck{ + pixel_y = 12 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "cGV" = ( /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) -"cGY" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "cHc" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/sign/safety/ladder{ @@ -20319,12 +20181,20 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"cHn" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +"cHp" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/area/almayer/maint/upper/u_m_p) +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "cHu" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell/cl) @@ -20355,14 +20225,26 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"cIm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +"cIl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 + }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/shipboard/panic) +"cIq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/toy/deck, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/living/offices/flight) "cIr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20384,11 +20266,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"cIO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "cIW" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Engineering Engine Monitoring" @@ -20397,6 +20274,17 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) +"cIZ" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." + }, +/obj/item/reagent_container/food/snacks/mre_pack/xmas2, +/obj/item/reagent_container/food/snacks/mre_pack/xmas1, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "cJh" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -20406,20 +20294,6 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"cJm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) -"cJs" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "cJu" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -20432,19 +20306,17 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"cJz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "cJE" = ( /obj/structure/sign/prop2, /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) -"cJK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "cJM" = ( /obj/structure/machinery/door_display/research_cell{ dir = 8; @@ -20487,46 +20359,18 @@ 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/aft_hallway) -"cKm" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 12 - }, -/obj/item/clothing/head/militia/bucket{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 8; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "cKL" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering/port) -"cKW" = ( +"cLk" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/lower/s_bow) "cLl" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -20557,6 +20401,23 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) +"cLt" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"cLx" = ( +/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/hull/upper/u_m_s) "cLA" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -20581,6 +20442,16 @@ icon_state = "cargo" }, /area/almayer/living/bridgebunks) +"cLT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "cMb" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm{ @@ -20592,6 +20463,15 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"cMk" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "cMl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20637,12 +20517,17 @@ icon_state = "orange" }, /area/almayer/living/briefing) -"cNm" = ( +"cNn" = ( +/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{ - dir = 4; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/upper/u_m_s) "cNH" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/containment{ id = "Containment Cell 4"; @@ -20658,6 +20543,22 @@ icon_state = "test_floor4" }, /area/almayer/medical/containment/cell/cl) +"cNI" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"cNJ" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_p) "cNK" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -20690,26 +20591,23 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"cOh" = ( -/obj/item/stool{ - pixel_x = 15; - pixel_y = 6 +"cOu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"cOy" = ( +/obj/item/trash/chips, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"cOo" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"cOC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/maint/hull/lower/l_a_p) -"cOt" = ( -/obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/lower/starboard_umbilical) "cOK" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -20723,57 +20621,6 @@ icon_state = "outerhull_dir" }, /area/almayer/engineering/upper_engineering/starboard) -"cOY" = ( -/obj/item/clothing/under/blackskirt{ - desc = "A stylish skirt, in a business-black and red colour scheme."; - name = "liaison's skirt" - }, -/obj/item/clothing/under/suit_jacket/charcoal{ - desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; - name = "liaison's black suit" - }, -/obj/item/clothing/under/suit_jacket/navy{ - desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; - name = "liaison's navy suit" - }, -/obj/item/clothing/under/suit_jacket/trainee, -/obj/item/clothing/under/liaison_suit/charcoal, -/obj/item/clothing/under/liaison_suit/blazer, -/obj/item/clothing/suit/storage/snow_suit/liaison, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/marine/dress, -/obj/item/clothing/glasses/sunglasses/big, -/obj/item/clothing/accessory/blue, -/obj/item/clothing/accessory/red, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/clothing/accessory/black, -/obj/item/clothing/accessory/green, -/obj/item/clothing/accessory/gold, -/obj/item/clothing/accessory/purple, -/obj/item/clothing/under/liaison_suit/corporate_formal, -/obj/item/clothing/under/liaison_suit/field, -/obj/item/clothing/under/liaison_suit/ivy, -/obj/item/clothing/under/liaison_suit/blue, -/obj/item/clothing/under/liaison_suit/brown, -/obj/item/clothing/under/liaison_suit/black, -/obj/item/clothing/suit/storage/jacket/marine/vest, -/obj/item/clothing/suit/storage/jacket/marine/vest/grey, -/obj/item/clothing/suit/storage/jacket/marine/vest/tan, -/obj/item/clothing/suit/storage/jacket/marine/bomber, -/obj/item/clothing/suit/storage/jacket/marine/bomber/red, -/obj/item/clothing/suit/storage/jacket/marine/bomber/grey, -/obj/item/clothing/suit/storage/jacket/marine/corporate, -/obj/item/clothing/suit/storage/jacket/marine/corporate/black, -/obj/item/clothing/suit/storage/jacket/marine/corporate/blue, -/obj/item/clothing/suit/storage/jacket/marine/corporate/brown, -/obj/item/clothing/suit/storage/jacket/marine/corporate/formal, -/obj/structure/closet/cabinet{ - storage_capacity = 35 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) "cPg" = ( /obj/structure/sign/safety/north{ pixel_x = 32; @@ -20788,10 +20635,14 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"cPj" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/p_bow) +"cPy" = ( +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "cPK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -20804,23 +20655,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"cPP" = ( -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/obj/structure/sign/poster/hunk{ - pixel_x = -25; - pixel_y = 10 - }, -/obj/item/trash/buritto, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +"cPV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/vehiclehangar) "cQc" = ( /turf/open/floor/almayer{ dir = 1; @@ -20859,6 +20702,11 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/lobby) +"cQO" = ( +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/upper/aft_hallway) "cQW" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -20915,6 +20763,15 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) +"cSi" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "cSk" = ( /obj/structure/machinery/door/window/southleft, /turf/open/floor/almayer{ @@ -20922,6 +20779,18 @@ icon_state = "silver" }, /area/almayer/command/securestorage) +"cSl" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/rods/plasteel{ + amount = 36 + }, +/obj/item/stack/catwalk{ + amount = 60; + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "cSm" = ( /obj/structure/sign/safety/ladder{ pixel_x = 8; @@ -20943,30 +20812,6 @@ icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) -"cSH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/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/aft_hallway) -"cSP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "cSQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20984,6 +20829,18 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) +"cTb" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"cTc" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "cTf" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -20993,6 +20850,12 @@ icon_state = "cargo" }, /area/almayer/squads/req) +"cTm" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/hallways/lower/repair_bay) "cTC" = ( /obj/structure/machinery/vending/walkman, /turf/open/floor/almayer{ @@ -21000,59 +20863,24 @@ icon_state = "green" }, /area/almayer/living/offices) -"cTM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/mess) -"cTX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) -"cUl" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +"cUf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "cVb" = ( /obj/structure/machinery/sentry_holder/almayer, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) -"cVf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "cVq" = ( /obj/structure/machinery/power/apc/almayer/hardened{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"cVt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) "cVw" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -21073,47 +20901,12 @@ icon_state = "plate" }, /area/almayer/living/gym) -"cVT" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "cVZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"cWb" = ( -/obj/structure/largecrate/random/case/double, +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) -"cWm" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/structure/sign/safety/med_life_support{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - 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/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_m_s) "cWr" = ( /obj/structure/machinery/photocopier{ density = 0; @@ -21166,6 +20959,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"cWt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "cWv" = ( /turf/open/floor/almayer{ dir = 8; @@ -21191,17 +20994,78 @@ 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 +"cWF" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "2;7" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_p) +"cWP" = ( +/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/hull/upper/u_m_s) +"cXh" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "cXi" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -21217,12 +21081,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"cXm" = ( -/obj/structure/largecrate/supply/supplies/mre, +"cXy" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/lower/l_f_s) "cXC" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -21262,26 +21126,18 @@ }, /area/almayer/medical/upper_medical) "cXX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "cXY" = ( /obj/item/stack/catwalk, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"cYo" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "cYu" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -21314,9 +21170,6 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) -"cZe" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_s) "cZh" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -21341,35 +21194,20 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"cZp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"cZo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"cZB" = ( -/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_umbilical) -"cZI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"cZO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/starboard_aft_hallway) +"cZw" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "cZV" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigarettes/wypacket, @@ -21405,15 +21243,31 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"cZX" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_umbilical) +"dan" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder4" + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) "daz" = ( /turf/closed/wall/almayer/white/hull, /area/almayer/command/airoom) -"daF" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"daA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "dbc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -21437,6 +21291,13 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"dbj" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "dbn" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c200{ @@ -21496,12 +21357,18 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"dbX" = ( +"dbH" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + icon_state = "mono" }, -/area/almayer/maint/upper/mess) +/area/almayer/hallways/lower/vehiclehangar) "dcd" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -21529,28 +21396,18 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"dcx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) "dcy" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "red" }, /area/almayer/shipboard/brig/perma) -"dcT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +"dcS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, /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_m_p) +/area/almayer/hallways/lower/port_fore_hallway) "ddf" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/almayer{ @@ -21563,12 +21420,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"ddp" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "ddw" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/sign/safety/terminal{ @@ -21578,39 +21429,31 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) -"ddx" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "ddz" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /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 +"ddC" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_p) -"ddL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "ddM" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop/hangar) +"ddN" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_s) "deg" = ( /obj/structure/platform_decoration{ dir = 1 @@ -21619,23 +21462,26 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"deq" = ( -/turf/open/floor/almayer{ - 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 +"dej" = ( +/obj/structure/machinery/door_control{ + id = "OuterShutter"; + name = "Outer Shutter"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;3" }, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "OfficeSafeRoom"; + name = "Office Safe Room"; + pixel_x = 5; + pixel_y = 5; + req_one_access_txt = "1;3" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/shipboard/panic) "deD" = ( /obj/structure/machinery/prop/almayer/CICmap{ pixel_x = -5 @@ -21643,10 +21489,6 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) -"deF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "deT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -21659,6 +21501,12 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) +"deW" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "dfa" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, @@ -21686,12 +21534,38 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) +"dfv" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." + }, +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "dfC" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"dfE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) "dfO" = ( /obj/structure/machinery/medical_pod/bodyscanner{ dir = 8 @@ -21734,12 +21608,17 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"dgP" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +"dgL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "dha" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -21757,6 +21636,11 @@ icon_state = "plating_striped" }, /area/almayer/shipboard/brig/execution) +"dhe" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "dho" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -21770,19 +21654,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"dhp" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"dhB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_p) -"dhQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/upper/aft_hallway) "dhR" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -21793,19 +21673,15 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"div" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, +"diu" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "greencorner" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_midship_hallway) +"diy" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_stern) "diz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ id_tag = "Boat1-D4"; @@ -21816,6 +21692,12 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/port) +"diG" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "diJ" = ( /obj/structure/window/reinforced{ dir = 8; @@ -21841,13 +21723,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/lobby) -"djd" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "djQ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -21867,21 +21742,23 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) +"djW" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "dka" = ( /obj/structure/machinery/optable, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_four) -"dkj" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/alamo{ - layer = 2.9 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/offices/flight) "dkq" = ( /obj/structure/machinery/door_control{ id = "hangarentrancenorth"; @@ -21899,36 +21776,10 @@ 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 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) +"dkv" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "dkO" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down2"; @@ -21945,12 +21796,16 @@ allow_construction = 0 }, /area/almayer/stair_clone/upper) -"dkP" = ( +"dkR" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/lower/p_bow) "dkX" = ( /obj/structure/bed/chair/comfy/delta, /obj/effect/decal/cleanable/dirt, @@ -21958,18 +21813,31 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) +"dle" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "dll" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "orangefull" }, /area/almayer/living/briefing) -"dlT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" +"dlt" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"dlW" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "dmg" = ( /obj/structure/machinery/vending/coffee, /obj/structure/sign/safety/coffee{ @@ -21987,6 +21855,21 @@ icon_state = "blue" }, /area/almayer/command/cichallway) +"dmz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "dmA" = ( /turf/open/floor/almayer, /area/almayer/living/synthcloset) @@ -21998,17 +21881,6 @@ icon_state = "cargo" }, /area/almayer/squads/req) -"dmF" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) "dmR" = ( /obj/effect/glowshroom, /obj/effect/glowshroom{ @@ -22046,12 +21918,17 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"dni" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 +"dnh" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) "dnm" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/intelligence_officer, @@ -22086,13 +21963,6 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"dnP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "dnS" = ( /obj/structure/safe, /turf/open/floor/almayer{ @@ -22100,23 +21970,13 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"dnZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, +"dnW" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/structure/surface/rack, /turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) -"dod" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/maint/hull/upper/p_stern) "dof" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ name = "\improper Upper Engineering" @@ -22146,6 +22006,12 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"doM" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "doP" = ( /obj/structure/disposaloutlet{ density = 0; @@ -22167,6 +22033,12 @@ /obj/structure/surface/rack, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"doX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "dpo" = ( /obj/structure/machinery/light{ dir = 1 @@ -22182,27 +22054,20 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) -"dpA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - 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 +"dpD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"dpM" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "dpO" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; @@ -22213,12 +22078,15 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/delta) -"dpS" = ( +"dpP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/almayer{ dir = 4; - icon_state = "bluecorner" + icon_state = "blue" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/port_midship_hallway) "dqb" = ( /obj/structure/sign/safety/security{ pixel_x = -16 @@ -22286,16 +22154,18 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) -"dro" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, +"drQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/lower/l_a_p) "drT" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -22316,6 +22186,20 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) +"dsp" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"dsq" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "dsA" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/almayer{ @@ -22323,11 +22207,6 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/execution) -"dsY" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "dtH" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -22416,14 +22295,18 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"duR" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +"duP" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) "duT" = ( /obj/structure/bed, /obj/structure/machinery/flasher{ @@ -22444,6 +22327,20 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"duX" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) "dvg" = ( /obj/structure/reagent_dispensers/fueltank/custom, /obj/structure/sign/safety/chem_lab{ @@ -22454,6 +22351,14 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/chemistry) +"dvi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "dvl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -22473,31 +22378,60 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) +"dvx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/u_m_p) "dvD" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) -"dvZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/almayer/maint/hull/lower/l_m_p) +"dvH" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "orange" }, -/area/almayer/maint/upper/mess) -"dwj" = ( -/obj/effect/step_trigger/clone_cleaner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dvK" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) +"dvN" = ( +/obj/structure/machinery/vending/coffee, +/obj/item/toy/bikehorn/rubberducky{ + desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; + name = "Quackers"; + pixel_x = 5; + pixel_y = 17 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "dwl" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/living/briefing) +"dwn" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "dwr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/centrifuge{ @@ -22525,15 +22459,20 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) -"dwJ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"dwU" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 6; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"dwX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "dxu" = ( /obj/structure/sink{ dir = 1; @@ -22559,17 +22498,16 @@ allow_construction = 0 }, /area/almayer/stair_clone/upper) -"dxJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"dxH" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/stern_hallway) "dxK" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -22638,15 +22576,6 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"dyq" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_umbilical) "dyx" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 2; @@ -22664,9 +22593,10 @@ icon_state = "plating" }, /area/almayer/squads/req) -"dyJ" = ( +"dyG" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "blue" }, /area/almayer/hallways/upper/aft_hallway) "dyK" = ( @@ -22687,20 +22617,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"dzX" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 +"dzS" = ( +/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/hull/upper/u_m_s) +"dzU" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) +"dzV" = ( +/obj/structure/machinery/light, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"dAm" = ( +/area/almayer/hallways/lower/port_midship_hallway) +"dAn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "dAq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -22713,24 +22687,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/hallways/upper/stern_hallway) -"dAA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "dAQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -22753,20 +22709,6 @@ icon_state = "plate" }, /area/almayer/command/cic) -"dBg" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_midship_hallway) "dBj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -22838,21 +22780,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"dBR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "dBS" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -22863,25 +22790,23 @@ }, /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" - }, +"dBW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 + dir = 5 }, /turf/open/floor/almayer{ - dir = 8; icon_state = "silver" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/repair_bay) +"dCb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "dCe" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -22898,6 +22823,15 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cells) +"dCf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "dCr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -22919,13 +22853,6 @@ icon_state = "plate" }, /area/almayer/command/cichallway) -"dCz" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "dCD" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 32 @@ -22943,29 +22870,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"dCM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer{ - 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 - }, +"dDd" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"dDo" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_m_p) "dDp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -22989,12 +22904,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"dDJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "dDL" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/research/main_terminal{ @@ -23021,12 +22930,24 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"dDT" = ( -/obj/structure/largecrate/random/case/small, +"dDQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/tool/shovel/snow, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) +/area/almayer/maint/hull/lower/l_f_s) +"dDR" = ( +/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_m_s) "dEm" = ( /obj/structure/machinery/power/apc/almayer, /obj/effect/decal/warning_stripes{ @@ -23048,16 +22969,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"dEo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"dEp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) "dEt" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -23084,23 +22995,6 @@ icon_state = "cargo" }, /area/almayer/lifeboat_pumps/north2) -"dEK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"dEL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "dEQ" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/tabasco, @@ -23108,6 +23002,12 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"dER" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "dEX" = ( /obj/structure/closet/secure_closet/guncabinet/riot_control, /obj/item/weapon/shield/riot, @@ -23118,40 +23018,33 @@ }, /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/aft_hallway) "dFk" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "redcorner" }, /area/almayer/command/lifeboat) +"dFr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "dFF" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"dFL" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"dFM" = ( +"dFH" = ( /obj/structure/machinery/light{ dir = 8 }, +/obj/structure/bed/chair/bolted, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/shipboard/brig/perma) "dFR" = ( /turf/open/floor/almayer{ dir = 9; @@ -23165,21 +23058,18 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) "dFW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/maint/hull/lower/l_f_p) -"dGg" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_s) "dGl" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; @@ -23217,19 +23107,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"dGP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_s) "dGU" = ( /obj/structure/sign/poster/propaganda{ pixel_x = -27 @@ -23271,6 +23148,13 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"dHS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "dHV" = ( /obj/structure/machinery/light{ dir = 1 @@ -23305,6 +23189,15 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"dIs" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "dID" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -23336,42 +23229,29 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) -"dJe" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - pixel_y = 10 - }, +"dJm" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"dJy" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/maint/hull/lower/l_a_s) +"dJs" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "redfull" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/hallways/lower/starboard_midship_hallway) "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/hallways/upper/stern_hallway) -"dJG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/lower/l_a_s) "dJI" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 4 @@ -23389,12 +23269,18 @@ dir = 4 }, /area/almayer/medical/containment/cell/cl) -"dKD" = ( +"dKq" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/vehiclehangar) "dKK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -23409,26 +23295,29 @@ /turf/closed/wall/almayer/outer, /area/almayer/engineering/airmix) "dKO" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = 25; - req_one_access_txt = "3" - }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "emeraldcorner" }, -/area/almayer/shipboard/panic) +/area/almayer/hallways/lower/port_midship_hallway) "dKS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/area/almayer/hallways/lower/starboard_umbilical) +"dLb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "dLc" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -23459,6 +23348,27 @@ icon_state = "plating_striped" }, /area/almayer/shipboard/sea_office) +"dLx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/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/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "dLz" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ @@ -23512,6 +23422,21 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) +"dNw" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) +"dNy" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) "dNM" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/tabasco{ @@ -23522,13 +23447,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"dNW" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "dNZ" = ( /obj/structure/machinery/light{ dir = 1 @@ -23560,53 +23478,37 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"dOG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"dON" = ( -/obj/item/stack/cable_coil{ - pixel_x = 1; - pixel_y = 10 - }, -/obj/item/trash/pistachios, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/lower/repair_bay) -"dOW" = ( -/turf/open/floor/almayer{ - icon_state = "silver" +"dOr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/upper/aft_hallway) -"dPd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 10 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"dOX" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) -"dPk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/maint/hull/upper/u_a_s) +"dPf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hallways/lower/starboard_umbilical) -"dPl" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - dir = 4; - icon_state = "red" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/living/cryo_cells) "dPm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -23615,14 +23517,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"dPq" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "dPC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -23639,11 +23533,16 @@ }, /area/almayer/engineering/lower/engine_core) "dPO" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "dPQ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen, @@ -23714,12 +23613,13 @@ icon_state = "orangecorner" }, /area/almayer/engineering/lower) -"dQV" = ( -/obj/structure/machinery/light{ - dir = 1 +"dRf" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_m_p) "dRh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -23730,19 +23630,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"dRo" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, +"dRm" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "orange" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/upper/stern_hallway) "dRs" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ @@ -23758,6 +23651,20 @@ icon_state = "red" }, /area/almayer/squads/alpha) +"dRy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "dRD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/security{ @@ -23770,6 +23677,20 @@ icon_state = "test_floor4" }, /area/almayer/living/offices/flight) +"dRE" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"dRN" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "dRP" = ( /obj/structure/bed/chair/comfy/orange, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -23787,18 +23708,24 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"dSm" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +"dRV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/port_umbilical) +"dSg" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/vehiclehangar) "dSp" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" @@ -23809,6 +23736,29 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"dSC" = ( +/obj/structure/largecrate/random/secure, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"dSI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "dSJ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -23831,16 +23781,19 @@ icon_state = "rasputin3" }, /area/almayer/powered/agent) -"dTd" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" +"dTl" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_midship_hallway) "dTn" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -23871,6 +23824,15 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"dUA" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "dUE" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -23936,21 +23898,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"dVH" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "dVO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -23960,59 +23907,39 @@ icon_state = "plate" }, /area/almayer/living/offices) -"dVR" = ( -/obj/structure/ladder{ - height = 2; - id = "AftPortMaint" - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_p) -"dWc" = ( -/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/maint/hull/upper/u_f_p) "dWg" = ( /obj/effect/landmark/start/cargo, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"dWw" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" +"dWk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/living/basketball) -"dWA" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"dWJ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/sign/safety/terminal{ + pixel_y = 32 }, -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" }, -/obj/structure/machinery/light/small, +/area/almayer/hallways/lower/repair_bay) +"dWw" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "bluecorner" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/living/basketball) "dWX" = ( /obj/structure/machinery/light{ dir = 8 @@ -24021,12 +23948,18 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"dXb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"dXc" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/maint/hull/lower/l_a_p) "dXd" = ( /obj/item/storage/fancy/cigarettes/kpack, /obj/structure/surface/rack, @@ -24037,6 +23970,10 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"dXm" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "dXo" = ( /obj/structure/surface/table/almayer, /obj/item/device/taperecorder, @@ -24062,14 +23999,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 = -2 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) "dXI" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Exterior Airlock"; @@ -24079,6 +24008,17 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/stern_point_defense) +"dXU" = ( +/obj/item/tool/warning_cone{ + pixel_x = -20; + pixel_y = 18 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "dXV" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -24098,19 +24038,15 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) -"dYb" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"dYa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"dYc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "dYu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -24128,6 +24064,13 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"dYM" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "dYR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder{ @@ -24135,30 +24078,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"dYU" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8; - plane = -6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) "dYX" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo{ dir = 1 @@ -24189,28 +24108,23 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"dZP" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +"dZT" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/hallways/upper/aft_hallway) -"dZR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/stern_hallway) -"dZZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/effect/spawner/random/tool, +/area/almayer/maint/hull/lower/l_m_s) +"ead" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/upper/stern_hallway) "eaf" = ( /obj/structure/machinery/cm_vending/clothing/military_police{ density = 0; @@ -24241,12 +24155,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_m_p) "eas" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24263,33 +24171,10 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"eaz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "ebd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"ebf" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." - }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "ebn" = ( /obj/structure/sign/safety/airlock{ pixel_x = 15; @@ -24324,35 +24209,36 @@ icon_state = "sterile_green_side" }, /area/almayer/shipboard/brig/surgery) -"ebI" = ( -/obj/item/clothing/shoes/red, +"ebz" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"ebL" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_m_p) "ebN" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/command/airoom) -"ebV" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"ecb" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"ecj" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +"ecf" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/lower/l_m_s) +"ecm" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/starboard_umbilical) "eco" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17; @@ -24366,24 +24252,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/aft_hallway) -"ecS" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "ecZ" = ( /obj/structure/ladder{ height = 1; @@ -24393,12 +24261,24 @@ icon_state = "plate" }, /area/almayer/shipboard/navigation) +"ede" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "edn" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/obj/structure/sign/poster/ad{ + pixel_x = 30 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "edo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -24411,16 +24291,15 @@ icon_state = "sterile_green" }, /area/almayer/medical/medical_science) -"edG" = ( -/obj/structure/largecrate/random/barrel/yellow, +"edx" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) -"edV" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/almayer, -/area/almayer/maint/upper/mess) +/area/almayer/maint/hull/lower/p_bow) "eed" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -24482,44 +24361,50 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"eeA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +"eeH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/maint/hull/upper/s_bow) -"eeC" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"eeL" = ( +/obj/structure/flora/pottedplant{ + desc = "Life is underwhelming, especially when you're a potted plant."; + icon_state = "pottedplant_22"; + name = "Jerry"; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses/prescription{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) -"eeR" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, +/area/almayer/maint/hull/upper/u_a_p) +"efd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/hallways/lower/port_umbilical) +"efh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) "efj" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "red" }, /area/almayer/hallways/upper/port) -"efk" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "efC" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -24529,11 +24414,12 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"efJ" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"efE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) "efK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24545,20 +24431,11 @@ icon_state = "plate" }, /area/almayer/squads/alpha) -"efP" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) +"efN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "efT" = ( /obj/structure/machinery/atm{ pixel_y = 32 @@ -24587,6 +24464,16 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) +"egn" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "egp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform_decoration, @@ -24606,34 +24493,17 @@ icon_state = "test_floor4" }, /area/almayer/living/chapel) -"egD" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 8; - 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 +"egM" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"egW" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/upper/u_f_s) "ehc" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -24684,14 +24554,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) -"ehM" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "ehR" = ( /obj/structure/window/reinforced{ dir = 4; @@ -24734,6 +24596,13 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"ehZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "eim" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -24788,15 +24657,16 @@ icon_state = "plate" }, /area/almayer/living/gym) -"ejj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/wrench{ - pixel_x = -2; - pixel_y = -1 +"eje" = ( +/obj/structure/closet, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/newspaper, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/tile/carpet{ + amount = 20 }, -/obj/item/tool/wrench{ - pixel_x = 2; - pixel_y = 7 +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" @@ -24824,17 +24694,6 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"ejV" = ( -/obj/structure/closet, -/obj/item/device/flashlight/pen, -/obj/item/attachable/reddot, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "ejY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -24845,7 +24704,7 @@ /turf/open/floor/almayer, /area/almayer/command/lifeboat) "ekz" = ( -/obj/structure/girder/displaced, +/obj/structure/platform, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -24859,22 +24718,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"ekM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"ekR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/starboard_umbilical) "ekY" = ( /obj/structure/machinery/door/airlock/almayer/generic/glass{ name = "\improper Memorial Room" @@ -24918,26 +24761,23 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_one) -"elR" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"elY" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +"elF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/maint/hull/upper/u_f_s) +"elR" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 1 + }, +/area/almayer/medical/containment/cell) "eme" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -24946,14 +24786,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/upper_medical) -"eml" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_umbilical) "emn" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -24973,19 +24805,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"emw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"emA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_s) -"emC" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) "emK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -24993,6 +24812,33 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"emX" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"emZ" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"enc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "ene" = ( /turf/open/floor/almayer{ dir = 4; @@ -25007,72 +24853,36 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"enz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/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 = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) -"enF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"enK" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"enQ" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, +"enq" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"enY" = ( -/obj/item/storage/firstaid, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"eob" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/area/almayer/maint/hull/lower/l_a_s) +"enz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "silvercorner" }, -/area/almayer/maint/hull/lower/l_m_s) -"eox" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"eoy" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/area/almayer/hallways/lower/repair_bay) +"enA" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) -"eoE" = ( -/obj/structure/largecrate/random/secure, +/area/almayer/maint/hull/upper/u_m_p) +"enK" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 6; + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/upper/stern_hallway) "eoG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -25080,19 +24890,34 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"eoK" = ( -/obj/structure/machinery/optable, +"eoU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "green" }, -/area/almayer/maint/hull/upper/p_stern) -"epk" = ( +/area/almayer/hallways/upper/aft_hallway) +"epp" = ( /obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, +/obj/item/tool/wirecutters/clippers, +/obj/item/handcuffs/zip, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/lower/l_f_p) +"epq" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/headband/red{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "epu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -25113,6 +24938,13 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"epW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) "eqb" = ( /obj/structure/surface/table/almayer, /obj/item/tool/stamp/denied{ @@ -25139,27 +24971,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"eqd" = ( -/obj/item/stack/folding_barricade/three, -/obj/item/stack/folding_barricade/three, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/panic) -"eqm" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/machinery/door_control{ - id = "Secretroom"; - indestructible = 1; - layer = 2.5; - name = "Shutters"; - use_power = 0 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"eqh" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "eqB" = ( /obj/item/bedsheet/brown{ layer = 3.2 @@ -25213,6 +25030,19 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) +"eqV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/upper/aft_hallway) +"era" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "erd" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -25222,12 +25052,6 @@ dir = 1 }, /area/almayer/medical/containment/cell/cl) -"ere" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "erh" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -25255,14 +25079,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"erE" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "erF" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/toxin{ @@ -25283,25 +25099,6 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"erL" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/crushed_cup, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/ashtray/plastic{ - pixel_x = 5; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "erN" = ( /obj/structure/machinery/light{ dir = 8 @@ -25313,24 +25110,25 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"esd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"erR" = ( +/obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) -"esm" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/lower/l_a_p) +"esl" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "esC" = ( /obj/structure/toilet{ pixel_y = 13 @@ -25375,6 +25173,11 @@ dir = 9 }, /area/almayer/command/lifeboat) +"esV" = ( +/obj/effect/landmark/start/researcher, +/obj/effect/landmark/late_join/researcher, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) "etf" = ( /turf/open/floor/almayer{ dir = 1; @@ -25417,11 +25220,11 @@ }, /area/almayer/engineering/upper_engineering) "ety" = ( -/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 6; + icon_state = "silver" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_m_p) "etE" = ( /obj/structure/prop/almayer/name_stencil, /turf/open/floor/almayer_hull{ @@ -25436,10 +25239,14 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) -"etN" = ( -/obj/effect/landmark/yautja_teleport, +"etU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/lower/port_fore_hallway) "eua" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ @@ -25454,18 +25261,22 @@ icon_state = "test_floor4" }, /area/almayer/living/officer_study) -"euL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Starboard Railguns and Viewing Room" +"euu" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"euw" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/upper/u_a_s) +"euB" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/upper/aft_hallway) "euN" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -25537,6 +25348,24 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/starboard) +"evF" = ( +/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_m_s) +"evQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "evR" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical/green{ @@ -25551,13 +25380,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"ewc" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) "ewr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -25598,30 +25420,20 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"exb" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"exc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) "exi" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"exl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +"exx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "exy" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" @@ -25633,30 +25445,59 @@ icon_state = "tcomms" }, /area/almayer/engineering/upper_engineering/starboard) -"exQ" = ( +"exX" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/almayer{ - icon_state = "greencorner" + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"exY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = 32 }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eyG" = ( -/obj/structure/platform, /turf/open/floor/almayer{ + dir = 8; icon_state = "red" }, -/area/almayer/lifeboat_pumps/south2) -"eyI" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "hypersleep curtain" +/area/almayer/hallways/lower/port_fore_hallway) +"eyp" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"eyq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control/railings{ + pixel_y = 24 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) -"eyM" = ( -/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/lower/vehiclehangar) +"eyG" = ( +/obj/structure/platform, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) "eyQ" = ( /obj/structure/machinery/light{ dir = 1 @@ -25690,6 +25531,12 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) +"eyZ" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "ezG" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -25707,10 +25554,19 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"ezR" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/l_f_s) "ezX" = ( /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) +"eAa" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "eAg" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -25723,12 +25579,6 @@ icon_state = "red" }, /area/almayer/squads/alpha) -"eAm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) "eAC" = ( /obj/structure/machinery/light{ dir = 4 @@ -25746,21 +25596,21 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"eAG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/clipboard, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) "eAI" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "orangecorner" }, /area/almayer/engineering/lower/engine_core) +"eAK" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "eAL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -25771,6 +25621,16 @@ "eAN" = ( /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"eAP" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "eAU" = ( /obj/structure/bed/chair{ dir = 8 @@ -25804,24 +25664,17 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/briefing) +"eBy" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/upper/aft_hallway) "eBE" = ( /obj/structure/machinery/photocopier{ anchored = 0 }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"eBG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "eBO" = ( /obj/structure/bed, /turf/open/floor/almayer{ @@ -25906,13 +25759,20 @@ icon_state = "plating" }, /area/almayer/shipboard/brig/execution) -"eDk" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, +"eCZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_m_p) "eDo" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -25923,12 +25783,6 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"eDq" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "eDt" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ @@ -25945,6 +25799,24 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) +"eDF" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"eDN" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"eDW" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "eEc" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -25969,27 +25841,37 @@ /obj/structure/filingcabinet, /turf/open/floor/almayer, /area/almayer/command/computerlab) +"eEq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) +"eEv" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "eEw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"eEF" = ( +"eFg" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"eFa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/upper/mess) "eFj" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -26019,16 +25901,11 @@ }, /area/almayer/medical/chemistry) "eFI" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/s_bow) "eFK" = ( /obj/structure/bed{ icon_state = "abed" @@ -26122,13 +25999,6 @@ /obj/item/stack/cable_coil, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"eGq" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "eGr" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ dir = 1; @@ -26174,22 +26044,12 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"eHy" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/maint/hull/lower/l_a_p) -"eHz" = ( -/obj/structure/largecrate/supply/supplies/mre, +"eHJ" = ( +/obj/structure/machinery/vending/hydronutrients, /turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_a_s) "eHY" = ( /obj/structure/surface/rack, /obj/item/device/taperecorder, @@ -26197,45 +26057,23 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"eIN" = ( -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"eIO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"eIe" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"eJg" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/area/almayer/hallways/lower/vehiclehangar) +"eII" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/hallways/upper/aft_hallway) -"eJj" = ( -/obj/structure/closet/crate, -/obj/item/ammo_box/magazine/l42a, -/obj/item/ammo_box/magazine/l42a, +/obj/structure/barricade/handrail, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor5" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/hallways/lower/port_midship_hallway) "eJQ" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -26252,10 +26090,6 @@ "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/hull/upper/u_m_s) "eKa" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ dir = 2; @@ -26267,6 +26101,17 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/processing) +"eKi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"eKk" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "eKy" = ( /obj/structure/pipes/standard/simple/visible{ dir = 6 @@ -26278,6 +26123,12 @@ icon_state = "plate" }, /area/almayer/engineering/lower) +"eKE" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "eKH" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -26322,67 +26173,12 @@ icon_state = "green" }, /area/almayer/living/offices) -"eKZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) -"eLp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/computer/supplycomp/vehicle, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) -"eLu" = ( -/obj/structure/sign/safety/three{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"eLC" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = 6 - }, +"eLq" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) -"eLH" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -27; - serial_number = 11 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_m_p) "eMh" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Laundry Room" @@ -26391,18 +26187,27 @@ icon_state = "test_floor4" }, /area/almayer/engineering/laundry) -"eMx" = ( +"eMp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"eMI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" + dir = 5; + icon_state = "plating" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/vehiclehangar) +"eMt" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "eMJ" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -26413,6 +26218,14 @@ icon_state = "red" }, /area/almayer/shipboard/brig/perma) +"eMK" = ( +/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/lower/starboard_fore_hallway) "eMP" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -26429,20 +26242,34 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"eMZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"eNf" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_m_s) "eNi" = ( /turf/closed/wall/almayer, /area/almayer/engineering/ce_room) -"eNv" = ( -/obj/structure/largecrate/random, +"eNq" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"eNw" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/atm{ + pixel_y = 32 + }, /turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/command/corporateliaison) "eNI" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -26454,11 +26281,21 @@ }, /area/almayer/medical/containment) "eNL" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"eNO" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) "eNR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -26466,14 +26303,9 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"eOx" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +"eOz" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "eOM" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -26494,15 +26326,19 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"ePq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, +"eOY" = ( +/obj/structure/surface/rack, +/obj/item/facepaint/sniper, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/maint/hull/upper/u_m_s) +"ePc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "ePM" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 @@ -26544,55 +26380,63 @@ 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 +"ePV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/weapon/gun/smg/m39{ - pixel_y = -6 +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"eQh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "green" }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eQa" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ - icon_state = "silvercorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) -"eQm" = ( +/area/almayer/maint/hull/lower/l_a_p) +"eQq" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/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 }, -/area/almayer/maint/hull/upper/p_bow) -"eQz" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/starboard_umbilical) "eQJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/poster/ad{ - pixel_x = 30 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"eQR" = ( +/area/almayer/hallways/upper/aft_hallway) +"eQP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "red" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/hallways/upper/stern_hallway) +"eQV" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "eRi" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/folder/black{ @@ -26605,6 +26449,21 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"eRm" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/item/storage/firstaid{ + pixel_x = -13; + pixel_y = 13 + }, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "eRu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -26633,14 +26492,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/hull/upper/u_a_s) "eRL" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) @@ -26660,6 +26511,13 @@ icon_state = "cargo_arrow" }, /area/almayer/engineering/lower/workshop/hangar) +"eRX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "eSk" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -26685,11 +26543,34 @@ }, /area/almayer/medical/medical_science) "eSp" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/upper/u_m_p) +"eSt" = ( +/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/aft_hallway) +"eSH" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "eSU" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer1" @@ -26698,9 +26579,12 @@ icon_state = "outerhull_dir" }, /area/space) -"eTb" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/stern) +"eSZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "eTd" = ( /obj/structure/surface/table/almayer, /obj/item/trash/boonie{ @@ -26711,36 +26595,26 @@ /obj/effect/landmark/crap_item, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eTx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"eTD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +"eTJ" = ( +/obj/structure/curtain/red, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/lower/l_a_s) "eUe" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"eUf" = ( +/obj/item/device/radio, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/s_bow) +"eUf" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stern) "eUh" = ( /obj/structure/window/reinforced{ dir = 8 @@ -26761,6 +26635,15 @@ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) +"eUj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "eUn" = ( /obj/structure/machinery/chem_master, /turf/open/floor/almayer{ @@ -26786,6 +26669,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"eVf" = ( +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "eVj" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -26820,6 +26713,16 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"eVP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "eVQ" = ( /obj/structure/machinery/light{ dir = 4 @@ -26857,6 +26760,24 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"eVY" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"eWf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "eWp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy/charlie{ @@ -26866,20 +26787,6 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"eWs" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"eWv" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"eWx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) "eWF" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -26888,12 +26795,15 @@ icon_state = "test_floor4" }, /area/almayer/living/basketball) -"eWN" = ( +"eWV" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_p) "eXb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -26907,6 +26817,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"eXc" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) "eXk" = ( /obj/effect/landmark/late_join/working_joe, /obj/effect/landmark/start/working_joe, @@ -26922,17 +26840,13 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/offices) -"eXD" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, +"eYd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "eYj" = ( /obj/structure/machinery/light{ dir = 8 @@ -26948,15 +26862,6 @@ /obj/structure/filingcabinet/security, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"eYp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) "eYr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -26984,6 +26889,20 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"eYw" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"eYx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "eYz" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ dir = 1 @@ -26996,6 +26915,18 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"eYC" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Disposals" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_a_p) "eYD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -27025,6 +26956,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"eYN" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "eYQ" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -32 @@ -27041,9 +26978,13 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering/port) -"eZm" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_stern) +"eZn" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "eZo" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -27071,26 +27012,18 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"eZC" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "eZH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"eZR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 +"eZK" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/lower/s_bow) "fag" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27099,15 +27032,32 @@ /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) "far" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/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{ - dir = 4; - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/upper/u_m_s) +"fas" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) +"faC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "faE" = ( /obj/structure/bookcase{ icon_state = "book-5"; @@ -27131,18 +27081,6 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"faR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "faX" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -27175,15 +27113,6 @@ icon_state = "plate" }, /area/almayer/squads/alpha) -"fbe" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "fbo" = ( /obj/structure/machinery/door_control{ id = "kitchen2"; @@ -27223,13 +27152,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/upper_medical) -"fbC" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/maint/hull/lower/l_m_s) "fbR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -27243,41 +27165,35 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"fbU" = ( -/obj/item/stool, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"fca" = ( -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "fcf" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"fco" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 +"fcl" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) +"fcv" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"fcx" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/device/radio, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/lower/l_a_p) "fcy" = ( /obj/structure/machinery/light{ dir = 8 @@ -27299,6 +27215,14 @@ icon_state = "bluecorner" }, /area/almayer/living/basketball) +"fcK" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "fcM" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" @@ -27322,6 +27246,9 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"fcW" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_p) "fcX" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/light{ @@ -27335,12 +27262,6 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"fdf" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "fdx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27350,6 +27271,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"fdD" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "fdE" = ( /obj/item/clothing/mask/rebreather/scarf, /obj/structure/closet/secure_closet/personal/cabinet{ @@ -27371,31 +27301,15 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lockerroom) -"fea" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "feb" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/brig/execution) -"feo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 +"fed" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "feq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27418,10 +27332,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"feG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "feI" = ( /obj/item/trash/cigbutt, /turf/open/floor/almayer, @@ -27446,55 +27356,32 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_two) +"feZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "ffg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/perma) -"ffq" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_y = 15 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 7; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ffx" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/head/helmet/marine/tech/tanker, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "ffE" = ( /turf/open/floor/almayer/no_build{ icon_state = "plating" }, /area/almayer/command/airoom) -"ffN" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, +"ffL" = ( /obj/structure/sign/safety/water{ pixel_x = 8; pixel_y = -32 }, -/obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/lower/l_m_p) +"ffX" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "fgh" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -27521,6 +27408,26 @@ icon_state = "green" }, /area/almayer/squads/req) +"fgv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"fgA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "fgE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27542,6 +27449,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"fgO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "fgR" = ( /obj/structure/machinery/door/poddoor/almayer/open{ id = "Brig Lockdown Shutters"; @@ -27559,14 +27482,13 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"fgU" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"fhb" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "fhf" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, @@ -27578,25 +27500,30 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"fic" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"fhT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_a_s) "fie" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"fix" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"fio" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/lower/vehiclehangar) +"fiz" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "fiE" = ( /obj/structure/machinery/computer/cameras/containment/hidden{ dir = 4; @@ -27607,15 +27534,6 @@ /obj/item/device/camera_film, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"fiH" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) -"fiN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "fiQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27624,36 +27542,76 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"fjz" = ( -/obj/structure/largecrate/random/case/double, +"fjv" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "cargo" + dir = 4; + icon_state = "greencorner" }, -/area/almayer/maint/hull/upper/u_f_p) -"fkK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/area/almayer/hallways/lower/port_fore_hallway) +"fka" = ( +/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/hallways/upper/stern_hallway) +"fkz" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/hallways/lower/port_aft_hallway) +"fkF" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_m_p) "fkX" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 8 }, /area/almayer/medical/containment/cell/cl) -"flr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"flD" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "green" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/hallways/upper/aft_hallway) +"flK" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"flS" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "flW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light{ @@ -27665,18 +27623,15 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"fml" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"flY" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/lower/stern) "fmv" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -27698,20 +27653,15 @@ icon_state = "bluecorner" }, /area/almayer/living/pilotbunks) -"fmZ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_umbilical) -"fnc" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, +"fmY" = ( /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) +"fmZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "fnv" = ( /obj/structure/machinery/light{ dir = 4 @@ -27765,6 +27715,36 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) +"fnV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/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 = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) +"foa" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"fob" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "foC" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -27811,26 +27791,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"foS" = ( -/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 +"foU" = ( +/obj/item/tool/screwdriver, +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) -"fpi" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/upper/u_a_p) +"fpj" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/maint/hull/lower/stern) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "fpA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -27843,21 +27818,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"fpI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fpM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "fpR" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, @@ -27885,21 +27845,6 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"fqb" = ( -/obj/item/paper/prison_station/interrogation_log{ - pixel_x = 10; - pixel_y = 7 - }, -/obj/structure/largecrate/random/barrel/green, -/obj/item/limb/hand/l_hand{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "fqc" = ( /obj/structure/machinery/vending/cigarette, /obj/structure/machinery/light, @@ -27907,38 +27852,36 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"fqw" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +"fqh" = ( +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fqA" = ( +/area/almayer/maint/lower/cryo_cells) +"fqp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "fqC" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"fqJ" = ( -/obj/structure/machinery/door_control{ - id = "safe_armory"; - name = "Hangar Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" - }, +"fqN" = ( /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "silver" }, -/area/almayer/shipboard/panic) +/area/almayer/hallways/upper/aft_hallway) "fqO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -27946,22 +27889,24 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"fqU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +"fqP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "fqW" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/engineering/lower/engine_core) +"fqX" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "fqZ" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -27973,6 +27918,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"fra" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "frb" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -27996,6 +27949,11 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"frq" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "frz" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Exterior Airlock"; @@ -28013,13 +27971,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/aft_hallway) "frM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -28033,12 +27984,16 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"frV" = ( -/obj/structure/toilet{ - dir = 1 +"frT" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_midship_hallway) "frX" = ( /obj/structure/machinery/optable, /obj/structure/sign/safety/medical{ @@ -28050,16 +28005,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/shipboard/brig/surgery) -"fsf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/port_umbilical) "fsp" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -28070,18 +28015,6 @@ icon_state = "plate" }, /area/almayer/living/gym) -"fsu" = ( -/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/aft_hallway) "fsR" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -28104,33 +28037,30 @@ icon_state = "plating_striped" }, /area/almayer/living/cryo_cells) -"ftb" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"ftr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"ftA" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) -"ftG" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 + icon_state = "plate" }, +/area/almayer/maint/hull/lower/p_bow) +"ftE" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/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/aft_hallway) +"ful" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "fuz" = ( /obj/structure/machinery/cm_vending/clothing/pilot_officer, /turf/open/floor/almayer{ @@ -28157,13 +28087,6 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"fuU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_umbilical) "fva" = ( /obj/structure/machinery/light{ dir = 1 @@ -28192,36 +28115,11 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"fvj" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) -"fvo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/glasses/welding{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/weldingtool{ - pixel_x = -11; - pixel_y = 5 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, +"fvs" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/s_bow) "fvA" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer, @@ -28232,19 +28130,6 @@ icon_state = "redfull" }, /area/almayer/command/cic) -"fvE" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/almayer/hallways/upper/aft_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 @@ -28255,18 +28140,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"fvV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ +"fwm" = ( +/obj/structure/sign/safety/conference_room{ pixel_y = 32 }, /turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"fws" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, /area/almayer/hallways/lower/port_midship_hallway) "fwD" = ( /obj/item/reagent_container/food/snacks/grown/poppy{ @@ -28278,9 +28162,6 @@ icon_state = "plate" }, /area/almayer/living/starboard_garden) -"fwK" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/starboard_umbilical) "fwM" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -28292,13 +28173,22 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"fwP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ +"fwQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"fwT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_s) "fwY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28326,6 +28216,22 @@ /obj/item/weapon/shield/riot, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) +"fxX" = ( +/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{ + dir = 4; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "fxZ" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -28347,6 +28253,18 @@ icon_state = "plate" }, /area/almayer/shipboard/weapon_room) +"fyi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "fyp" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -28356,6 +28274,28 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) +"fyq" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"fys" = ( +/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/aft_hallway) "fyD" = ( /obj/structure/machinery/light, /obj/structure/ladder{ @@ -28364,35 +28304,15 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"fyT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - dir = 1; - name = "\improper Command Power Substation" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/mess) -"fzc" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"fza" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"fzm" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "fzq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -28405,18 +28325,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/charlie) -"fzx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "fzP" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -28433,30 +28341,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) -"fzT" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"fAa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/pistol{ - current_rounds = 0 - }, -/obj/item/weapon/gun/pistol/m4a3{ - current_mag = null +"fAo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, /turf/open/floor/almayer{ - dir = 9; - icon_state = "red" + dir = 5; + icon_state = "plating" }, -/area/almayer/living/offices/flight) +/area/almayer/hallways/lower/vehiclehangar) "fAr" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, /turf/open/floor/plating/plating_catwalk, @@ -28467,41 +28361,22 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/main_office) -"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/aft_hallway) -"fBi" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fBo" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"fAH" = ( +/obj/structure/largecrate/supply, /turf/open/floor/almayer{ 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 +/area/almayer/maint/hull/upper/p_stern) +"fAQ" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /turf/open/floor/almayer{ - icon_state = "blue" + dir = 4; + icon_state = "red" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/upper/stern_hallway) "fBO" = ( /obj/structure/machinery/chem_master{ vial_maker = 1 @@ -28514,21 +28389,23 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"fCg" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +"fBW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"fCi" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/lungs/prosthetic, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/lower/port_midship_hallway) +"fCd" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "fCp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -28536,32 +28413,32 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) "fCG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/lower/s_bow) "fCL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"fCP" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +"fCZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/upper/aft_hallway) -"fCT" = ( /obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, +/obj/item/toy/handcard/uno_reverse_red{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/toy/deck/uno, +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower/l_f_s) "fDh" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -28584,14 +28461,27 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) -"fDk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"fDm" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/nanopaste{ + pixel_x = -3; + pixel_y = 14 }, /turf/open/floor/almayer{ - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/upper/p_stern) +"fDC" = ( +/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/hull/upper/u_m_p) "fDG" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ @@ -28614,6 +28504,12 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"fDT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "fDU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -28640,6 +28536,21 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"fDZ" = ( +/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) +"fEb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "fEe" = ( /obj/structure/machinery/pipedispenser, /turf/open/floor/almayer{ @@ -28657,12 +28568,6 @@ icon_state = "plate" }, /area/almayer/medical/morgue) -"fEF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "fEN" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ dir = 4 @@ -28716,6 +28621,10 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) +"fFN" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "fFO" = ( /obj/structure/machinery/light{ dir = 4 @@ -28727,23 +28636,6 @@ icon_state = "plate" }, /area/almayer/medical/morgue) -"fFQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) -"fFU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "fGa" = ( /obj/structure/surface/rack, /obj/effect/decal/warning_stripes{ @@ -28754,26 +28646,10 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) -"fGd" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/lower/vehiclehangar) "fGg" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"fGi" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "fGu" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -28801,24 +28677,25 @@ }, /area/almayer/medical/medical_science) "fGB" = ( -/obj/structure/largecrate/random/case/small, +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"fGG" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/l_a_s) -"fGD" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/shipboard/panic) +"fGR" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "greencorner" }, -/area/almayer/hallways/upper/aft_hallway) -"fHb" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/lower/port_midship_hallway) "fHh" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -28841,10 +28718,26 @@ icon_state = "greenfull" }, /area/almayer/living/offices) -"fHM" = ( -/obj/docking_port/stationary/escape_pod/cl, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) +"fHY" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"fIh" = ( +/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/aft_hallway) +"fII" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "fIM" = ( /obj/effect/landmark/start/marine/tl/bravo, /obj/effect/landmark/late_join/bravo, @@ -28882,25 +28775,6 @@ icon_state = "plate" }, /area/almayer/command/cichallway) -"fJp" = ( -/obj/structure/girder, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"fJt" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"fJu" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) "fJy" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/toy/deck{ @@ -28909,6 +28783,16 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) +"fJA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "fJO" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -28966,6 +28850,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) +"fKj" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "fKt" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/prop/dam/crane{ @@ -28982,6 +28876,13 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"fKv" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade/three, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "fKw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 @@ -29001,6 +28902,20 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) +"fKC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"fKL" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) "fKT" = ( /obj/structure/machinery/vending/coffee, /obj/structure/sign/safety/coffee{ @@ -29030,13 +28945,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"fLf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) "fLg" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/snacks/wrapped/barcardine{ @@ -29047,26 +28955,10 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"fLi" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "fLl" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_stern) -"fLt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "fLu" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -29096,6 +28988,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) +"fLI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -27; + serial_number = 11 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "fMe" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -29123,6 +29027,12 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"fMn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "fMt" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "ARES Interior"; @@ -29151,28 +29061,31 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"fMU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fMB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 +/area/almayer/hallways/lower/starboard_umbilical) +"fMK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"fNd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/squads/req) +"fMZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/lower/l_f_s) "fNi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -29188,12 +29101,24 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"fNH" = ( +"fNv" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_a_p) +"fNY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "fOk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -29225,15 +29150,6 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering) -"fOK" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "fOL" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -29243,6 +29159,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) +"fOO" = ( +/obj/item/ammo_box/magazine/misc/mre, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"fPk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "fPn" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -29299,26 +29228,6 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"fPF" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/gloves/yellow, -/obj/item/device/multitool, -/obj/item/tool/screwdriver{ - icon_state = "screwdriver7" - }, -/obj/item/tool/crowbar/red, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/almayer{ - 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/hull/upper/u_a_p) "fQn" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -29340,14 +29249,6 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"fQy" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "fQS" = ( /obj/structure/bed/chair/comfy/orange, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -29358,25 +29259,6 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"fQU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"fRg" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_s) "fRr" = ( /obj/structure/machinery/light{ dir = 1 @@ -29392,13 +29274,18 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"fRL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"fRD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/lower/cryo_cells) +"fRF" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "fRS" = ( /obj/effect/landmark/start/warden, /obj/effect/decal/warning_stripes{ @@ -29407,6 +29294,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) +"fSj" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "fSl" = ( /obj/structure/machinery/line_nexter{ id = "line2"; @@ -29433,6 +29326,20 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"fSN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) "fTj" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -29444,9 +29351,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"fTl" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_s) "fTm" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, @@ -29468,16 +29372,10 @@ }, /area/almayer/engineering/laundry) "fUz" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/storage/box/cups, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "fUA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) @@ -29496,22 +29394,33 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"fUZ" = ( -/obj/structure/largecrate/random/barrel/green, +"fUF" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) -"fVa" = ( -/obj/item/stack/catwalk, -/obj/structure/platform_decoration{ - dir = 4 +/area/almayer/maint/hull/upper/s_stern) +"fUL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_p) -"fVe" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_p) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"fUT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "fVo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -29519,6 +29428,9 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) +"fVq" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "fVz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -29548,14 +29460,39 @@ icon_state = "dark_sterile" }, /area/almayer/medical/chemistry) -"fWg" = ( +"fVL" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 10; + icon_state = "green" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/hallways/upper/aft_hallway) +"fVM" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/port) "fWi" = ( /obj/structure/toilet{ dir = 1 @@ -29568,15 +29505,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"fXf" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"fWj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + dir = 8; + icon_state = "silver" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_m_p) +"fWP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "fXg" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -29591,6 +29535,16 @@ icon_state = "silver" }, /area/almayer/command/computerlab) +"fXy" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "fXz" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -29612,6 +29566,17 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) +"fXG" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "fXN" = ( /obj/effect/landmark/start/marine/delta, /obj/effect/landmark/late_join/delta, @@ -29646,17 +29611,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"fYr" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/radio, +"fYV" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/medical/upper_medical) "fYZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -29687,15 +29648,19 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"fZy" = ( -/obj/structure/sign/poster{ - pixel_y = -32 +"fZu" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_p) +"fZy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/upper/stern_hallway) "fZA" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -29709,9 +29674,6 @@ icon_state = "orangecorner" }, /area/almayer/engineering/lower) -"fZE" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "fZG" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -29720,22 +29682,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"fZI" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 7; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"fZR" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "fZX" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -29743,6 +29689,11 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) +"fZY" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "fZZ" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, @@ -29759,12 +29710,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/stern_hallway) "gax" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -29791,6 +29736,15 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"gaW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "gba" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/faxmachine/uscm/command{ @@ -29853,16 +29807,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"gbR" = ( -/obj/structure/sign/safety/maint{ +"gbz" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"gck" = ( +/obj/structure/sign/safety/storage{ pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" + pixel_y = -32 }, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "gcm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -29886,6 +29840,35 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) +"gct" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"gcu" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"gcF" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/port_umbilical) "gcN" = ( /obj/structure/machinery/door/airlock/almayer/command{ access_modified = 1; @@ -29928,6 +29911,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"gdO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "gdS" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -29958,20 +29957,6 @@ "gel" = ( /turf/closed/wall/almayer/research/containment/wall/west, /area/almayer/medical/containment/cell/cl) -"gen" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "ger" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/wy{ @@ -29991,15 +29976,18 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) -"geu" = ( -/obj/structure/machinery/light, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, +"gew" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_f_p) +"geR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "gfo" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -30013,15 +30001,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"gft" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) "gfu" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -30035,9 +30014,6 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"gfv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "gfE" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/plating, @@ -30077,30 +30053,49 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"ggo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "ggt" = ( /turf/open/floor/almayer{ dir = 5; icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"ggx" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/structure/machinery/keycard_auth{ + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 26 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower/workshop) "ggz" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_four) -"ggD" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +"ggC" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "ggJ" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -30118,33 +30113,49 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/airmix) -"ggS" = ( -/obj/structure/machinery/light{ - dir = 8 +"ghn" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"ght" = ( +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/brig/perma) -"ghA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_p) +"ghy" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" }, -/obj/structure/surface/table/almayer, -/obj/item/toy/handcard/uno_reverse_red{ - pixel_x = 5; - pixel_y = 5 +/area/almayer/hallways/lower/starboard_midship_hallway) +"gib" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/toy/deck/uno, -/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) -"ghF" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/lower/p_bow) +"gic" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/starboard_umbilical) "gio" = ( /obj/structure/closet/emcloset, /obj/structure/sign/safety/restrictedarea{ @@ -30179,20 +30190,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"gjg" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) "gjm" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -30265,20 +30262,15 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"gkr" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"gkE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"gkl" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/maint/upper/mess) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "gkK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/surface/table/reinforced/almayer_B, @@ -30289,21 +30281,16 @@ icon_state = "plate" }, /area/almayer/command/cic) -"glc" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "gll" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"glm" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "gls" = ( /obj/structure/filingcabinet/filingcabinet, /obj/item/clipboard, @@ -30316,6 +30303,17 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"glz" = ( +/obj/structure/largecrate/supply/generator, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + layer = 2.9; + pixel_x = -10; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "glB" = ( /obj/structure/sign/safety/chem_lab{ pixel_x = 5; @@ -30326,6 +30324,12 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"glC" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "glH" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -30339,6 +30343,10 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/workshop) +"gma" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "gmb" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 @@ -30366,12 +30374,22 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"gmZ" = ( +"gmL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" + dir = 4; + icon_state = "blue" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/upper/aft_hallway) +"gnh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "gnu" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/green, @@ -30383,21 +30401,39 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"gnB" = ( -/obj/structure/platform_decoration{ - dir = 8 +"gnI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bag/trash{ + pixel_x = -3 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gnT" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"gnM" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 6; + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/upper/stern_hallway) +"gnV" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "gob" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 32 @@ -30407,12 +30443,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"gof" = ( -/obj/structure/platform_decoration{ - dir = 1 +"gog" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 12; + pixel_y = -5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "goj" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 2; @@ -30434,19 +30474,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/weapon_room) -"goo" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_midship_hallway) "goy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -30465,23 +30492,26 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) +"goF" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower/engine_core) "goL" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"goM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"goY" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) +"goS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "gpc" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -30506,26 +30536,33 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"gpO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "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/stern_hallway) -"gqt" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +"gqh" = ( +/turf/open/floor/almayer{ + icon_state = "bluecorner" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"gqy" = ( +/obj/structure/machinery/door_control{ + id = "safe_armory"; + name = "Hangar Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"gqv" = ( /turf/open/floor/almayer{ dir = 5; - icon_state = "silver" + icon_state = "plating" + }, +/area/almayer/shipboard/panic) +"gqD" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) "gqP" = ( @@ -30538,34 +30575,21 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) -"gqQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/obj/structure/sign/poster/hero/voteno{ - pixel_y = 32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"grd" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +"grf" = ( +/obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"grv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/s_bow) +"gry" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "grF" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, @@ -30586,21 +30610,9 @@ }, /area/almayer/living/briefing) "grT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/tool/wet_sign{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "gsd" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler{ @@ -30657,28 +30669,20 @@ /obj/effect/landmark/late_join, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"gsp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"gst" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/maint/hull/lower/l_f_p) -"gsy" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gsA" = ( /obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/s_bow) "gsC" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -30704,6 +30708,16 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"gtc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "gtp" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -30715,25 +30729,47 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"gtD" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gtH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +"gtA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/transmitter{ + dir = 8; + name = "Medical Telephone"; + phone_category = "Almayer"; + phone_id = "Medical Lower"; + pixel_x = 16 + }, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) +"gtF" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) +"gtL" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"gtQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/area/almayer/hallways/lower/port_aft_hallway) +"gtT" = ( +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "gtU" = ( /obj/structure/machinery/power/apc/almayer{ dir = 8 @@ -30756,24 +30792,13 @@ 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_m_s) -"guK" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +"guv" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "guS" = ( /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer{ @@ -30800,6 +30825,21 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"gvj" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "gvq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 @@ -30808,10 +30848,12 @@ icon_state = "silver" }, /area/almayer/command/cic) -"gvK" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +"gvt" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "gvU" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -30851,8 +30893,17 @@ icon_state = "plate" }, /area/almayer/living/gym) -"gwM" = ( -/obj/structure/pipes/vents/pump, +"gwD" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/clipboard, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"gwM" = ( +/obj/structure/pipes/vents/pump, /obj/structure/mirror{ pixel_y = 32 }, @@ -30883,6 +30934,15 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) +"gwW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "gxh" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/o2, @@ -30898,18 +30958,12 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) -"gxm" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/stairs) "gxn" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"gxI" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/s_bow) "gxO" = ( /turf/open/floor/almayer{ dir = 10; @@ -30925,59 +30979,36 @@ 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/stern_hallway) -"gxU" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, +"gxS" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" + icon_state = "plate" }, -/area/almayer/shipboard/brig/cic_hallway) -"gyb" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/upper/u_m_p) +"gxW" = ( +/obj/item/stack/catwalk, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_p) +"gyc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/vehicle/powerloader{ + dir = 8 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + dir = 10; + icon_state = "cargo" }, -/area/almayer/hallways/upper/aft_hallway) -"gyn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/vehiclehangar) "gyv" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"gyw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"gyE" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"gyH" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "gyN" = ( /obj/structure/machinery/prop{ desc = "It's a server box..."; @@ -30997,6 +31028,22 @@ icon_state = "orange" }, /area/almayer/engineering/ce_room) +"gyR" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"gyT" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "gyU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -31039,6 +31086,16 @@ /obj/item/reagent_container/hypospray/autoinjector/skillless, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"gzx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"gzE" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "gzI" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -31057,23 +31114,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"gzM" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_midship_hallway) -"gzN" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "gzV" = ( /obj/structure/sink{ dir = 1; @@ -31128,12 +31168,54 @@ "gAA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) +"gAC" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/prop/magazine/boots/n160{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/transmitter/rotary{ + name = "Flight Deck Telephone"; + phone_category = "Almayer"; + phone_id = "Flight Deck"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) +"gAL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "gAS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) +"gAY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/port_umbilical) "gBc" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -31149,40 +31231,21 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"gBd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"gBg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) "gBo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"gBs" = ( -/obj/structure/machinery/door/airlock/almayer/maint, +"gBO" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) -"gBU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/bag/trash{ - pixel_x = -3 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 + icon_state = "orange" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/upper/u_a_s) +"gBP" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "gBW" = ( /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" @@ -31191,27 +31254,23 @@ 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/hallways/upper/stern_hallway) "gCf" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"gCu" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +"gCj" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, /turf/open/floor/almayer{ + allow_construction = 0; icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/lower/starboard_fore_hallway) "gCw" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = 10 @@ -31239,12 +31298,16 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"gCQ" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "cargo" +"gCX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_s) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "gDp" = ( /obj/structure/machinery/light{ dir = 4 @@ -31274,11 +31337,6 @@ }, /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/aft_hallway) "gDW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31291,19 +31349,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"gDX" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) "gEg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"gEh" = ( +"gEj" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) +"gEk" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/lower/l_f_s) "gEo" = ( /obj/structure/machinery/cryopod/right, /obj/structure/machinery/light{ @@ -31327,12 +31388,47 @@ icon_state = "plate" }, /area/almayer/engineering/lower) +"gEM" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) +"gER" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "gFa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) +"gFc" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_m_s) "gFd" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/atmospipes{ @@ -31342,24 +31438,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/aft_hallway) -"gFN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "gFP" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/stern_point_defense) @@ -31370,14 +31448,6 @@ icon_state = "cargo" }, /area/almayer/living/commandbunks) -"gGb" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "gGf" = ( /obj/structure/machinery/light{ dir = 1 @@ -31431,14 +31501,6 @@ }, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"gGw" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/vehiclehangar) "gGx" = ( /obj/structure/filingcabinet/chestdrawer{ density = 0; @@ -31469,6 +31531,9 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"gGX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "gHh" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -31476,12 +31541,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"gHi" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_m_s) "gHj" = ( /obj/structure/machinery/light, /obj/structure/closet/secure_closet/fridge/groceries/stock, @@ -31495,6 +31554,12 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"gHm" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "gHo" = ( /obj/structure/machinery/door/airlock/almayer/marine/delta/tl, /turf/open/floor/almayer{ @@ -31508,22 +31573,37 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"gHX" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 +"gHx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "gHZ" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" }, /area/almayer/hallways/hangar) +"gIe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "gIh" = ( /obj/structure/machinery/door/airlock/almayer/generic{ damage_cap = 50000; @@ -31536,12 +31616,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/ce_room) -"gIm" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "gII" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -31553,13 +31627,14 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/port) -"gIN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +"gIK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_umbilical) "gIU" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/tapes{ @@ -31578,24 +31653,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/evidence_storage) -"gJf" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"gJp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) -"gJF" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_stern) "gJO" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door/window/southleft{ @@ -31615,20 +31672,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_m_p) "gKd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -31639,25 +31682,32 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"gKo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"gKl" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/lower/l_f_p) +"gKn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"gKv" = ( -/obj/effect/landmark/yautja_teleport, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gKs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) -"gKw" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/port_fore_hallway) "gKB" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/firealarm{ @@ -31677,11 +31727,19 @@ icon_state = "redfull" }, /area/almayer/shipboard/port_missiles) -"gKK" = ( +"gKN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, /turf/open/floor/almayer{ - icon_state = "silvercorner" + dir = 8; + icon_state = "greencorner" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/lower/port_fore_hallway) "gKR" = ( /obj/structure/closet/emcloset, /obj/structure/machinery/light{ @@ -31716,11 +31774,12 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) "gLm" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gLo" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "gLz" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -31795,17 +31854,20 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"gMk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"gMj" = ( +/obj/item/tool/weldingtool, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "red" }, -/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/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_p) +"gMC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "gMN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -31839,18 +31901,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"gMS" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "gMU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -31859,18 +31909,25 @@ dir = 4 }, /area/almayer/living/briefing) -"gNg" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"gMX" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"gNo" = ( +/area/almayer/maint/hull/lower/stern) +"gNj" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_p) +/area/almayer/maint/hull/upper/s_stern) +"gNl" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "gNp" = ( /turf/open/floor/almayer{ dir = 9; @@ -31888,22 +31945,6 @@ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) -"gNy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"gNN" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "gNO" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -31913,22 +31954,13 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"gNQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/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) -"gOk" = ( -/obj/structure/largecrate/guns/merc{ - name = "\improper dodgy crate" +"gOf" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/upper/u_m_p) "gOs" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -31956,6 +31988,15 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"gOu" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "gOC" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/almayer{ @@ -31970,12 +32011,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"gOS" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/hallways/lower/port_midship_hallway) "gPc" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -32002,25 +32037,20 @@ dir = 4 }, /area/almayer/command/airoom) -"gPS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"gPs" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/area/almayer/maint/hull/lower/l_a_s) -"gPU" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"gQd" = ( +/obj/structure/sign/safety/storage{ + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "green" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/starboard_midship_hallway) "gQk" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/terminal{ @@ -32029,16 +32059,12 @@ /obj/structure/machinery/faxmachine/corporate/liaison, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"gQu" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/storage/firstaid/rad, -/obj/structure/surface/rack, +"gQz" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_a_s) "gQF" = ( /obj/structure/bed/chair/comfy{ buckling_y = 2; @@ -32055,18 +32081,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"gQQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"gRc" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "gRd" = ( /obj/structure/platform, /obj/structure/target{ @@ -32075,17 +32089,42 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gRJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"gRq" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" + icon_state = "cargo" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/upper/u_f_s) +"gRt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"gRz" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) +"gRB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "gRP" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -32094,6 +32133,27 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"gRV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"gRW" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "gSa" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -32126,36 +32186,36 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"gSy" = ( -/obj/item/frame/rack{ - layer = 3.1; - pixel_y = 19 - }, -/obj/structure/surface/rack, -/obj/item/tool/weldpack{ - pixel_x = 5 - }, -/obj/item/tool/weldpack{ - pixel_x = -2 +"gSq" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 12 }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"gSH" = ( -/obj/structure/largecrate/random/barrel/white, +"gSG" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "green" }, -/area/almayer/maint/hull/lower/l_m_s) -"gTk" = ( +/area/almayer/hallways/lower/starboard_midship_hallway) +"gTi" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -8 }, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 12 }, -/area/almayer/hallways/lower/port_umbilical) +/obj/item/clothing/head/militia/bucket{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "gTH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/skills{ @@ -32173,28 +32233,16 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"gTK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - 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; +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; pixel_y = 32 }, +/obj/structure/machinery/power/reactor, /turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/engineering/lower/engine_core) "gUf" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/floor/almayer{ @@ -32210,38 +32258,21 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"gUi" = ( -/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/aft_hallway) -"gUn" = ( +"gUo" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"gUu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"gUG" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/area/almayer/maint/hull/lower/l_f_s) +"gUt" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/upper/stern_hallway) "gUL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -32327,30 +32358,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"gWm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"gVP" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/hull/lower/l_m_s) +"gWj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"gWt" = ( -/obj/structure/surface/table/almayer, -/obj/item/pipe{ - dir = 9 - }, -/obj/item/tool/screwdriver{ - layer = 3.6; - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/tool/crowbar/red{ - pixel_x = 17 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/upper/u_m_s) "gWu" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -32369,6 +32389,16 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) +"gWL" = ( +/obj/structure/ladder{ + height = 2; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/p_bow) "gXl" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access_txt = "5" @@ -32416,34 +32446,6 @@ icon_state = "plating" }, /area/almayer/shipboard/sea_office) -"gYg" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 - }, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"gYj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "gYl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32463,23 +32465,12 @@ icon_state = "redfull" }, /area/almayer/living/offices/flight) -"gYI" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"gYU" = ( -/obj/structure/machinery/light/small{ +"gYL" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "gZw" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, @@ -32487,6 +32478,12 @@ "gZK" = ( /turf/open/floor/almayer, /area/almayer/living/auxiliary_officer_office) +"gZO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "gZP" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ id_tag = "Boat2-D4"; @@ -32497,22 +32494,21 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) -"gZW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) "had" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/command/lifeboat) +"hak" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_umbilical) "hal" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 @@ -32565,11 +32561,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"haO" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "haQ" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -32583,30 +32574,6 @@ icon_state = "plate" }, /area/almayer/living/offices) -"haR" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"hbl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/u_m_s) -"hbp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/p_stern) "hbs" = ( /obj/structure/surface/table/almayer, /obj/item/frame/fire_alarm, @@ -32624,26 +32591,18 @@ icon_state = "silver" }, /area/almayer/living/auxiliary_officer_office) -"hbA" = ( +"hbH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"hbE" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/snacks/cheesecakeslice{ - pixel_y = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/lower/port_fore_hallway) "hbI" = ( /obj/structure/sign/safety/ammunition{ pixel_x = 32; @@ -32654,6 +32613,21 @@ icon_state = "redfull" }, /area/almayer/medical/upper_medical) +"hbK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) +"hbP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) "hcf" = ( /obj/item/bedsheet/brown{ layer = 3.2 @@ -32700,6 +32674,16 @@ icon_state = "plate" }, /area/almayer/living/cryo_cells) +"hcx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) "hcI" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -32708,21 +32692,18 @@ icon_state = "cargo" }, /area/almayer/squads/delta) -"hcX" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "hdd" = ( /turf/open/floor/almayer{ dir = 9; icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) +"hdf" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) "hds" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -32732,13 +32713,13 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"hdy" = ( -/obj/item/storage/firstaid/fire, -/obj/structure/surface/rack, +"hdC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/lower/starboard_aft_hallway) "hdE" = ( /obj/structure/filingcabinet, /obj/item/reagent_container/food/drinks/coffeecup/uscm{ @@ -32748,16 +32729,10 @@ icon_state = "green" }, /area/almayer/squads/req) -"hdV" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_midship_hallway) +"hdO" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "hec" = ( /turf/open/floor/almayer{ dir = 8; @@ -32785,6 +32760,14 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/armory) +"heI" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "heK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -32794,10 +32777,14 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) -"heO" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +"heM" = ( +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) "heS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -32834,36 +32821,16 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"hfc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) -"hfv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"hfO" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full{ - pixel_y = 8 - }, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/suit/storage/hazardvest/black, -/obj/item/tool/crowbar, +"hfs" = ( +/obj/item/tool/kitchen/utensil/pfork, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/p_stern) +"hfx" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "hfQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ @@ -32879,12 +32846,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"hgk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "hgo" = ( /obj/structure/machinery/light{ dir = 8 @@ -32894,37 +32855,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"hgp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"hgs" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - 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/aft_hallway) "hgB" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/intel, @@ -32958,17 +32888,15 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"hgO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +"hgR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/tool/stamp/approved{ - pixel_y = -11; - pixel_x = -3 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/squads/req) +/area/almayer/maint/hull/lower/l_a_p) "hgZ" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -32981,31 +32909,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) -"hhd" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = -9; - pixel_y = 16 - }, -/obj/item/clothing/suit/storage/hazardvest/blue{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"hhg" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "hhn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -33020,6 +32923,18 @@ /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"hhG" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "hhW" = ( /obj/structure/surface/rack, /obj/item/storage/box/gloves{ @@ -33045,16 +32960,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"hiu" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "hiy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -33070,22 +32975,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hiP" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 +"hiU" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hja" = ( -/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) "hji" = ( /obj/structure/bed/chair{ dir = 4 @@ -33139,36 +33040,28 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) -"hjQ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hjT" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/largecrate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "hki" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"hkz" = ( -/obj/structure/machinery/light/small{ +"hko" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "red" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/living/cryo_cells) +"hky" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "hkB" = ( /obj/structure/sign/safety/rewire{ pixel_x = 8; @@ -33176,12 +33069,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"hkC" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 +"hkF" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "hkG" = ( /obj/structure/sign/safety/ammunition{ pixel_y = -32 @@ -33218,6 +33115,21 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"hkI" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"hkN" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "hkX" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -33237,6 +33149,17 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"hlm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "hlH" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -33247,6 +33170,13 @@ icon_state = "plate" }, /area/almayer/engineering/lower) +"hlP" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "hlT" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -33275,6 +33205,16 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) +"hlW" = ( +/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/aft_hallway) "hlX" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -33307,12 +33247,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) -"hmv" = ( -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "hmw" = ( /obj/structure/platform{ dir = 1 @@ -33334,19 +33268,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"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/aft_hallway) "hmC" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; @@ -33359,6 +33280,9 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"hmD" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "hmF" = ( /obj/structure/window/reinforced{ dir = 4; @@ -33385,36 +33309,18 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/main_office) +"hmM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "hmS" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ icon_state = "blue" }, /area/almayer/command/cichallway) -"hmV" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "medical manuals bookcase"; - opacity = 0 - }, -/obj/item/book/manual/surgery, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"hmZ" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "hng" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/accessory/storage/black_vest/acid_harness, @@ -33430,18 +33336,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) -"hnt" = ( -/obj/item/toy/deck{ - pixel_y = 12 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/obj/structure/surface/table/woodentable/poor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "hnI" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -33455,46 +33349,52 @@ icon_state = "test_floor4" }, /area/almayer/living/pilotbunks) -"hnP" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +"hnK" = ( +/obj/structure/coatrack, +/obj/structure/sign/poster/clf{ + pixel_x = -28 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"hoc" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/lower/l_m_s) +"hnP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer{ - icon_state = "mono" + dir = 5; + icon_state = "plating" }, /area/almayer/hallways/lower/vehiclehangar) -"hog" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"hoC" = ( +/obj/item/storage/firstaid/fire, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_a_s) "hoT" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/maint/hull/upper/u_m_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"hpa" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "hpk" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -33511,6 +33411,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"hpO" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control{ + id = "Secretroom"; + indestructible = 1; + layer = 2.5; + name = "Shutters"; + use_power = 0 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "hpS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "crate_room3"; @@ -33530,15 +33443,20 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"hqb" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) "hqc" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower) +"hqg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "hqh" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -33552,34 +33470,22 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell) -"hqm" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"hqp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"hqu" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" +"hqJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/almayer/maint/hull/upper/u_a_p) -"hqx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"hqM" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "hqU" = ( /obj/structure/bed/chair{ dir = 8; @@ -33603,6 +33509,19 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_lobby) +"hqX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/lower/port_fore_hallway) "hrm" = ( /obj/structure/closet/secure_closet/staff_officer/armory/shotgun, /obj/structure/machinery/light, @@ -33627,15 +33546,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/medical_science) -"hro" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "hrF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -33645,19 +33555,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/starboard_point_defense) -"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) "hrO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33667,18 +33564,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) -"hsc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) +"hsf" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "hsg" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -33689,21 +33577,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"hsh" = ( -/obj/structure/coatrack, -/obj/structure/sign/poster/clf{ - pixel_x = -28 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "hsj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -33721,19 +33594,9 @@ icon_state = "test_floor4" }, /area/almayer/squads/delta) -"hsu" = ( -/obj/structure/bed/sofa/south/grey{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "hsy" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/lower/engine_core) -"hsK" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "hsW" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -33750,55 +33613,33 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) -"hte" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"htg" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"htn" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"htk" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 + icon_state = "test_floor4" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/upper/p_bow) +"hts" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/lower/cryo_cells) -"htl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"htq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, /turf/open/floor/almayer{ 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 +/area/almayer/maint/hull/lower/stern) +"htB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "htG" = ( /obj/item/tool/soap, /obj/structure/machinery/light/small{ @@ -33827,26 +33668,22 @@ icon_state = "greenfull" }, /area/almayer/living/offices) -"hux" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"huD" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_s) +"huI" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) -"huD" = ( -/obj/structure/machinery/light{ - dir = 1 + icon_state = "test_floor5" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "huK" = ( /turf/open/floor/almayer{ icon_state = "redcorner" @@ -33862,12 +33699,6 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"huP" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "huU" = ( /obj/structure/machinery/door/airlock/almayer/security{ access_modified = 1; @@ -33883,15 +33714,33 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) -"hvq" = ( -/obj/structure/bed/chair{ +"huW" = ( +/obj/structure/stairs{ dir = 8; - pixel_y = 3 + 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/aft_hallway) +"huZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 9; + icon_state = "red" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/hallways/lower/port_fore_hallway) "hvv" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -33921,26 +33770,25 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/plating, /area/almayer/powered/agent) -"hvx" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +"hvH" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"hvP" = ( +/obj/item/trash/barcardine, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"hws" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/life_support{ + pixel_x = 14; + pixel_y = -25 }, -/area/almayer/maint/hull/lower/l_f_p) -"hvz" = ( -/obj/structure/machinery/light, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "mono" }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hvH" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) +/area/almayer/hallways/upper/stern_hallway) "hwC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -33950,19 +33798,13 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) -"hwH" = ( -/obj/structure/stairs{ +"hwQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "hxe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33985,6 +33827,14 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) +"hxU" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "hxZ" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/spade{ @@ -34009,17 +33859,44 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"hyb" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +"hyj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/maint/hull/lower/l_a_s) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "hyk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) +"hys" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"hyu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/lower/port_midship_hallway) "hyw" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -34044,17 +33921,17 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"hyQ" = ( -/turf/closed/wall/almayer, -/area/almayer/living/synthcloset) -"hza" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"hyL" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/upper/p_stern) +"hyQ" = ( +/turf/closed/wall/almayer, +/area/almayer/living/synthcloset) "hzb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4; @@ -34069,16 +33946,9 @@ /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_m_s) +"hzp" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "hzs" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -34114,10 +33984,12 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"hzN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +"hAb" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "hAc" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/flare, @@ -34126,9 +33998,13 @@ icon_state = "cargo" }, /area/almayer/squads/req) -"hAh" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/port_umbilical) +"hAd" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_s) +"hAu" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "hAz" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -34137,19 +34013,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"hAA" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_midship_hallway) "hAG" = ( /obj/structure/closet/crate/internals, /obj/item/handcuffs/cable/blue, @@ -34184,14 +34047,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/stern_hallway) "hBc" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -34200,30 +34055,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) -"hBr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - 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/aft_hallway) "hBz" = ( /obj/item/mortar_kit, /turf/open/floor/almayer{ @@ -34235,50 +34066,33 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"hBG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) "hBL" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/command/lifeboat) -"hBW" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"hCf" = ( -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 +"hBR" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"hCk" = ( -/obj/structure/largecrate/random/barrel/red, +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) -"hCq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/maint/hull/upper/u_a_s) +"hBS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "orange" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/hallways/upper/stern_hallway) "hCt" = ( /obj/structure/sign/safety/terminal{ pixel_x = 15; @@ -34291,12 +34105,11 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"hCF" = ( -/obj/structure/machinery/light, +"hCv" = ( /turf/open/floor/almayer{ - icon_state = "blue" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_f_p) "hCS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin/uscm{ @@ -34331,6 +34144,26 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"hDA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) "hDR" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/syringe_case{ @@ -34346,16 +34179,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) -"hDU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) "hDV" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -34379,53 +34202,14 @@ }, /area/almayer/squads/bravo) "hEg" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - 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/hull/upper/u_a_s) +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/starboard_umbilical) "hEl" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"hEm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hEr" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "hEw" = ( /obj/structure/pipes/standard/simple/visible{ dir = 10 @@ -34435,10 +34219,55 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"hEy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"hEB" = ( +/obj/structure/ladder{ + height = 2; + id = "AftStarboardMaint" + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"hEE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) +"hEQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Wheelchair Storage"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) "hEV" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"hEZ" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) "hFw" = ( /obj/structure/machinery/disposal/broken, /turf/open/floor/almayer{ @@ -34464,15 +34293,24 @@ icon_state = "test_floor4" }, /area/almayer/medical/morgue) -"hGo" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"hFR" = ( +/obj/structure/ladder{ + height = 1; + id = "AftStarboardMaint" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_s) +"hFU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "hGG" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -34544,15 +34382,60 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"hIp" = ( +"hHs" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/item/tool/weldpack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) +"hHz" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) +"hIh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"hIl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NW-out"; + layer = 2.5 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/p_bow) +"hIm" = ( +/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/aft_hallway) +"hIq" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "hIs" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -34563,16 +34446,6 @@ icon_state = "dark_sterile" }, /area/almayer/command/corporateliaison) -"hIF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"hIG" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "hII" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -34587,12 +34460,14 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"hIX" = ( -/obj/structure/largecrate/random/case/double, +"hIT" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/upper/mess) "hJg" = ( /obj/structure/pipes/trinary/mixer{ dir = 4; @@ -34612,27 +34487,17 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"hJD" = ( -/obj/structure/bed/sofa/south/grey/right{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +"hJt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "hJI" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"hKe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "hKl" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/warning_stripes{ @@ -34656,52 +34521,85 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"hKJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"hKL" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, +/area/almayer/hallways/lower/port_fore_hallway) +"hKS" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" + dir = 10; + icon_state = "red" }, -/area/almayer/hallways/upper/aft_hallway) -"hKO" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ +/area/almayer/hallways/upper/stern_hallway) +"hKX" = ( +/obj/structure/sign/safety/escapepod{ pixel_x = 8; pixel_y = 32 }, /turf/open/floor/almayer{ - 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 + dir = 4; + icon_state = "greencorner" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/hallways/lower/starboard_midship_hallway) +"hLq" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"hLu" = ( -/obj/structure/sign/safety/hvac_old{ +/obj/structure/sign/safety/water{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/l_m_p) +"hLA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "hLC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/grunt_rnr) +"hLD" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"hLF" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -9; + pixel_y = -4 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_y = -2 + }, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "hLI" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -34719,6 +34617,14 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) +"hLW" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) "hMc" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 @@ -34729,39 +34635,26 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/chapel) -"hMk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "hMG" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/engineering/lower) -"hMM" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "hMN" = ( /obj/structure/machinery/power/apc/almayer, /turf/open/floor/almayer{ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) +"hMV" = ( +/obj/item/storage/firstaid, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "hNh" = ( -/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/s_bow) "hNl" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21"; @@ -34773,15 +34666,17 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"hNv" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +"hNn" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_a_p) "hNw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -34789,17 +34684,14 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/charlie) -"hNB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" - }, +"hNJ" = ( +/obj/structure/surface/rack, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/hatchet, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/lower/p_bow) "hNM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/metal{ @@ -34826,25 +34718,18 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"hOu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"hOb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "red" }, +/area/almayer/hallways/upper/stern_hallway) +"hOc" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"hOV" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/upper/s_stern) "hPe" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, @@ -34857,6 +34742,12 @@ icon_state = "test_floor4" }, /area/almayer/medical/medical_science) +"hPf" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) "hPh" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/almayer{ @@ -34864,31 +34755,23 @@ icon_state = "silver" }, /area/almayer/living/auxiliary_officer_office) -"hPr" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"hPu" = ( -/obj/structure/largecrate/supply, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "cargo" +"hPk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/maint/hull/upper/u_f_p) -"hPD" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"hPF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + dir = 1; + icon_state = "green" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/hallways/lower/port_midship_hallway) "hPI" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/brig/perma) @@ -34916,10 +34799,18 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie_delta_shared) -"hQf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +"hQo" = ( +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) +"hQs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "hQw" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -34927,10 +34818,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"hQK" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) "hQP" = ( /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer{ @@ -35012,17 +34899,6 @@ icon_state = "plate" }, /area/almayer/living/numbertwobunks) -"hRA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "hRW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -35050,26 +34926,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"hSb" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"hSj" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig"; - closeOtherId = "brigmaint_n" - }, -/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) @@ -35082,18 +34938,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"hSv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "hSw" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -35130,6 +34974,12 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"hTj" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "hTl" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -35194,34 +35044,29 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"hTU" = ( +"hUh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"hUb" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/hallways/lower/starboard_aft_hallway) "hUk" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) +"hUr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_umbilical) "hUz" = ( /obj/structure/largecrate/supply/supplies/mre{ desc = "A supply crate containing everything you need to stop a CLF uprising."; @@ -35258,6 +35103,15 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"hVl" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "hVz" = ( /obj/structure/machinery/light{ dir = 1 @@ -35267,12 +35121,21 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"hVL" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +"hVR" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"hWi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "hWq" = ( /obj/structure/platform{ layer = 3.1 @@ -35321,27 +35184,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"hWD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"hWH" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/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 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "hWJ" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ @@ -35357,11 +35199,14 @@ }, /area/almayer/command/cichallway) "hWV" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "hXb" = ( /turf/open/floor/almayer{ dir = 1; @@ -35399,12 +35244,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hXD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"hXq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "hXG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -35443,12 +35293,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"hYf" = ( -/obj/effect/landmark/yautja_teleport, +"hYj" = ( +/obj/structure/platform_decoration, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_a_s) "hYn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35461,14 +35311,34 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"hYE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"hYw" = ( +/obj/item/tool/wet_sign, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) +"hYE" = ( +/obj/structure/closet/crate{ + desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; + name = "special operations crate" + }, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "hYG" = ( /obj/structure/bed/chair{ dir = 1 @@ -35497,12 +35367,14 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"hZw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"hZp" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "hZE" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -35547,16 +35419,19 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"hZZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "iaa" = ( /obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, /turf/open/floor/almayer{ icon_state = "redfull" }, /area/almayer/command/cic) +"iaf" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "iag" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, @@ -35589,6 +35464,14 @@ icon_state = "red" }, /area/almayer/squads/alpha) +"iao" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/mgoggles/prescription, +/obj/item/clothing/glasses/mbcg, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "iaq" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/almayer{ @@ -35601,6 +35484,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"iay" = ( +/obj/item/paper/almayer_storage, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "iaF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -35609,6 +35496,18 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"iaI" = ( +/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/stern_hallway) "iaR" = ( /obj/structure/machinery/light{ dir = 4 @@ -35618,6 +35517,13 @@ icon_state = "red" }, /area/almayer/command/lifeboat) +"iaZ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "ibc" = ( /obj/structure/machinery/conveyor_switch{ id = "req_belt" @@ -35627,24 +35533,10 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"ibf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"ibP" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +"icd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "icp" = ( /turf/open/floor/almayer{ dir = 8; @@ -35671,6 +35563,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"icS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) "icZ" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer{ @@ -35678,6 +35582,40 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) +"idf" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"idg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"idv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "idx" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -35690,7 +35628,7 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"idL" = ( +"idV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -35708,28 +35646,6 @@ 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/stern_hallway) -"ied" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"ien" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "ieu" = ( /obj/structure/window/reinforced{ dir = 4; @@ -35800,6 +35716,21 @@ dir = 4 }, /area/almayer/command/airoom) +"ieG" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "ieX" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/distribution_pipes{ @@ -35824,13 +35755,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"igb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "igr" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -35839,18 +35763,6 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"igs" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) "igt" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35862,39 +35774,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"igw" = ( -/obj/structure/sign/poster/ad{ - pixel_x = 30 - }, -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"igS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"iho" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/lower/constr) "ihw" = ( /obj/structure/machinery/cm_vending/sorted/medical, /turf/open/floor/almayer{ @@ -35902,12 +35781,20 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"ihF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "ihI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"ihK" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) "ihM" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ @@ -35921,15 +35808,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"ihW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "ihX" = ( /obj/structure/machinery/status_display{ pixel_y = -30 @@ -35944,6 +35822,12 @@ icon_state = "test_floor4" }, /area/almayer/squads/bravo) +"iif" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "iis" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -35994,14 +35878,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/aft_hallway) "ijr" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -36010,6 +35886,14 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"ijw" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "ijQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -36029,11 +35913,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"ikl" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/lower/vehiclehangar) "iks" = ( /obj/structure/pipes/binary/pump/high_power/on{ dir = 1 @@ -36054,19 +35933,24 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"ikA" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +"ikL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/maint/hull/lower/s_bow) -"ikC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + 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/hull/upper/u_a_s) +/area/almayer/maint/upper/mess) "ikQ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/tool/stamp/hop{ @@ -36088,9 +35972,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"ikT" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "ilq" = ( /turf/open/floor/almayer{ dir = 4; @@ -36122,6 +36003,14 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"ilW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "imo" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -36136,26 +36025,31 @@ }, /area/almayer/medical/morgue) "imt" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_f_p) "imy" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"inh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"ino" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-y" +/area/almayer/hallways/upper/stern_hallway) +"inq" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "cargo" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/maint/hull/lower/l_m_s) "ins" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -36169,6 +36063,17 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) +"iny" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "inL" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -36179,6 +36084,9 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"iov" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) "iow" = ( /obj/structure/machinery/cm_vending/sorted/attachments/squad{ req_access = null; @@ -36199,9 +36107,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"ioM" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "ioP" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -36215,6 +36120,12 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) +"ioT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "ioU" = ( /turf/closed/wall/almayer, /area/almayer/command/securestorage) @@ -36240,39 +36151,6 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"ipk" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"ipn" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - 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/hull/upper/u_m_s) -"ipB" = ( -/obj/structure/surface/rack, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/hatchet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "ipE" = ( /obj/structure/bed/chair{ dir = 8 @@ -36281,6 +36159,16 @@ icon_state = "orangefull" }, /area/almayer/squads/alpha_bravo_shared) +"ipF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "ipK" = ( /obj/effect/step_trigger/message/memorial, /turf/open/floor/almayer{ @@ -36307,21 +36195,35 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) +"ipT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) +"ipY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) "iqd" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"iqo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, +"iqe" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ - dir = 10; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/squads/req) +/area/almayer/hallways/lower/vehiclehangar) "iqp" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; @@ -36343,6 +36245,13 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"iqN" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "iqR" = ( /obj/structure/sign/safety/cryo{ pixel_x = -16 @@ -36361,23 +36270,19 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) +"irA" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "irF" = ( /obj/structure/closet/emcloset/legacy, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/shipboard/brig/main_office) -"irJ" = ( -/obj/item/tool/wirecutters{ - pixel_y = -7 - }, -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "irS" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/cable/heavyduty{ @@ -36410,15 +36315,15 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"isq" = ( +"isz" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/upper/s_bow) "isC" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -36494,6 +36399,19 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"itD" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/repair_bay) "itR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -36515,17 +36433,6 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"iuf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "iun" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, @@ -36566,12 +36473,6 @@ /obj/structure/machinery/computer/emails, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"iuI" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "ivf" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/camera, @@ -36586,28 +36487,45 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) +"ivi" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "ivs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"ivu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +"ivy" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) "ivz" = ( /obj/structure/closet, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/port_emb) -"ivL" = ( -/obj/structure/platform{ - dir = 8 +"ivG" = ( +/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/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_m_p) "ivM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -36623,18 +36541,33 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"ivV" = ( +"ivY" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/starboard_umbilical) "iwf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"iwp" = ( +/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 = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "iwB" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -36648,6 +36581,17 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"iwC" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "iwI" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/almayer/generic{ @@ -36700,6 +36644,14 @@ icon_state = "green" }, /area/almayer/squads/req) +"ixc" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "ixj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/crew/alt, @@ -36707,14 +36659,13 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) -"ixu" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ixl" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "ixv" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 @@ -36723,6 +36674,14 @@ icon_state = "plate" }, /area/almayer/command/cic) +"ixB" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/u_m_s) "ixD" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -36749,27 +36708,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"ixT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"iyC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"iyE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "iyF" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -36791,6 +36729,15 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"iyL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "iyS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36827,6 +36774,9 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"izT" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_p) "izY" = ( /obj/structure/machinery/autodoc_console, /turf/open/floor/almayer{ @@ -36834,6 +36784,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"iAf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"iAo" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "iAw" = ( /obj/item/tool/warning_cone{ pixel_x = -12 @@ -36855,6 +36818,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/containment) +"iAA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "iAE" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -36863,6 +36842,19 @@ icon_state = "plate" }, /area/almayer/engineering/lower/engine_core) +"iAM" = ( +/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/aft_hallway) +"iBk" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/repair_bay) "iBl" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -36873,14 +36865,27 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"iBu" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, +"iBs" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/l_f_p) +"iBD" = ( +/turf/open/floor/almayer{ + icon_state = "silvercorner" + }, +/area/almayer/hallways/lower/repair_bay) +"iBT" = ( +/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/aft_hallway) "iBY" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/almayer{ @@ -36888,6 +36893,12 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"iCf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/lower/port_aft_hallway) "iCu" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -36908,14 +36919,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"iCD" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "iCF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -36928,24 +36931,40 @@ icon_state = "green" }, /area/almayer/living/offices) -"iDk" = ( -/obj/structure/closet/emcloset, +"iCI" = ( +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) +"iDe" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + pixel_y = 0 }, -/area/almayer/maint/hull/lower/l_m_p) -"iDs" = ( -/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, -/area/almayer/maint/hull/upper/u_a_s) -"iEa" = ( -/obj/structure/machinery/light/small, +/area/almayer/medical/upper_medical) +"iDx" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/firealarm, +/obj/item/circuitboard, +/obj/item/clipboard, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/upper/s_stern) +"iDD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "iEg" = ( /turf/open/floor/almayer{ dir = 9; @@ -36989,17 +37008,10 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"iEM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) +"iED" = ( +/obj/structure/curtain/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "iFc" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood/ship, @@ -37009,29 +37021,6 @@ icon_state = "bluefull" }, /area/almayer/living/pilotbunks) -"iFp" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"iFA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Railguns and Viewing Room" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) "iFC" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -37059,6 +37048,14 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices) +"iFJ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "iFM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -37071,29 +37068,26 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) -"iFY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"iGf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/dropship_equipment/fuel/cooling_system{ + layer = 3.5 }, -/area/almayer/maint/lower/cryo_cells) -"iGc" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 }, -/area/almayer/maint/hull/lower/l_m_s) -"iGi" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "silver" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/repair_bay) "iGn" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/closet/secure_closet/surgical{ @@ -37104,12 +37098,32 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) -"iGE" = ( +"iGz" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"iGH" = ( +/obj/structure/platform_decoration, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_s) +"iGO" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/offices/flight) "iGQ" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 @@ -37121,15 +37135,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"iGZ" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "iHc" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) @@ -37141,6 +37146,10 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cells) +"iIa" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "iIj" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -37162,20 +37171,22 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"iIH" = ( -/obj/structure/largecrate/supply/medicine/medivend{ - pixel_x = 3 +"iIt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = 3; - pixel_y = 11; - density = 1 +/area/almayer/maint/hull/upper/u_a_s) +"iIJ" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ dir = 1; - icon_state = "sterile_green_side" + icon_state = "blue" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/hallways/upper/aft_hallway) "iIP" = ( /obj/structure/toilet{ pixel_y = 16 @@ -37191,14 +37202,10 @@ /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" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/port_midship_hallway) "iIR" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -37210,6 +37217,21 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"iJb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -34 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"iJA" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "iJB" = ( /obj/structure/sign/safety/galley{ pixel_x = 8; @@ -37230,13 +37252,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"iJT" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +"iJU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_a_s) "iKb" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -37266,6 +37287,15 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) +"iKB" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "iKD" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -37293,15 +37323,13 @@ icon_state = "mono" }, /area/almayer/engineering/port_atmos) -"iKV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" +"iKP" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "iKZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -37334,15 +37362,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"iLm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "iLo" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -37378,6 +37397,13 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_lobby) +"iLv" = ( +/obj/item/stool{ + pixel_x = 15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "iLG" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -37386,6 +37412,15 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) +"iLH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "iLO" = ( /turf/open/floor/almayer{ dir = 4; @@ -37420,35 +37455,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"iNk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"iNH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"iNR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "iNY" = ( /obj/structure/machinery/status_display{ pixel_x = 32; @@ -37456,51 +37462,40 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"iOo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"iOt" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 18 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_a_p) "iOD" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"iOP" = ( +"iPe" = ( /turf/open/floor/almayer{ - dir = 5; + dir = 8; icon_state = "red" }, -/area/almayer/hallways/upper/stern_hallway) -"iOX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/almayer/maint/hull/upper/u_a_p) +"iPm" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) -"iPf" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"iPq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"iPt" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/area/almayer/maint/hull/lower/l_m_p) +"iPp" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "iPv" = ( /obj/structure/bed/chair/comfy, /obj/structure/window/reinforced/ultra, @@ -37512,6 +37507,16 @@ icon_state = "silver" }, /area/almayer/living/briefing) +"iPy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) "iPD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -37528,47 +37533,22 @@ 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{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"iPN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +"iPL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" + dir = 6; + icon_state = "green" }, -/area/almayer/maint/upper/mess) +/area/almayer/hallways/lower/starboard_aft_hallway) "iPS" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ 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/aft_hallway) "iQd" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -37632,6 +37612,15 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) +"iQx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "iQB" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/card{ @@ -37651,25 +37640,23 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"iQJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"iRi" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, +"iQK" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/stern) +"iQP" = ( +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - dir = 4; + dir = 1; icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) +"iQR" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "iRy" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer, @@ -37690,6 +37677,9 @@ dir = 4 }, /area/almayer/medical/containment/cell) +"iSe" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) "iSm" = ( /obj/structure/pipes/vents/pump, /obj/structure/mirror{ @@ -37736,34 +37726,33 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) -"iSu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +"iSr" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/area/almayer/hallways/upper/stern_hallway) -"iSB" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/sign/safety/water{ + pixel_x = -17 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"iSV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "2;7" +/area/almayer/maint/upper/u_m_s) +"iSu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/upper/stern_hallway) +"iSC" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "iSZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37794,16 +37783,20 @@ icon_state = "red" }, /area/almayer/command/lifeboat) +"iTf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "iTl" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"iTq" = ( -/obj/structure/curtain/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "iTw" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -37822,20 +37815,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"iTQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"iUh" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, +"iTV" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/upper/u_m_p) "iUk" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie{ dir = 1 @@ -37877,11 +37859,26 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"iUV" = ( +"iUD" = ( +/obj/structure/bed/chair, /turf/open/floor/almayer{ - icon_state = "bluecorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/p_stern) +"iUS" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/u_m_p) +"iUU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/upper/stern_hallway) "iUW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -37892,6 +37889,27 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"iVj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/item/tool/stamp/approved{ + pixel_y = -11; + pixel_x = -3 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"iVq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "iVy" = ( /turf/open/floor/almayer{ dir = 1; @@ -37904,15 +37922,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"iVG" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "iVP" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17; @@ -37924,13 +37933,11 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"iWa" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) +"iVQ" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "iWc" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -37951,37 +37958,22 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"iWH" = ( -/obj/structure/machinery/light/small{ +"iWD" = ( +/obj/structure/platform{ dir = 4 }, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/structure/janitorialcart, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"iWJ" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) -"iWQ" = ( -/obj/effect/landmark/start/researcher, -/obj/effect/landmark/late_join/researcher, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) +/area/almayer/maint/hull/upper/u_a_p) "iWR" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/prison{ icon_state = "kitchen" }, /area/almayer/engineering/upper_engineering) +"iWW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "iXb" = ( /obj/structure/bed/chair/comfy/delta{ dir = 8 @@ -37990,28 +37982,12 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"iXm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/panic) "iXA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"iXB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "iXT" = ( /obj/item/trash/uscm_mre, /turf/open/floor/almayer, @@ -38058,12 +38034,6 @@ icon_state = "cargo_arrow" }, /area/almayer/medical/hydroponics) -"iYm" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "iYr" = ( /obj/structure/machinery/light{ dir = 4 @@ -38089,12 +38059,20 @@ icon_state = "plate" }, /area/almayer/living/gym) -"iZd" = ( -/obj/structure/largecrate/random/barrel/blue, +"iYR" = ( +/obj/structure/largecrate/supply/medicine/medivend{ + pixel_x = 3 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = 3; + pixel_y = 11; + density = 1 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "sterile_green_side" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/medical/lower_medical_medbay) "iZg" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -38104,6 +38082,22 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"iZh" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) +"iZq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "iZw" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; @@ -38121,6 +38115,9 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"iZy" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/vehiclehangar) "iZE" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/effect/decal/warning_stripes{ @@ -38134,6 +38131,15 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) +"iZN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "iZP" = ( /obj/structure/platform{ dir = 8 @@ -38167,12 +38173,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/stern_hallway) "jaf" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 4 @@ -38189,51 +38189,22 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"jak" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"jap" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" }, -/turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"jao" = ( -/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) -"jas" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"jay" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" +"jaF" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/maint/hull/lower/l_a_p) -"jaz" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/maint/hull/upper/u_a_s) "jaH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/paper_bin/uscm{ @@ -38244,13 +38215,6 @@ icon_state = "plating" }, /area/almayer/command/airoom) -"jaI" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "jaM" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -38277,10 +38241,34 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) -"jaW" = ( -/obj/effect/landmark/start/reporter, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +"jaT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"jbl" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "jbq" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -38346,31 +38334,26 @@ }, /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) +"jbS" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "jbX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) +"jca" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "jcf" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"jcE" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +"jcs" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "jcP" = ( /turf/open/floor/almayer{ icon_state = "plating_striped" @@ -38390,21 +38373,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"jdn" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"jdu" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jdC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "jdG" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -38415,20 +38383,27 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_three) -"jdZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "jeb" = ( /turf/closed/wall/almayer, /area/almayer/squads/alpha_bravo_shared) -"jei" = ( +"jed" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "silver" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/upper/aft_hallway) +"jee" = ( +/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/aft_hallway) "jeq" = ( /obj/structure/surface/rack, /obj/item/storage/box/pillbottles{ @@ -38444,27 +38419,18 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"jer" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"jev" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/device/taperecorder{ - pixel_x = 7; - pixel_y = 7 +"jeu" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/lower/vehiclehangar) "jew" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer{ @@ -38486,6 +38452,15 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"jeN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "jeO" = ( /obj/structure/machinery/light{ dir = 4 @@ -38502,15 +38477,29 @@ icon_state = "red" }, /area/almayer/living/cryo_cells) -"jeR" = ( -/obj/structure/machinery/light{ +"jeW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"jfe" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/perma) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"jfn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "jfK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -38521,13 +38510,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"jfS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "jfY" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -38615,6 +38597,14 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) +"jgu" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "jgw" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 32 @@ -38633,20 +38623,17 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"jgK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"jgW" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/area/almayer/maint/hull/lower/l_m_s) -"jgS" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "jhb" = ( /obj/structure/sign/safety/cryo{ pixel_x = -6; @@ -38654,27 +38641,12 @@ }, /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) -"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/stern_hallway) "jhn" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) -"jhs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "jht" = ( /obj/structure/machinery/vending/coffee{ density = 0; @@ -38697,10 +38669,6 @@ icon_state = "green" }, /area/almayer/living/offices) -"jhA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) "jhD" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -38714,29 +38682,21 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"jhK" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"jhR" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +"jhJ" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"jhS" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" +/area/almayer/hallways/upper/stern_hallway) +"jhN" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) "jhW" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ @@ -38755,17 +38715,15 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/lobby) -"jiM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"jiq" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower/engine_core) "jiU" = ( /obj/structure/sink{ dir = 1; @@ -38785,13 +38743,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) -"jjl" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "jjm" = ( /obj/structure/closet/secure_closet{ name = "\improper Lethal Injection Locker" @@ -38820,6 +38771,13 @@ icon_state = "sterile_green" }, /area/almayer/medical/lower_medical_medbay) +"jjE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "jjS" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -38833,6 +38791,10 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/medical_science) +"jkb" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "jkj" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, /obj/structure/machinery/light{ @@ -38849,17 +38811,20 @@ icon_state = "plate" }, /area/almayer/medical/morgue) -"jkq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"jkp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "jks" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -38919,40 +38884,20 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"jkN" = ( -/obj/structure/largecrate/random/barrel/yellow, +"jlc" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_a_s) -"jkY" = ( +/area/almayer/hallways/upper/starboard) +"jln" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"jlc" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/starboard) +/area/almayer/maint/hull/lower/s_bow) "jlA" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -38964,11 +38909,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/containment) -"jlD" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_fore_hallway) "jlG" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -39014,6 +38954,12 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"jmm" = ( +/obj/structure/machinery/gel_refiller, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) "jmn" = ( /obj/structure/surface/table/almayer, /obj/item/prop/magazine/dirty{ @@ -39027,15 +38973,6 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"jmz" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "jmK" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -39062,45 +38999,12 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"jnc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"jne" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) -"jnh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +"jnl" = ( +/obj/structure/largecrate/supply/floodlights, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/mess) -"jno" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"jnx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/upper/u_m_p) "jnD" = ( /turf/open/floor/almayer{ dir = 1; @@ -39123,6 +39027,15 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/command/cic) +"jon" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) +"jot" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "joG" = ( /obj/structure/machinery/washing_machine, /obj/structure/sign/poster{ @@ -39173,12 +39086,40 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"jpW" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"jpu" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_s) +"jpy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/starboard_aft_hallway) +"jpz" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/upper/stern_hallway) +"jpX" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/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/maint/upper/mess) "jqP" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "ARES Interior"; @@ -39213,10 +39154,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"jri" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "jrm" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -39227,38 +39164,12 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"jru" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_y = 32 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_umbilical) -"jrB" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"jrI" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"jrx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "jrM" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ dir = 4 @@ -39268,17 +39179,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"jsa" = ( -/obj/structure/machinery/light{ - dir = 8 +"jrN" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/area/almayer/maint/lower/s_bow) +"jsj" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "cargo" }, +/area/almayer/maint/hull/lower/l_f_s) +"jsn" = ( +/obj/structure/bed/chair/office/dark, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/upper/u_m_p) "jss" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -39287,14 +39203,6 @@ icon_state = "bluefull" }, /area/almayer/living/captain_mess) -"jsu" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "jsx" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -39306,17 +39214,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"jsA" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) -"jsE" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "jsP" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39326,14 +39223,19 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"jsR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +"jta" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) +/obj/effect/landmark/yautja_teleport, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "jtj" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -39342,37 +39244,47 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"jts" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +"jtr" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 1; + icon_state = "blue" }, -/area/almayer/hallways/lower/port_aft_hallway) -"jtU" = ( +/area/almayer/hallways/upper/aft_hallway) +"jtv" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) +"jtG" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"jtZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ +/area/almayer/maint/hull/lower/l_m_s) +"jtH" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "emerald" + icon_state = "pipe-c" }, -/area/almayer/hallways/lower/port_midship_hallway) -"juo" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"jux" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jtS" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"jtX" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer{ dir = 1; - icon_state = "bluecorner" + icon_state = "blue" }, /area/almayer/hallways/upper/aft_hallway) +"jul" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "juD" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -39380,17 +39292,23 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"juS" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" +"juV" = ( +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 10 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/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 = "mono" + icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/upper/u_m_s) "juX" = ( /obj/structure/platform_decoration{ dir = 1 @@ -39436,41 +39354,21 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) -"jvt" = ( -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 +"jvv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"jvz" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/port_umbilical) "jvB" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer/no_build{ dir = 4 }, /area/almayer/command/airoom) -"jvD" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) "jvM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -39481,6 +39379,10 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"jvO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) "jvP" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -39513,35 +39415,20 @@ "jvY" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/telecomms) -"jwi" = ( -/obj/structure/machinery/door_control{ - id = "InnerShutter"; - name = "Inner Shutter"; - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/obj/item/ashtray/plastic, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 +"jwa" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 8 }, -/area/almayer/shipboard/panic) -"jwq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = -7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"jwJ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) "jwK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -39549,19 +39436,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/hull/upper/u_m_p) -"jwP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "jxi" = ( /obj/structure/machinery/sleep_console, /turf/open/floor/almayer{ @@ -39569,12 +39443,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"jxu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "jxx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39590,15 +39458,6 @@ }, /turf/open/floor/plating, /area/almayer/living/bridgebunks) -"jxX" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "jyb" = ( /turf/open/floor/almayer{ dir = 6; @@ -39609,20 +39468,6 @@ /obj/structure/machinery/light, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"jyJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/ladder{ - height = 2; - id = "cicladder3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) "jyR" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_one_access_txt = "7;23;27" @@ -39631,6 +39476,34 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"jyU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"jyX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"jzb" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"jzp" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"jzu" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "jzD" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; @@ -39649,13 +39522,6 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"jzT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "jzZ" = ( /obj/structure/platform_decoration, /turf/open/floor/almayer{ @@ -39669,16 +39535,22 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) -"jAj" = ( -/obj/structure/machinery/light{ - dir = 4 +"jAl" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/medical/lower_medical_medbay) +"jAu" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jAy" = ( /turf/open/floor/almayer{ - icon_state = "orangecorner" + dir = 4; + icon_state = "orange" }, /area/almayer/hallways/lower/starboard_aft_hallway) "jAz" = ( @@ -39722,6 +39594,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/morgue) +"jBI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "jBO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -39745,10 +39623,6 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) -"jCg" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) "jCn" = ( /obj/structure/surface/table/almayer, /obj/item/tool/screwdriver, @@ -39760,18 +39634,13 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"jCr" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) -"jCx" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" +"jCu" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/item/tool/mop, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "jCK" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft"; @@ -39782,6 +39651,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"jDf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"jDh" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "jDk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -39799,15 +39684,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"jDz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/lower/port_midship_hallway) "jDO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -39848,34 +39724,51 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"jEA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"jEj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/hull/lower/l_m_s) +"jEm" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"jEM" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "silver" }, -/area/almayer/maint/hull/lower/l_a_s) -"jES" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 +/area/almayer/maint/hull/upper/u_m_p) +"jEo" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) +/area/almayer/hallways/upper/stern_hallway) +"jEt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) +"jEv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"jEB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"jES" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) "jFf" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -39890,14 +39783,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"jFt" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"jFl" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/hallways/lower/starboard_fore_hallway) +"jFn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "jFx" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/bucket{ @@ -39924,16 +39829,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"jFy" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/clipboard, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) "jFE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -39941,14 +39836,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"jFI" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "jFY" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ @@ -39972,18 +39859,6 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"jGQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "jGR" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -39993,6 +39868,12 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"jGY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/upper/aft_hallway) "jHh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40002,15 +39883,38 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"jHn" = ( -/obj/structure/largecrate/random/case, +"jHs" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) +"jHw" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/lower/s_bow) -"jHt" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/upper/aft_hallway) +"jHy" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/four{ + pixel_x = 31; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "jHC" = ( /turf/open/floor/almayer{ dir = 1; @@ -40033,13 +39937,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/hull/upper/u_m_p) "jIo" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -40047,16 +39944,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) -"jIC" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "jIH" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/straight_jacket, @@ -40070,17 +39957,40 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/execution) -"jIJ" = ( -/obj/structure/largecrate/random/barrel/green, +"jIM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"jIS" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, /turf/open/floor/almayer{ - icon_state = "plate" + allow_construction = 0 }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "jIT" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm/brig/chief, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) +"jIU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "jIV" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -40099,6 +40009,34 @@ icon_state = "blue" }, /area/almayer/living/port_emb) +"jJl" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"jJu" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/structure/sign/safety/med_life_support{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"jJF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "jKn" = ( /turf/open/floor/almayer{ dir = 5; @@ -40146,12 +40084,15 @@ icon_state = "cargo" }, /area/almayer/engineering/port_atmos) -"jLg" = ( -/obj/structure/closet/emcloset, +"jLa" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/upper/u_f_p) "jLj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40167,12 +40108,19 @@ icon_state = "kitchen" }, /area/almayer/living/captain_mess) -"jLH" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - icon_state = "plate" +"jLB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_m_p) +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "jLM" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -40190,18 +40138,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"jMa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"jLY" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "jMm" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null @@ -40258,15 +40204,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/aft_hallway) "jMQ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -40315,33 +40252,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/containment/cell) -"jNo" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"jNw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) "jND" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -40349,11 +40259,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"jNG" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "jNT" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/execution) @@ -40412,16 +40317,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"jOq" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"jOt" = ( -/obj/item/trash/barcardine, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "jOx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -40474,24 +40369,28 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"jPu" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_x = 27 +"jPA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"jPD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/panic) -"jPx" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "silver" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/upper/aft_hallway) "jPP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -40504,19 +40403,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) -"jPU" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"jQa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "jQt" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 8 }, /area/almayer/medical/containment/cell) +"jQK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "jRc" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/status_display{ @@ -40526,27 +40436,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"jRg" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_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/aft_hallway) -"jRp" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/item/toy/deck{ - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "jRz" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -40569,6 +40458,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"jRH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) "jRK" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -40622,6 +40520,28 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) +"jSz" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"jSF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + dir = 1; + name = "\improper Command Power Substation" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) "jSU" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -40650,6 +40570,20 @@ icon_state = "green" }, /area/almayer/living/offices) +"jTb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/device/flash, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) "jTj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -40659,41 +40593,12 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"jTt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "jTB" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orangecorner" }, /area/almayer/engineering/lower) -"jTH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "jTI" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -40718,10 +40623,10 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"jUh" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +"jUc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "jUl" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -40759,6 +40664,18 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"jUK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_s) "jUM" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ dir = 8 @@ -40768,16 +40685,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) -"jUV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "jUY" = ( /turf/open/floor/almayer{ icon_state = "silver" @@ -40795,6 +40702,16 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) +"jVi" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "jVr" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; @@ -40822,6 +40739,17 @@ icon_state = "test_floor5" }, /area/almayer/command/computerlab) +"jVM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "jVP" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -40841,6 +40769,15 @@ "jWh" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/port) +"jWn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "jWr" = ( /obj/structure/machinery/light{ dir = 4 @@ -40864,26 +40801,19 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"jXf" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - id_tag = "or03"; - name = "Lobby" +"jXC" = ( +/obj/effect/landmark/start/doctor, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"jXL" = ( +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_medbay) -"jXR" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/upper/u_a_s) "jYc" = ( /obj/item/bedsheet/blue{ layer = 3.2 @@ -40926,24 +40856,33 @@ icon_state = "blue" }, /area/almayer/living/port_emb) -"jYm" = ( -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/surface/rack, +"jYh" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_stern) -"jYM" = ( -/obj/structure/ladder{ - height = 1; - id = "ForePortMaint" +/area/almayer/maint/hull/upper/u_a_s) +"jYu" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"jYz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/p_bow) +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "jYR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -40960,6 +40899,15 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) +"jYZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "jZd" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -40969,30 +40917,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_four) -"jZe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/hull/upper/u_a_p) -"jZo" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) "jZs" = ( /obj/structure/machinery/light/containment{ dir = 4 @@ -41028,6 +40952,15 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) +"jZz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "jZC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -41040,36 +40973,43 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"jZD" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_s) +"jZS" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) "jZU" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /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/aft_hallway) "jZY" = ( /obj/structure/closet/l3closet/virology, /turf/open/floor/almayer{ icon_state = "redfull" }, /area/almayer/medical/upper_medical) -"kac" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/tool/hand_labeler, +"kag" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "green" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/lower/port_midship_hallway) +"kai" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "kam" = ( /obj/item/tool/screwdriver{ layer = 2.9; @@ -41083,17 +41023,21 @@ "kan" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_medbay) -"kaq" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 +"kaw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/port_umbilical) "kaB" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -41136,6 +41080,19 @@ icon_state = "test_floor4" }, /area/almayer/squads/bravo) +"kbh" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/lower/repair_bay) "kbv" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) @@ -41161,6 +41118,23 @@ icon_state = "kitchen" }, /area/almayer/engineering/upper_engineering) +"kbz" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical/green, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "kbH" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresDown"; @@ -41188,16 +41162,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/containment) -"kbT" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +"kbN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + dir = 5; + icon_state = "plating" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/vehiclehangar) "kbV" = ( /obj/structure/platform{ dir = 1 @@ -41214,17 +41191,6 @@ /obj/structure/machinery/camera/autoname/almayer, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"kcg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) "kcl" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -41235,12 +41201,6 @@ "kcp" = ( /turf/closed/wall/almayer, /area/almayer/living/auxiliary_officer_office) -"kcs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "kcA" = ( /obj/structure/machinery/light{ dir = 1 @@ -41250,18 +41210,16 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"kcG" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "kcH" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/synthcloset) "kcN" = ( /turf/closed/wall/almayer/reinforced/temphull, /area/almayer/living/commandbunks) +"kcR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "kde" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) @@ -41286,12 +41244,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"kdo" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "kdv" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -41300,6 +41252,18 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"kdx" = ( +/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/aft_hallway) "kdB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -41307,26 +41271,52 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"keE" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small, +"kdX" = ( +/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/hull/upper/u_m_p) +"kel" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/revolver/m44{ + desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"keO" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/almayer/maint/hull/lower/l_f_p) +"keN" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/lower/l_m_p) "keR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) +"kfa" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_midship_hallway) "kfo" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -41344,13 +41334,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/port) -"kfB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "kfE" = ( /obj/structure/bed/sofa/south/grey/right, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -41372,6 +41355,24 @@ "kfU" = ( /turf/open/floor/plating, /area/almayer/powered/agent) +"kfV" = ( +/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/maint/hull/upper/u_f_p) +"kgg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "kgp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -41403,20 +41404,6 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"kgt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kgD" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 35 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "kgQ" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/adv{ @@ -41428,15 +41415,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/execution) -"kgS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "khd" = ( /obj/structure/bed/chair{ dir = 4 @@ -41458,6 +41436,36 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"khh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 + }, +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"khz" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/largecrate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "khD" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -41469,15 +41477,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"khI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "khJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -41495,12 +41494,23 @@ }, /area/almayer/command/airoom) "kil" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/item/storage/belt/utility, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/hull/lower/l_f_s) +"kin" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "kio" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -41513,24 +41523,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/aft_hallway) -"kiy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) "kiG" = ( /obj/structure/machinery/power/smes/buildable, /obj/structure/machinery/status_display{ @@ -41554,14 +41546,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"kiR" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_s) "kiT" = ( /obj/structure/platform{ dir = 8 @@ -41598,6 +41582,18 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"kiY" = ( +/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/hull/upper/u_m_s) "kjk" = ( /obj/structure/machinery/cryopod/right, /obj/structure/sign/safety/cryo{ @@ -41607,22 +41603,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) -"kjw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) "kjD" = ( /obj/structure/machinery/computer/demo_sim{ dir = 4; @@ -41636,24 +41616,60 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"kjE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "kjO" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orangecorner" }, /area/almayer/engineering/lower/engine_core) -"kjW" = ( -/obj/structure/closet/firecloset, +"kjY" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"kkd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"kkg" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"kki" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"kkj" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/structure/largecrate/random/barrel/red, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -2; + pixel_y = 16 }, -/area/almayer/hallways/lower/port_midship_hallway) -"kjY" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/lower/l_m_s) "kkk" = ( /obj/structure/machinery/power/monitor{ name = "Core Power Monitoring" @@ -41666,6 +41682,26 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) +"kkm" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kko" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"kks" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) "kkt" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/marine_law, @@ -41693,17 +41729,16 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"kkI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"kkN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +"kkV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Workshop Vendors" + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/hallways/lower/repair_bay) "kkW" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/atmospipes, @@ -41713,12 +41748,26 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"klr" = ( +"klf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" + dir = 4; + icon_state = "orange" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/upper/stern_hallway) +"klk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "klH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -41727,10 +41776,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) -"klT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "kmd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -41753,22 +41798,39 @@ icon_state = "plate" }, /area/almayer/living/offices) -"kmx" = ( +"kmu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"kmA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - dir = 9; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "kmE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) +"kmL" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kmZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) "kng" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -41777,19 +41839,16 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"knl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"kni" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"knm" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "knH" = ( /obj/structure/machinery/vending/coffee, /obj/structure/sign/safety/coffee{ @@ -41812,6 +41871,20 @@ icon_state = "cargo" }, /area/almayer/lifeboat_pumps/south2) +"knN" = ( +/obj/structure/sign/safety/three{ + pixel_x = 31; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emerald" + }, +/area/almayer/hallways/lower/port_midship_hallway) "knO" = ( /obj/structure/bed/chair{ dir = 4 @@ -41821,13 +41894,23 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"kow" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"koa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"kog" = ( +/obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/lower/l_f_s) +"kov" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "koB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -41861,11 +41944,12 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/engine_core) -"kpj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +"kpl" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "kpo" = ( /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" @@ -41874,6 +41958,23 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) +"kpr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) +"kps" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) "kpQ" = ( /obj/structure/machinery/door_control{ id = "engidorm"; @@ -41886,20 +41987,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"kqb" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"kqm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "kqt" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -41910,6 +41997,22 @@ icon_state = "test_floor4" }, /area/almayer/living/bridgebunks) +"kqu" = ( +/obj/item/folder/red{ + desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; + name = "folder: 28"; + pixel_x = -4; + pixel_y = 5 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/crayon{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "kqv" = ( /obj/structure/machinery/light{ dir = 1 @@ -41936,32 +42039,13 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"kqB" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"kqC" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"kqI" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "kqK" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -41983,8 +42067,23 @@ icon_state = "bluecorner" }, /area/almayer/living/basketball) -"krp" = ( -/obj/structure/surface/table/almayer, +"krm" = ( +/obj/item/paper/prison_station/interrogation_log{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/structure/largecrate/random/barrel/green, +/obj/item/limb/hand/l_hand{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"krp" = ( +/obj/structure/surface/table/almayer, /obj/item/storage/box/cups, /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -41993,6 +42092,23 @@ icon_state = "plate" }, /area/almayer/living/gym) +"krq" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_umbilical) +"kru" = ( +/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/aft_hallway) "kry" = ( /obj/structure/machinery/flasher{ id = "Perma 1"; @@ -42002,17 +42118,13 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"krG" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +"krA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 }, -/area/almayer/maint/hull/upper/s_bow) -"krJ" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "krN" = ( /obj/structure/machinery/conveyor{ id = "req_belt" @@ -42082,49 +42194,25 @@ icon_state = "cargo" }, /area/almayer/squads/bravo) -"ksw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) +"ksH" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "ksN" = ( /turf/open/floor/almayer/uscm/directional{ dir = 6 }, /area/almayer/living/briefing) -"kti" = ( +"ktH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ktl" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ktI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 + icon_state = "SE-out" }, -/turf/open/floor/almayer{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"ktR" = ( -/obj/item/trash/crushed_cup, -/turf/open/floor/almayer{ - icon_state = "plate" + name = "ship-grade camera" }, -/area/almayer/maint/hull/lower/l_m_s) +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "ktX" = ( /turf/open/floor/almayer{ dir = 4; @@ -42142,12 +42230,27 @@ /obj/structure/machinery/vending/security/riot, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) +"kuj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "kuk" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"kus" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "kuu" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -42161,6 +42264,9 @@ icon_state = "emeraldcorner" }, /area/almayer/living/briefing) +"kuI" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "kuJ" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer{ @@ -42168,14 +42274,15 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"kuK" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"kuZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "kvf" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -42200,6 +42307,15 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) +"kvj" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "kvU" = ( /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, @@ -42224,21 +42340,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering) -"kwg" = ( -/obj/structure/bookcase/manuals/medical, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) -"kwi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "kwo" = ( /obj/structure/surface/rack, /turf/open/floor/almayer, @@ -42262,6 +42363,13 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"kwU" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) "kxd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -42275,14 +42383,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) -"kxe" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "kxo" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -42324,9 +42424,13 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) -"kyw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_m_s) +"kyH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "kyN" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/safety/distribution_pipes{ @@ -42337,9 +42441,19 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"kyP" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_p) +"kyQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/heart/prosthetic{ + pixel_x = -4 + }, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "kyR" = ( /obj/structure/safe/co_office, /obj/item/weapon/pole/fancy_cane, @@ -42369,16 +42483,12 @@ /obj/structure/machinery/vending/walkman, /turf/open/floor/almayer, /area/almayer/living/briefing) -"kzc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, +"kzd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_a_p) "kzk" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -42397,13 +42507,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/execution) -"kzs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "kzy" = ( /obj/structure/bed/chair, /turf/open/floor/almayer{ @@ -42462,15 +42565,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"kzR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "kzT" = ( /obj/structure/machinery/door_control{ id = "ARES StairsLower"; @@ -42493,80 +42587,49 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"kAj" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"kAk" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 }, -/area/almayer/hallways/lower/port_aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "kAm" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer{ 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; - status = 3; - icon_state = "bulb-burned" - }, -/obj/effect/decal/cleanable/blood, -/obj/item/prop{ - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - desc = "A blood bag with a hole in it. The rats must have gotten to it first." - }, -/obj/item/prop{ - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - desc = "A blood bag with a hole in it. The rats must have gotten to it first." - }, -/obj/item/prop{ - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - desc = "A blood bag with a hole in it. The rats must have gotten to it first." - }, -/obj/item/prop{ - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - name = "circuit board"; - desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; - layer = 2.78; - pixel_y = 10; - pixel_x = 8 - }, -/obj/item/prop{ - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - name = "circuit board"; - desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; - layer = 2.79; - pixel_y = 7; - pixel_x = 8 - }, +"kAC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "sterile_green_corner" + icon_state = "plate" }, -/area/almayer/medical/lower_medical_medbay) -"kAv" = ( -/obj/structure/largecrate/supply/ammo/shotgun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/lower/port_midship_hallway) "kAL" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"kAN" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"kAO" = ( +/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/hull/upper/u_a_p) "kAU" = ( /obj/structure/platform{ dir = 4 @@ -42576,6 +42639,22 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) +"kAW" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_fore_hallway) "kBh" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -42624,14 +42703,6 @@ icon_state = "cargo" }, /area/almayer/living/tankerbunks) -"kCd" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/lower/vehiclehangar) "kCi" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/port_missiles) @@ -42654,14 +42725,11 @@ }, /area/almayer/hallways/hangar) "kCo" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"kCu" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "kCE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -42677,13 +42745,34 @@ icon_state = "dark_sterile" }, /area/almayer/medical/containment) -"kDd" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +"kCG" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"kCH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/lower/starboard_midship_hallway) +"kCN" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"kDj" = ( +/obj/structure/bed, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) "kDk" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -42706,6 +42795,13 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"kDP" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/broken_arcade, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "kDR" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -42719,6 +42815,24 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"kDT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) +"kDZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "kEc" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -42772,15 +42886,16 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"kEE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"kEW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +"kEJ" = ( +/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_m_s) "kFe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/firealarm{ @@ -42791,6 +42906,12 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"kFi" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "kFs" = ( /obj/structure/machinery/light{ dir = 4 @@ -42805,6 +42926,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"kFL" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"kFM" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "kFO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -42816,22 +42950,34 @@ icon_state = "plating" }, /area/almayer/squads/req) -"kFU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "kFY" = ( /obj/structure/sign/safety/cryo{ pixel_x = 7 }, /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) -"kGi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +"kGa" = ( +/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/aft_hallway) +"kGh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "kGu" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -42844,12 +42990,14 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) -"kGw" = ( -/obj/structure/machinery/light, +"kGz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/port_midship_hallway) "kGF" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -42868,14 +43016,30 @@ icon_state = "containment_corner_variant_2" }, /area/almayer/medical/containment/cell) -"kGS" = ( +"kGZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_f_s) "kHa" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/surgery) +"kHb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "kHd" = ( /obj/structure/machinery/computer/arcade, /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -42887,6 +43051,31 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"kHq" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_s) +"kHv" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"kHx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "kHS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -42905,25 +43094,36 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"kIf" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"kIk" = ( +"kId" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kIj" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) +"kIr" = ( /obj/structure/prop/invuln/lattice_prop{ dir = 1; icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 + pixel_x = -16; + pixel_y = 17 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"kIl" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_m_p) "kIP" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -42932,25 +43132,11 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) -"kJc" = ( -/obj/structure/ladder{ - height = 1; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/s_bow) -"kJh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"kIR" = ( +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/port_aft_hallway) "kJi" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -42963,6 +43149,21 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"kJw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"kJD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "kJH" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -42997,12 +43198,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/commandbunks) -"kJZ" = ( -/obj/structure/largecrate/random/barrel/white, +"kKf" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "blue" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/upper/aft_hallway) "kKk" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -43031,24 +43235,12 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"kKB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_aft_hallway) "kKR" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"kKY" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "kLc" = ( /obj/structure/machinery/door/airlock/almayer/maint{ req_one_access = null; @@ -43067,57 +43259,14 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"kLm" = ( +"kMk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/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/hull/upper/u_m_s) -"kLE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kLP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 8; - 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/hull/upper/u_a_s) -"kMa" = ( -/obj/structure/platform_decoration, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/upper/aft_hallway) "kMp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -43130,17 +43279,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"kMr" = ( -/obj/item/trash/uscm_mre, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "kMH" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 1"; @@ -43164,37 +43302,14 @@ icon_state = "outerhull_dir" }, /area/almayer/engineering/upper_engineering/port) -"kMR" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "kMW" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/s_bow) -"kNf" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/upper/u_a_p) "kNk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -43207,9 +43322,11 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"kNq" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_p) +"kNr" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/lower/repair_bay) "kNx" = ( /obj/structure/sign/safety/ref_bio_storage{ pixel_x = -17; @@ -43285,6 +43402,16 @@ icon_state = "bluefull" }, /area/almayer/living/pilotbunks) +"kOF" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "kOH" = ( /obj/structure/machinery/light{ dir = 8 @@ -43297,40 +43424,6 @@ icon_state = "dark_sterile" }, /area/almayer/command/corporateliaison) -"kOJ" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"kOR" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) -"kOW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) "kPx" = ( /obj/structure/surface/table/almayer, /obj/item/device/mass_spectrometer, @@ -43409,14 +43502,11 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"kQr" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/pistachios, -/obj/item/tool/lighter/random{ - pixel_x = 13 +"kQm" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/hallways/lower/starboard_fore_hallway) "kQu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -43428,6 +43518,22 @@ allow_construction = 0 }, /area/almayer/shipboard/brig/processing) +"kQP" = ( +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) +"kQZ" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "kRd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -43443,21 +43549,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/hull/upper/u_m_s) "kRD" = ( /obj/item/reagent_container/glass/bucket/janibucket, /obj/structure/machinery/light{ @@ -43475,13 +43566,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/hull/upper/u_a_p) "kRP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/prop/magazine/dirty/torn, @@ -43491,28 +43575,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"kRU" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/repair_bay) -"kSn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "kSv" = ( /obj/item/reagent_container/glass/bucket/janibucket, /turf/open/floor/almayer{ @@ -43536,16 +43598,11 @@ }, /area/almayer/command/airoom) "kSA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" - }, +/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/lower/l_a_s) "kSH" = ( /obj/structure/sign/prop1{ pixel_y = 32 @@ -43570,6 +43627,26 @@ icon_state = "plating" }, /area/almayer/squads/req) +"kTn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) +"kTp" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silvercorner" + }, +/area/almayer/hallways/upper/aft_hallway) +"kTt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "kTv" = ( /obj/structure/machinery/light{ dir = 4 @@ -43579,6 +43656,23 @@ icon_state = "tcomms" }, /area/almayer/command/telecomms) +"kTB" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"kTF" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/item/storage/belt/utility, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "kTN" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -43607,65 +43701,25 @@ icon_state = "test_floor4" }, /area/almayer/living/pilotbunks) -"kUs" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"kUr" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"kUQ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/constructable_frame, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "mono" }, -/area/almayer/hallways/upper/aft_hallway) -"kUw" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/bag/trash{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/storage/bag/trash{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/port) -"kUA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"kUI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kUL" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) -"kUQ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"kUR" = ( -/turf/open/floor/almayer{ - icon_state = "bluefull" +/area/almayer/lifeboat_pumps/south1) +"kUR" = ( +/turf/open/floor/almayer{ + icon_state = "bluefull" }, /area/almayer/living/briefing) "kUV" = ( @@ -43694,13 +43748,13 @@ /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" +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "kWk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -43723,14 +43777,15 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"kWI" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, +"kWA" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/p_bow) +"kWG" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "redfull" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/shipboard/panic) "kWN" = ( /obj/structure/sign/poster{ desc = "It says DRUG."; @@ -43775,6 +43830,23 @@ icon_state = "plate" }, /area/almayer/squads/bravo) +"kXb" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"kXe" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "kXf" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -43804,6 +43876,12 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) +"kXq" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "kXu" = ( /turf/open/floor/almayer{ dir = 8; @@ -43825,12 +43903,48 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"kYl" = ( +"kXV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Railguns and Viewing Room" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) +"kYb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "Under Construction Shutters"; + name = "shutter-control"; + pixel_x = -25 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"kYj" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 35 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"kYs" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "kYt" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/bible{ @@ -43910,12 +44024,30 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"lad" = ( +/obj/item/tool/wrench{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "lah" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "emerald" }, /area/almayer/living/gym) +"laB" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"laC" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "laM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -43937,13 +44069,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/hull/upper/u_a_s) "laQ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -43978,23 +44103,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/aft_hallway) "lbf" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -44040,6 +44148,15 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) +"lcj" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "lcy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -44051,6 +44168,28 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) +"lcz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) +"lcL" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"lcM" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "lcV" = ( /obj/structure/bed/chair{ dir = 4 @@ -44066,23 +44205,17 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"ldb" = ( -/obj/structure/machinery/light{ - dir = 1 +"lcZ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/vehiclehangar) "ldc" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/lower/workshop) -"lde" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "ldl" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 @@ -44091,16 +44224,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/aft_hallway) "ldt" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -44123,16 +44246,6 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"ldF" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"ldW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "lea" = ( /obj/structure/sink{ dir = 4; @@ -44179,12 +44292,36 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"leM" = ( +"leC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"leL" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, /obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_stern) +/area/almayer/maint/hull/lower/l_m_p) +"leQ" = ( +/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/hull/upper/u_m_s) "leY" = ( /obj/structure/bed/sofa/south/white/left, /turf/open/floor/almayer{ @@ -44192,6 +44329,32 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"leZ" = ( +/obj/structure/machinery/door_control/cl/quarter/backdoor{ + pixel_x = -25; + pixel_y = 23 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"lfa" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"lfs" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "lft" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/fire, @@ -44200,13 +44363,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"lfx" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"lfz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "lfH" = ( /obj/structure/machinery/light{ dir = 4 @@ -44216,12 +44372,19 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"lgk" = ( -/obj/effect/decal/cleanable/dirt, +"lgo" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/upper/aft_hallway) "lgt" = ( /obj/structure/sink{ dir = 4; @@ -44271,20 +44434,17 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"lhj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -34 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"lhs" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"lgI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lgM" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "lht" = ( /turf/open/floor/almayer{ dir = 6; @@ -44326,6 +44486,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"lhS" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "lhX" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -44334,23 +44500,15 @@ /turf/open/floor/wood/ship, /area/almayer/living/basketball) "lia" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"lib" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/machinery/cm_vending/sorted/medical/bolted, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "sterile_green_side" }, -/area/almayer/maint/hull/lower/stern) +/area/almayer/medical/lower_medical_medbay) "lid" = ( /obj/structure/machinery/chem_master{ vial_maker = 1 @@ -44359,6 +44517,34 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"lij" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"lim" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "lin" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -44377,17 +44563,9 @@ }, /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, +/obj/structure/closet/firecloset, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/stern) "liJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -44430,29 +44608,43 @@ icon_state = "plate" }, /area/almayer/living/gym) -"ljm" = ( -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +"ljl" = ( +/obj/structure/prop/invuln/pipe_water, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/obj/structure/closet/crate, -/obj/item/clothing/suit/storage/hazardvest/black, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/upper/u_m_s) "ljs" = ( /obj/effect/landmark/start/marine/spec/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"ljv" = ( -/turf/closed/wall/almayer, +"lju" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ljD" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, /area/almayer/maint/hull/lower/l_a_p) "ljG" = ( /obj/structure/closet/crate/freezer, @@ -44497,16 +44689,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"lka" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "lkd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -44533,6 +44715,14 @@ icon_state = "red" }, /area/almayer/living/offices/flight) +"lkg" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "lkm" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ @@ -44565,6 +44755,14 @@ icon_state = "plate" }, /area/almayer/squads/charlie) +"lkN" = ( +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "lkV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -44583,6 +44781,30 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"lli" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_umbilical) +"lls" = ( +/obj/item/trash/crushed_cup, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"llF" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "llK" = ( /obj/structure/platform_decoration{ dir = 4 @@ -44598,19 +44820,15 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"lma" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15 +"llQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"lmi" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/upper_medical) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "lml" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -44618,13 +44836,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"lmq" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "lmw" = ( /obj/structure/closet/l3closet/general, /obj/structure/machinery/light{ @@ -44636,6 +44847,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) +"lmy" = ( +/obj/structure/sign/safety/restrictedarea, +/obj/structure/sign/safety/security{ + pixel_x = 15 + }, +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) "lmz" = ( /turf/closed/wall/almayer/white/hull, /area/space) @@ -44650,6 +44868,21 @@ "lmK" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/securestorage) +"lmW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/bulbs{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"lnb" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_a_s) "lne" = ( /obj/structure/bed/chair, /turf/open/floor/almayer{ @@ -44679,10 +44912,24 @@ icon_state = "silvercorner" }, /area/almayer/shipboard/brig/cic_hallway) -"lnD" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_s) +"lnE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"lnG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "lnP" = ( /obj/structure/machinery/vending/cola, /obj/structure/window/reinforced, @@ -44783,9 +45030,6 @@ }, /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) "loK" = ( /obj/structure/closet/crate/medical, /obj/item/storage/firstaid/adv, @@ -44800,6 +45044,19 @@ "loP" = ( /turf/closed/wall/almayer, /area/almayer/engineering/laundry) +"loQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_s) "loS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -44845,15 +45102,12 @@ icon_state = "cargo" }, /area/almayer/living/commandbunks) -"lpl" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"lpj" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/shipboard/panic) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "lpt" = ( /turf/open/floor/almayer{ icon_state = "blue" @@ -44867,11 +45121,30 @@ icon_state = "test_floor4" }, /area/almayer/powered/agent) -"lql" = ( +"lpH" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"lpM" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"lqd" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/maint/hull/lower/l_f_s) "lqF" = ( /turf/open/floor/almayer{ dir = 9; @@ -44889,6 +45162,10 @@ icon_state = "emerald" }, /area/almayer/hallways/hangar) +"lqL" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) "lqN" = ( /obj/item/device/assembly/mousetrap/armed, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -44899,31 +45176,21 @@ icon_state = "orange" }, /area/almayer/living/port_emb) -"lrd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "lrq" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/armory) -"lrE" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/s_bow) +"lrD" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "lrF" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"lrH" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "lrT" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, @@ -44947,15 +45214,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/hull/upper/u_a_s) "lsn" = ( /obj/structure/surface/table/almayer, /obj/item/paper{ @@ -44967,12 +45225,6 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"lso" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "lsp" = ( /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Conference Room" @@ -45000,6 +45252,12 @@ icon_state = "red" }, /area/almayer/living/offices/flight) +"lsQ" = ( +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower/engine_core) "lsV" = ( /obj/structure/largecrate/random/barrel/red, /obj/structure/sign/safety/fire_haz{ @@ -45025,47 +45283,34 @@ /obj/effect/landmark/start/working_joe, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/airoom) -"ltm" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/almayer{ - icon_state = "plate" +"ltn" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/almayer/maint/hull/upper/u_a_p) +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_midship_hallway) "lto" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/almayer{ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"ltt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"ltw" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) -"ltv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"ltw" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"lty" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/lower/l_f_p) "ltA" = ( /obj/item/tool/weldingtool, /turf/open/floor/almayer, @@ -45098,12 +45343,9 @@ icon_state = "test_floor4" }, /area/almayer/living/commandbunks) -"luE" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +"luJ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "luS" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/cardboard{ @@ -45186,6 +45428,12 @@ /obj/structure/machinery/cm_vending/sorted/tech/circuits, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) +"lwv" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/upper/aft_hallway) "lwC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -45199,12 +45447,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"lwG" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "lwJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -45219,20 +45461,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) -"lwY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) -"lxd" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +"lxm" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/engineering/lower/engine_core) "lxo" = ( /obj/structure/sign/safety/hazard{ pixel_x = -17; @@ -45246,6 +45482,13 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"lxq" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "lxy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -45260,6 +45503,11 @@ icon_state = "cargo" }, /area/almayer/living/commandbunks) +"lxO" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_umbilical) "lxT" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/almayer{ @@ -45274,6 +45522,23 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"lyc" = ( +/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/aft_hallway) "lyk" = ( /obj/structure/sign/safety/storage{ pixel_x = -17 @@ -45283,37 +45548,12 @@ icon_state = "green" }, /area/almayer/squads/req) -"lym" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) -"lyq" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, -/area/almayer/hallways/lower/port_midship_hallway) "lyw" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"lyz" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/heart/prosthetic{ - pixel_x = -4 - }, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "lyE" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -45321,14 +45561,28 @@ icon_state = "silvercorner" }, /area/almayer/command/computerlab) +"lyL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "lyP" = ( -/obj/structure/largecrate/random/case/small, +/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/lower/port_fore_hallway) +"lyV" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/s_bow) -"lyW" = ( -/turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_m_p) "lyX" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ @@ -45371,32 +45625,19 @@ 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/aft_hallway) "lzY" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) -"lAa" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +"lAg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "lAl" = ( /turf/open/floor/almayer{ dir = 4; @@ -45433,25 +45674,28 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"lBf" = ( -/obj/structure/machinery/light, +"lAR" = ( /turf/open/floor/almayer{ - dir = 10; + dir = 9; icon_state = "red" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/port_fore_hallway) +"lAX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "lBg" = ( /obj/structure/bedsheetbin, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"lBl" = ( -/obj/structure/sink{ - pixel_y = 24 - }, +"lBj" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) +/area/almayer/maint/hull/lower/l_m_p) "lBv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -45464,46 +45708,22 @@ 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/hull/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_m_s) -"lCc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +"lBF" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/clipboard, +/obj/item/tool/pen, /turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"lCm" = ( -/obj/structure/machinery/light/small{ - dir = 1 + dir = 8; + icon_state = "green" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/squads/req) +"lBO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "lCp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -45538,28 +45758,14 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"lDa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"lDk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"lCT" = ( +/obj/structure/machinery/conveyor_switch{ + id = "lower_garbage" }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_a_p) "lDn" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -45567,26 +45773,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"lDA" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"lDL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) "lDN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -45605,15 +45791,6 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"lDT" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "lDV" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, @@ -45649,6 +45826,18 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) +"lEz" = ( +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "lEF" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -45659,6 +45848,15 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) +"lEI" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "lEO" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -45666,11 +45864,15 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"lEV" = ( +"lEX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "emerald" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/port_midship_hallway) "lFe" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -45707,16 +45909,6 @@ "lFp" = ( /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop/hangar) -"lFr" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "lFt" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, /obj/structure/sign/safety/maint{ @@ -45728,17 +45920,10 @@ icon_state = "cargo" }, /area/almayer/engineering/starboard_atmos) -"lFw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, +"lFv" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/s_bow) "lFA" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pouch/tools/tank, @@ -45780,18 +45965,17 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) "lFL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 1 +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_bow) +"lFZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "green" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_aft_hallway) "lGg" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer{ @@ -45799,25 +45983,71 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"lHk" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +"lGi" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"lGo" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/lower/l_a_p) +"lGH" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) +"lGI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"lGV" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"lGW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) +"lGZ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "lHu" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "greencorner" }, /area/almayer/living/grunt_rnr) -"lHB" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) +"lHE" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "lHG" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; @@ -45832,9 +46062,18 @@ icon_state = "test_floor4" }, /area/almayer/living/grunt_rnr) -"lIj" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/mess) +"lHU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"lHV" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "lIp" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 @@ -45844,20 +46083,6 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"lIu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "lII" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -45866,18 +46091,21 @@ icon_state = "mono" }, /area/almayer/engineering/port_atmos) -"lIQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "lIU" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/port) +"lJb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "lJu" = ( /obj/structure/barricade/metal{ dir = 1 @@ -45941,12 +46169,6 @@ icon_state = "dark_sterile" }, /area/almayer/shipboard/brig/cells) -"lJM" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "lJO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45993,29 +46215,44 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"lLe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "lLl" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "greencorner" + dir = 1; + icon_state = "blue" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/aft_hallway) +"lLs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"lLx" = ( +/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/hull/upper/u_a_s) "lLC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"lLO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) "lLS" = ( /obj/structure/sign/safety/galley{ pixel_x = 32 @@ -46049,33 +46286,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"lMw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) "lMx" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/starboard) -"lMO" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "lMY" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -46085,12 +46301,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"lNk" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "lNw" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -46106,6 +46316,15 @@ icon_state = "plate" }, /area/almayer/squads/charlie) +"lNz" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/part_fabricator/dropship, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) "lNN" = ( /obj/structure/closet/secure_closet/medical2, /turf/open/floor/almayer{ @@ -46117,14 +46336,18 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop) -"lOn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"lOa" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, /turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"lOj" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "greencorner" + }, /area/almayer/hallways/upper/aft_hallway) "lOr" = ( /obj/structure/window/framed/almayer, @@ -46136,6 +46359,10 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) +"lOt" = ( +/obj/effect/landmark/start/liaison, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "lOH" = ( /obj/structure/sink{ pixel_y = 32 @@ -46186,6 +46413,24 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"lPo" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/two{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "lPB" = ( /obj/structure/surface/table/almayer, /obj/item/device/lightreplacer, @@ -46211,6 +46456,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"lPE" = ( +/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/hull/upper/u_a_s) "lPO" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ @@ -46218,10 +46471,10 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"lPW" = ( -/obj/structure/reagent_dispensers/fueltank, +"lPP" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_a_s) "lQa" = ( /obj/structure/machinery/light{ dir = 8 @@ -46234,32 +46487,18 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"lQf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, +"lQk" = ( +/obj/structure/largecrate/supply/supplies/water, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_p) "lQz" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/squads/bravo) -"lQB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "lQG" = ( /obj/structure/machinery/computer/tech_control, /turf/open/floor/plating/plating_catwalk, @@ -46288,6 +46527,14 @@ icon_state = "sterile_green_side" }, /area/almayer/shipboard/brig/surgery) +"lRo" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "lRs" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -46301,10 +46548,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"lRt" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "lRE" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -46314,11 +46557,21 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"lRL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "lRP" = ( /obj/structure/surface/table/almayer, /obj/item/prop/helmetgarb/chaplain_patch, /turf/open/floor/wood/ship, /area/almayer/living/chapel) +"lRV" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "lRX" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, @@ -46351,21 +46604,23 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"lSJ" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"lSF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/maint/hull/upper/s_bow) -"lSX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/squads/req) +"lSH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "lTt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -46385,6 +46640,18 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) +"lTL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"lTY" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) "lUm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ name = "\improper Brig Cells"; @@ -46397,24 +46664,12 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/processing) -"lUA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"lUQ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"lUr" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/u_f_p) "lVl" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer, @@ -46423,17 +46678,28 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"lVR" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, +"lVv" = ( /obj/structure/platform{ - dir = 8 + dir = 1 }, +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_a_s) +"lVK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "greencorner" + }, +/area/almayer/squads/req) "lVS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -46444,17 +46710,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"lVW" = ( -/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/maint/hull/upper/u_f_p) "lVX" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/overwatch/almayer{ @@ -46476,12 +46731,12 @@ icon_state = "plate" }, /area/almayer/command/cic) -"lVZ" = ( -/obj/structure/platform_decoration{ - dir = 4 +"lWq" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/lower/starboard_umbilical) "lWr" = ( /obj/structure/largecrate/random/case, /turf/open/floor/almayer{ @@ -46489,25 +46744,15 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"lWt" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +"lWA" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_m_s) -"lWO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"lWY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/hallways/lower/starboard_aft_hallway) "lXb" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -46543,8 +46788,9 @@ /area/almayer/living/offices) "lYg" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "lYk" = ( /obj/item/trash/c_tube{ pixel_x = 16; @@ -46554,14 +46800,9 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"lYt" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +"lYm" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) "lYL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -46579,18 +46820,25 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"lZb" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"lYS" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) +"lYT" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"lYZ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "lZs" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/radio/intercom{ @@ -46613,41 +46861,38 @@ icon_state = "plate" }, /area/almayer/command/cic) -"lZI" = ( -/obj/structure/prop/invuln/lattice_prop{ +"lZt" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "pipe-c" }, -/area/almayer/maint/hull/lower/l_m_p) -"lZM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "silver" }, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/hallways/upper/aft_hallway) +"lZD" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "lZZ" = ( /obj/structure/machinery/autolathe/medilathe/full, /turf/open/floor/almayer{ icon_state = "test_floor4" }, /area/almayer/medical/hydroponics) -"maF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, +"maG" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_p) "maI" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -46656,10 +46901,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"maK" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "maL" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/protein_pack, @@ -46689,15 +46930,42 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"mbu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"maU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/upper/u_m_p) +"mba" = ( +/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/aft_hallway) +"mbp" = ( +/obj/structure/platform, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + 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/hull/upper/u_a_s) "mbx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -46707,10 +46975,42 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"mbR" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) +"mch" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "safe_armory"; + name = "\improper Hangar Armory Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) +"mcs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) +"mcz" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "mcL" = ( /obj/structure/machinery/vending/snack, /obj/structure/sign/safety/maint{ @@ -46728,28 +47028,67 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"mdk" = ( -/obj/structure/machinery/door/poddoor/railing{ +"mcY" = ( +/turf/open/floor/almayer{ dir = 4; - id = "vehicle_elevator_railing_aux" + icon_state = "red" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/upper/aft_hallway) "mdo" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/squads/alpha) -"mdC" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +"mdF" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 32; + pixel_y = -8 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/stern) +"mdG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"mdH" = ( +/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/stern_hallway) +"mdT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 + }, +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/living/offices/flight) "mdW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/warning_stripes{ @@ -46766,19 +47105,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"mem" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "meu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -46793,50 +47119,69 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"meE" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"meC" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 }, -/area/almayer/hallways/lower/vehiclehangar) -"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" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) -"meT" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/area/almayer/maint/hull/lower/l_m_p) +"meM" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_m_p) +"meQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "meY" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/alpha) -"mfH" = ( +"mfc" = ( /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/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_m_s) +"mfr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "mfM" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -46856,19 +47201,6 @@ 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_m_s) -"mgb" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "mgd" = ( /obj/structure/machinery/autolathe/armylathe/full, /turf/open/floor/almayer{ @@ -46914,14 +47246,21 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie_delta_shared) -"mgX" = ( -/obj/structure/platform{ - dir = 4 +"mgN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"mgZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/lower/cryo_cells) "mha" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -46992,6 +47331,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) +"miG" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "miV" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -47006,29 +47351,49 @@ icon_state = "redfull" }, /area/almayer/command/cic) -"mjs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "mjt" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ allow_construction = 0 }, /area/almayer/shipboard/brig/processing) -"mjy" = ( -/obj/structure/machinery/conveyor_switch{ - id = "lower_garbage" +"mju" = ( +/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/hallways/upper/stern_hallway) +"mjw" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"mjz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mjC" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/s_bow) +"mjE" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "mjS" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -47038,6 +47403,12 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) +"mkb" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "mkc" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -47094,6 +47465,14 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"mkk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "mkl" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -47113,30 +47492,19 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/workshop/hangar) -"mkw" = ( -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"mkq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"mkx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"mkF" = ( -/obj/structure/largecrate/random/barrel/blue, +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/upper/u_a_s) "mkG" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -47193,6 +47561,16 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/workshop) +"mkW" = ( +/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/hull/upper/u_a_s) "mlb" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -47254,50 +47632,55 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"mnc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) "mng" = ( /turf/open/floor/almayer{ icon_state = "redcorner" }, /area/almayer/living/briefing) +"mns" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) +"mnz" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_umbilical) "mnA" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mnC" = ( +"mnD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" + dir = 4; + icon_state = "orange" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/starboard_umbilical) "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/aft_hallway) "mnW" = ( /obj/structure/surface/table/almayer, /obj/item/device/reagent_scanner{ @@ -47323,21 +47706,15 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"moc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) -"moq" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ - dir = 4 +"mod" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_p) +/area/almayer/maint/hull/lower/l_f_p) "mor" = ( /obj/structure/machinery/light{ dir = 8 @@ -47348,6 +47725,17 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"mot" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "mov" = ( /obj/structure/bed/chair{ dir = 1 @@ -47363,27 +47751,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) -"moK" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_s) -"moL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -9; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "moM" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ @@ -47395,18 +47762,18 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"mph" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"moT" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/lower/l_a_p) "mpn" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/almayer, @@ -47414,6 +47781,16 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"mpt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/port_umbilical) "mpP" = ( /obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ @@ -47421,26 +47798,17 @@ }, /area/almayer/engineering/lower) "mpV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/lower/starboard_umbilical) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "mqb" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /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/aft_hallway) "mqg" = ( /obj/structure/bed/chair{ dir = 4 @@ -47463,18 +47831,11 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"mqt" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"mqB" = ( -/obj/structure/disposalpipe/segment, +"mqu" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/lower/starboard_midship_hallway) "mqK" = ( /obj/structure/machinery/cm_vending/gear/spec, /obj/structure/sign/safety/hazard{ @@ -47488,18 +47849,6 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"mqR" = ( -/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/aft_hallway) "mqU" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -47509,12 +47858,18 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_two) -"mqZ" = ( -/obj/structure/platform{ - dir = 8 +"mre" = ( +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -9; + pixel_y = 19 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"mrm" = ( +/obj/effect/landmark/start/professor, +/obj/effect/landmark/late_join/cmo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) "mrD" = ( /obj/structure/machinery/light{ dir = 1 @@ -47539,6 +47894,18 @@ icon_state = "green" }, /area/almayer/squads/req) +"mse" = ( +/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/aft_hallway) "msg" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/waterhazard{ @@ -47587,16 +47954,6 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"msC" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) "msP" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -47611,6 +47968,14 @@ icon_state = "plate" }, /area/almayer/living/gym) +"mtj" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "mtl" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/execution) @@ -47651,6 +48016,32 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"mtQ" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"mtR" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/crushed_cup, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/ashtray/plastic{ + pixel_x = 5; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "mtZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -47660,12 +48051,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"mua" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) "mub" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -47674,6 +48059,10 @@ icon_state = "plate" }, /area/almayer/living/gym) +"muc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "muq" = ( /obj/structure/bed/sofa/vert/grey/bot, /obj/structure/bed/sofa/vert/grey{ @@ -47700,6 +48089,14 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"muJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "muQ" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -47720,19 +48117,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"mvg" = ( -/obj/docking_port/stationary/escape_pod/west, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"mvi" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/revolver/m44{ - desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "mvl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47746,6 +48130,14 @@ icon_state = "bluecorner" }, /area/almayer/squads/delta) +"mvu" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "mvE" = ( /obj/item/bedsheet/brown{ pixel_y = 13 @@ -47798,12 +48190,6 @@ icon_state = "dark_sterile" }, /area/almayer/shipboard/brig/surgery) -"mww" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) "mwA" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -47825,11 +48211,12 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_medbay) -"mwP" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"mwO" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/maint/hull/upper/p_stern) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "mwQ" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 @@ -47850,14 +48237,26 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) -"mxg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"mwY" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_fore_hallway) +"mxa" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" }, -/turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) "mxT" = ( /obj/structure/surface/table/almayer, @@ -47866,13 +48265,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"mxV" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "myl" = ( /obj/structure/machinery/power/apc/almayer/hardened{ cell_type = /obj/item/cell/hyper; @@ -47894,6 +48286,41 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) +"myx" = ( +/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/aft_hallway) +"myy" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"myA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "myJ" = ( /obj/structure/machinery/light{ dir = 4 @@ -47905,6 +48332,13 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) +"myN" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "myP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/sentencing{ @@ -47915,38 +48349,17 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"mza" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Armory" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/armory) "mzg" = ( /turf/open/floor/almayer{ icon_state = "emerald" }, /area/almayer/squads/charlie) +"mzk" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "mzq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -47971,10 +48384,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"mzv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "mzz" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, @@ -47983,15 +48392,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"mzI" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "mzS" = ( /turf/open/floor/almayer{ dir = 9; @@ -48023,6 +48423,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"mAO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "mAV" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ @@ -48030,14 +48439,12 @@ }, /area/almayer/squads/delta) "mBa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "mBc" = ( /obj/structure/bed/chair{ dir = 8 @@ -48058,6 +48465,9 @@ icon_state = "dark_sterile" }, /area/almayer/living/pilotbunks) +"mBf" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_s) "mBp" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -48103,6 +48513,48 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"mBT" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) +"mBX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"mCg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mCj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "mCo" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -48110,15 +48562,6 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"mCE" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "mCL" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -48126,6 +48569,18 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"mCS" = ( +/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/stern_hallway) "mDj" = ( /obj/structure/machinery/photocopier, /obj/item/paper{ @@ -48142,13 +48597,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/hull/upper/u_a_s) "mDJ" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) @@ -48197,13 +48645,24 @@ icon_state = "test_floor4" }, /area/almayer/living/commandbunks) -"mDZ" = ( +"mEr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"mED" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "mEE" = ( /obj/structure/platform{ dir = 4; @@ -48215,6 +48674,40 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"mEL" = ( +/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/hull/upper/u_m_s) +"mEN" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"mFa" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "mFc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -48240,16 +48733,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"mFL" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "mFN" = ( /obj/effect/step_trigger/ares_alert/mainframe, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -48295,26 +48778,27 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"mFQ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/s_bow) "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/aft_hallway) "mGu" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "silver" }, /area/almayer/command/securestorage) +"mGE" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "mGT" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -48339,6 +48823,14 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"mHj" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "mHo" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -48352,6 +48844,20 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"mHt" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"mHv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) "mHx" = ( /obj/structure/bed/chair{ dir = 4 @@ -48401,17 +48907,6 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"mHF" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/headband/red{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "mHO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, @@ -48419,17 +48914,6 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"mId" = ( -/obj/structure/closet, -/obj/item/clothing/suit/armor/riot/marine/vintage_riot, -/obj/item/clothing/head/helmet/riot/vintage_riot, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "mIy" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -48463,6 +48947,26 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/upper_engineering/port) +"mIQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"mIX" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -16; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "mJa" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/boonie, @@ -48500,15 +49004,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/aft_hallway) "mJu" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/cic) @@ -48525,9 +49020,6 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) -"mJO" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_p) "mJP" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -48569,17 +49061,6 @@ "mKq" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/bridgebunks) -"mKs" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "mKw" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -48645,6 +49126,17 @@ icon_state = "plate" }, /area/almayer/living/port_emb) +"mKO" = ( +/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/aft_hallway) "mLe" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -48658,9 +49150,22 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"mLg" = ( +"mLr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/lower/l_m_s) +"mLy" = ( +/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/lower/vehiclehangar) "mLz" = ( /obj/structure/machinery/door_control{ id = "pobunk1"; @@ -48693,17 +49198,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) -"mLN" = ( -/obj/structure/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "mLR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -48713,6 +49207,12 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) +"mMC" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "mMP" = ( /obj/effect/landmark/start/intel, /turf/open/floor/plating/plating_catwalk, @@ -48744,25 +49244,11 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"mNG" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_y = 24; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, +"mNB" = ( /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "green" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/port_midship_hallway) "mNI" = ( /obj/structure/machinery/door/window/westleft{ dir = 2 @@ -48780,20 +49266,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/hull/upper/u_m_s) "mNX" = ( /turf/open/floor/almayer_hull{ dir = 4; @@ -48824,35 +49296,11 @@ /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/aft_hallway) -"mOE" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - 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, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) -"mPc" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "mPf" = ( /turf/open/floor/almayer/uscm/directional{ dir = 6 @@ -48885,32 +49333,15 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"mPw" = ( -/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_y = 7; - pixel_x = -17 - }, -/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" - }, -/area/almayer/hallways/lower/port_midship_hallway) +"mPB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"mPQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "mPR" = ( /obj/structure/machinery/light{ dir = 8 @@ -48920,6 +49351,14 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"mPW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "mQc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -48929,14 +49368,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"mQd" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/item/tool/weldpack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "mQn" = ( /obj/structure/sign/safety/rad_shield{ pixel_x = 32 @@ -48946,34 +49377,12 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"mQx" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_fore_hallway) "mQC" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/port_atmos) -"mQF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/stern_hallway) -"mQY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +"mQQ" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) "mRn" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -49022,26 +49431,13 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"mRH" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"mRI" = ( -/obj/structure/machinery/door/airlock/almayer/maint, +"mRC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "mono" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/upper/aft_hallway) "mRQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -49058,22 +49454,33 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"mRU" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) "mRW" = ( /turf/open/floor/almayer/research/containment/corner1, /area/almayer/medical/containment/cell/cl) +"mSc" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Secretroom"; + indestructible = 1; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_s) "mSi" = ( /obj/structure/bed/sofa/vert/grey/top{ pixel_y = 11 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mSr" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +"mSm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "mSs" = ( /obj/structure/machinery/light{ dir = 8 @@ -49083,6 +49490,9 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"mSu" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/mess) "mSz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/crew/alt, @@ -49090,6 +49500,12 @@ icon_state = "silverfull" }, /area/almayer/command/securestorage) +"mSG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "mSK" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/window/reinforced{ @@ -49100,19 +49516,25 @@ icon_state = "test_floor5" }, /area/almayer/medical/hydroponics) -"mSM" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "mSU" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ icon_state = "blue" }, /area/almayer/squads/charlie_delta_shared) +"mTa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "mTc" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/emails{ @@ -49140,16 +49562,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/aft_hallway) "mTp" = ( /obj/structure/window/reinforced{ dir = 4; @@ -49164,15 +49576,12 @@ icon_state = "cargo_arrow" }, /area/almayer/medical/hydroponics) -"mTL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +"mTK" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "mTN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -49215,34 +49624,12 @@ }, /area/almayer/command/airoom) "mUE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - 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/hull/upper/u_a_s) -"mUY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_m_s) -"mVh" = ( +/obj/structure/bed/stool, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "green" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/hallways/lower/port_midship_hallway) "mVr" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -49253,17 +49640,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"mVA" = ( -/obj/item/reagent_container/glass/bucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "mVE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -49286,21 +49662,30 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"mVF" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "officers_mess"; - name = "\improper Privacy Shutters" +"mVY" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;30" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"mWh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"mWl" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo" }, -/area/almayer/maint/upper/mess) +/area/almayer/hallways/lower/repair_bay) "mWs" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -49363,55 +49748,11 @@ "mXj" = ( /turf/closed/wall/almayer, /area/almayer/living/commandbunks) -"mXm" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"mXy" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"mXP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"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/aft_hallway) -"mYt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"mYp" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) "mYv" = ( /obj/structure/disposalpipe/sortjunction{ @@ -49421,6 +49762,17 @@ }, /turf/closed/wall/almayer, /area/almayer/squads/req) +"mYT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "mZb" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -49435,24 +49787,6 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"mZc" = ( -/obj/structure/sign/poster/blacklight{ - pixel_y = 35 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/reagent_dispensers/beerkeg/alt_dark{ - anchored = 1; - chemical = null; - density = 0; - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "mZf" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -49470,6 +49804,13 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) +"mZg" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "mZr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -49506,18 +49847,6 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"mZP" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "mZQ" = ( /obj/structure/machinery/vending/security, /obj/structure/machinery/light, @@ -49529,15 +49858,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"naa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "nac" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -49548,12 +49868,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"naj" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "nar" = ( /obj/structure/toilet{ dir = 4 @@ -49591,6 +49905,26 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"naN" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"naO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "naR" = ( /obj/structure/machinery/iv_drip, /obj/effect/decal/warning_stripes{ @@ -49618,24 +49952,29 @@ icon_state = "test_floor4" }, /area/almayer/living/gym) -"nbu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"naW" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 9 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"nbW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/box/cups, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/lower/s_bow) +"ncb" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 1; + icon_state = "silver" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/repair_bay) "ncf" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -49648,9 +49987,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) -"nci" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) "ncl" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -49665,6 +50001,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"ncw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "ncE" = ( /obj/structure/machinery/light{ dir = 8 @@ -49692,31 +50037,72 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"ncV" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/welding, +"nda" = ( +/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 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"ndl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/almayer/maint/hull/lower/l_a_p) +"ndb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ndc" = ( +/obj/structure/machinery/door_control{ + id = "InnerShutter"; + name = "Inner Shutter"; + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"ndm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ +/area/almayer/shipboard/panic) +"ndd" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/maint/hull/upper/u_a_s) +"ndl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"ndT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "ndZ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, @@ -49737,15 +50123,18 @@ icon_state = "test_floor4" }, /area/almayer/powered) -"nef" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"nel" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"neu" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "green" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/upper/aft_hallway) "new" = ( /obj/item/reagent_container/glass/bucket/janibucket, /obj/item/reagent_container/glass/bucket/janibucket{ @@ -49777,12 +50166,6 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"neH" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "neO" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -49807,6 +50190,13 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) +"neX" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "nff" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -49817,6 +50207,28 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"nfQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ngc" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "panicroomback"; + name = "\improper Safe Room Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_s) "ngf" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -49862,6 +50274,10 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) +"ngu" = ( +/obj/docking_port/stationary/vehicle_elevator/almayer, +/turf/open/floor/almayer/empty, +/area/almayer/hallways/lower/vehiclehangar) "ngw" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/frag, @@ -49910,20 +50326,6 @@ icon_state = "redcorner" }, /area/almayer/living/briefing) -"ngK" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/repair_bay) "ngU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -49953,6 +50355,14 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) +"nhb" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "nhi" = ( /obj/structure/bed/chair/comfy, /obj/structure/window/reinforced/ultra, @@ -49970,10 +50380,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/workshop) -"nhw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "nhx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck{ @@ -49990,16 +50396,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"nhE" = ( -/obj/structure/sign/safety/maint{ - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "nhG" = ( /obj/item/newspaper{ name = "character sheet" @@ -50027,22 +50423,32 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"nhT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +"nhI" = ( +/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/stern_hallway) -"nhV" = ( -/obj/structure/machinery/light/small, +"nhJ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"nhU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/p_bow) -"nic" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stern) +/area/almayer/shipboard/panic) "nig" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -50090,15 +50496,41 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"niF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"niy" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = -30 + }, +/obj/structure/sign/poster/hunk{ + pixel_x = -25; + pixel_y = 10 + }, +/obj/item/trash/buritto, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/medical/medical_science) +/area/almayer/maint/hull/lower/l_m_s) +"niz" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"niK" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "niL" = ( /obj/structure/machinery/light{ dir = 1 @@ -50108,6 +50540,9 @@ icon_state = "sterile_green" }, /area/almayer/medical/medical_science) +"niN" = ( +/turf/open/floor/almayer/empty, +/area/almayer/hallways/lower/vehiclehangar) "niR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -50116,6 +50551,16 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"niW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/computer/supplycomp/vehicle, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "niY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -50156,9 +50601,19 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"njn" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_s) +"njr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/lights/tubes{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "njD" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ @@ -50178,35 +50633,22 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"njO" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/panic) -"njS" = ( -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) -"nkj" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "nkn" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"nkp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_umbilical) "nkx" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -50218,6 +50660,16 @@ icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) +"nkE" = ( +/obj/structure/ladder{ + height = 2; + id = "ForeStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/s_bow) "nkF" = ( /obj/structure/bed/chair/bolted{ dir = 4 @@ -50241,6 +50693,24 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"nkJ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) +"nkR" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "nkX" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ @@ -50257,12 +50727,12 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"nlh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"nlt" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/lower/port_midship_hallway) "nlz" = ( /obj/structure/machinery/brig_cell/cell_3{ pixel_x = 32; @@ -50302,28 +50772,29 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"nmp" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 +"nmj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"nmp" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"nmH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 9; + icon_state = "red" }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/almayer/maint/hull/upper/u_a_p) +"nmq" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ + pixel_x = 7; + pixel_y = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/lower/l_a_s) "nmK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -50336,6 +50807,12 @@ icon_state = "cargo" }, /area/almayer/squads/req) +"nmS" = ( +/obj/item/tool/pen, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "nmV" = ( /turf/open/floor/almayer{ dir = 1; @@ -50354,18 +50831,9 @@ icon_state = "plate" }, /area/almayer/command/cichallway) -"nnr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/port_aft_hallway) +"nnw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_s) "nny" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -50384,24 +50852,25 @@ 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/hull/upper/u_m_s) "nnL" = ( /obj/structure/toilet{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/corporateliaison) +"nnT" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "nnX" = ( /obj/structure/machinery/sentry_holder/almayer, /turf/open/floor/almayer{ @@ -50443,27 +50912,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"noy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"noE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"noI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) "noP" = ( /obj/structure/machinery/light{ dir = 1 @@ -50481,6 +50929,9 @@ }, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) +"npi" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "npt" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -50496,12 +50947,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/containment) -"npw" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "npA" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -50532,10 +50977,19 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/armory) +"nqp" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/port) "nqx" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"nqC" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_s) "nqG" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -50547,6 +51001,12 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"nqL" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "nqO" = ( /obj/structure/closet/secure_closet/fridge/fish/stock, /turf/open/floor/almayer{ @@ -50571,17 +51031,37 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"nrb" = ( -/obj/item/robot_parts/arm/l_arm, -/obj/item/robot_parts/leg/l_leg, -/obj/item/robot_parts/arm/r_arm, -/obj/item/robot_parts/leg/r_leg, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 +"nre" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"nrg" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/device/binoculars, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) +"nrh" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) +/area/almayer/maint/lower/s_bow) "nri" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/working_joe{ @@ -50600,6 +51080,18 @@ icon_state = "emeraldcorner" }, /area/almayer/squads/charlie) +"nrD" = ( +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"nrG" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "nrN" = ( /obj/structure/machinery/sleep_console, /turf/open/floor/almayer{ @@ -50621,22 +51113,42 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"nsd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/bulbs{ - pixel_x = 3; - pixel_y = 7 +"nsh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"nso" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/hull/lower/l_m_s) +"nsk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) +"nsx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"nsO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "nsQ" = ( /obj/structure/sink{ dir = 4; @@ -50727,6 +51239,13 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) +"nuH" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "nuK" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/franks{ @@ -50748,19 +51267,28 @@ /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"nvd" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +"nvA" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/maint/hull/upper/u_m_p) -"nve" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_f_s) +"nvE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) "nvG" = ( /obj/structure/machinery/light{ dir = 8 @@ -50779,14 +51307,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) -"nvI" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "nvM" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -50806,18 +51326,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"nvX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 8; - pixel_y = -4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "nwb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -50827,6 +51335,10 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) +"nwd" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "nwi" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 @@ -50835,56 +51347,18 @@ 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/aft_hallway) -"nww" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_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/hull/upper/u_a_p) "nwD" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orange" }, /area/almayer/command/cic) -"nwG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) "nwL" = ( /obj/structure/bed, /obj/item/bedsheet/brown, @@ -50892,10 +51366,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/hull/upper/u_a_s) "nwU" = ( /obj/structure/machinery/light{ dir = 4 @@ -50933,28 +51403,34 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"nxe" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/toolbox, -/obj/item/stack/sheet/metal{ - desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; - icon = 'icons/obj/structures/props/semiotic_standard.dmi'; - icon_state = "coffee"; - name = "coffee semiotic"; - pixel_x = 20; - pixel_y = 12; - singular_name = "coffee semiotic" - }, +"nxg" = ( +/obj/structure/machinery/power/apc/almayer, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/lower/starboard_midship_hallway) "nxx" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/lower) +"nxJ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"nxL" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"nxM" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "nyj" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal2" @@ -50977,9 +51453,21 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) +"nyF" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "nyQ" = ( /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"nyR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "nyS" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ @@ -50987,12 +51475,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"nzt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "nzv" = ( /obj/structure/filingcabinet/filingcabinet, /obj/item/clipboard, @@ -51004,6 +51486,9 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) +"nzC" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_stern) "nzD" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer, @@ -51025,10 +51510,26 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"nAm" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +"nAC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-y" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"nAN" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "nAY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -51067,15 +51568,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"nBo" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/almayer/hallways/upper/aft_hallway) "nBw" = ( /turf/open/floor/almayer{ dir = 1; @@ -51088,36 +51580,12 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"nBF" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"nBJ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/s_bow) "nBK" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/lifeboat_pumps/north2) -"nBV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_umbilical) -"nCe" = ( -/obj/structure/machinery/prop/almayer/computer{ - pixel_y = 20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) "nCf" = ( /obj/effect/landmark/start/marine/tl/charlie, /obj/effect/landmark/late_join/charlie, @@ -51166,12 +51634,18 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"nCM" = ( -/obj/structure/largecrate/random/secure, +"nCA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "silver" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/lower/repair_bay) "nCR" = ( /obj/structure/sink{ dir = 4; @@ -51207,13 +51681,6 @@ icon_state = "tcomms" }, /area/almayer/engineering/lower/engine_core) -"nDb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) "nDo" = ( /obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ @@ -51226,36 +51693,11 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"nDL" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/item/stack/sheet/wood/large_stack, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/port) "nDM" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"nEc" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"nEl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "nEo" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -51294,16 +51736,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"nEO" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"nEZ" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "nFm" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/surgery/scalpel, @@ -51392,48 +51824,43 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"nGk" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"nGM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"nGp" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/item/stack/sheet/metal, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/u_a_p) +"nGz" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"nGH" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) "nGY" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/lifeboat_pumps/north2) -"nGZ" = ( -/obj/structure/largecrate/supply/supplies/water, +"nHf" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"nHl" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/tool/screwdriver, /turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) -"nHu" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"nHG" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/port_umbilical) "nHJ" = ( /obj/structure/machinery/light{ dir = 8 @@ -51457,16 +51884,14 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"nHX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"nHN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/p_bow) "nIj" = ( /turf/open/floor/almayer{ icon_state = "green" @@ -51512,13 +51937,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/aft_hallway) "nIG" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -51528,9 +51946,15 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"nIN" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_p) +"nIL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "nIS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -51545,6 +51969,13 @@ icon_state = "orangecorner" }, /area/almayer/engineering/lower/engine_core) +"nJm" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "nJs" = ( /obj/structure/largecrate/random/case, /turf/open/floor/almayer{ @@ -51570,6 +52001,11 @@ icon_state = "plating" }, /area/almayer/command/airoom) +"nJJ" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "nKq" = ( /obj/structure/machinery/status_display{ pixel_x = 16; @@ -51590,6 +52026,20 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"nLf" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "nLk" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/power/apc/almayer{ @@ -51600,9 +52050,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"nLp" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_p) "nLt" = ( /turf/open/floor/almayer{ dir = 1; @@ -51633,15 +52080,29 @@ icon_state = "plating" }, /area/almayer/engineering/upper_engineering) -"nLM" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"nLN" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) +"nLT" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_p) +"nMa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "nMe" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -51661,6 +52122,17 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) +"nMN" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"nMT" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "nMV" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -51706,22 +52178,29 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"nNz" = ( +/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/aft_hallway) "nNH" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "emeraldcorner" }, /area/almayer/living/briefing) -"nNI" = ( -/obj/structure/bed/chair{ - dir = 4 +"nNN" = ( +/turf/open/floor/almayer{ + icon_state = "silvercorner" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"nNT" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/upper/aft_hallway) "nNV" = ( /obj/structure/bed/chair{ dir = 8; @@ -51768,22 +52247,17 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) -"nOx" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "nOC" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"nOX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +"nOH" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/hallways/lower/starboard_fore_hallway) "nPa" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -51823,6 +52297,9 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) +"nPh" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/upper/mess) "nPs" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -51859,13 +52336,12 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"nPO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +"nPF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "nPT" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; @@ -51889,18 +52365,22 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"nQn" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/tool, +"nQb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"nQq" = ( +/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 = "plate" }, -/area/almayer/maint/hull/lower/s_bow) -"nQo" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/port_fore_hallway) "nQv" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -51910,30 +52390,33 @@ 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/hull/upper/u_a_s) "nQA" = ( /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"nRA" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +"nQS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, /turf/open/floor/almayer{ - allow_construction = 0 + dir = 1; + icon_state = "green" }, /area/almayer/hallways/lower/port_midship_hallway) -"nRE" = ( +"nRC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) @@ -51945,12 +52428,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"nRN" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "nRR" = ( /turf/open/floor/almayer{ dir = 1; @@ -51961,29 +52438,14 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"nSk" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/stack/tile/carpet{ - amount = 20 +"nSm" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"nSq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_m_s) "nSu" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -51992,6 +52454,18 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) +"nSC" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/lower/repair_bay) +"nSE" = ( +/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/aft_hallway) "nSG" = ( /obj/structure/machinery/door_control{ id = "tcomms"; @@ -52004,39 +52478,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) +"nSI" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "nSS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /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_m_p) "nTl" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "red" }, /area/almayer/squads/alpha) -"nTo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/transmitter{ - dir = 8; - name = "Medical Telephone"; - phone_category = "Almayer"; - phone_id = "Medical Lower"; - pixel_x = 16 - }, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) "nTs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -52051,6 +52512,13 @@ /obj/structure/bed/chair/comfy/blue, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"nTB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_umbilical) "nTH" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -52062,6 +52530,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) +"nTU" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "nTZ" = ( /turf/open/floor/almayer{ dir = 5; @@ -52114,16 +52588,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"nUm" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 12; - pixel_y = -5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "nUn" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -52132,6 +52596,14 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"nUs" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "nUv" = ( /obj/structure/machinery/light{ dir = 1 @@ -52140,9 +52612,9 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"nUT" = ( -/obj/structure/platform{ - dir = 8 +"nUS" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" @@ -52153,13 +52625,6 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) -"nVn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "nVq" = ( /obj/structure/sign/safety/security{ pixel_x = -17; @@ -52174,29 +52639,24 @@ 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 +"nVz" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_p) "nVB" = ( /turf/open/floor/almayer, /area/almayer/command/securestorage) -"nVE" = ( -/obj/structure/closet/emcloset, +"nVC" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_f_s) "nVF" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -52205,17 +52665,6 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"nVQ" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "nVR" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/perma) @@ -52229,13 +52678,54 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) +"nVY" = ( +/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/hull/upper/u_a_s) +"nWf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"nWt" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"nWx" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"nWK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) "nWN" = ( /obj/structure/surface/table/almayer, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"nXo" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, +"nWZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"nXv" = ( +/obj/structure/closet, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/regular/hipster, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -52302,12 +52792,6 @@ icon_state = "silverfull" }, /area/almayer/command/securestorage) -"nYi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "nYn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -52326,6 +52810,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"nYu" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "nYD" = ( /obj/structure/closet/secure_closet/medical2, /turf/open/floor/almayer{ @@ -52337,14 +52831,18 @@ dir = 8 }, /area/almayer/command/lifeboat) -"nYR" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = 26 +"nZp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "nZy" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -52353,29 +52851,21 @@ /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"nZG" = ( -/obj/structure/platform{ - dir = 4 +"oac" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"nZR" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) -"nZW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = 2; - pixel_y = 3 + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/lower/p_bow) +"oao" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "oap" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -52383,34 +52873,37 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"oaw" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, +"oaE" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 9; + icon_state = "red" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/hallways/upper/stern_hallway) +"oaI" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/upper/stern_hallway) "oaK" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"oaO" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/machinery/recycler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/maint/hull/lower/l_a_p) "oaW" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/charlie) +"obc" = ( +/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/stern_hallway) "obo" = ( /obj/structure/disposalpipe/up/almayer{ dir = 8; @@ -52418,6 +52911,17 @@ }, /turf/closed/wall/almayer, /area/almayer/squads/req) +"obx" = ( +/obj/structure/ladder{ + height = 1; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/p_bow) "oby" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -52428,6 +52932,12 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) +"obA" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/upper/aft_hallway) "obC" = ( /turf/open/floor/almayer{ dir = 4; @@ -52443,20 +52953,18 @@ 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/hull/upper/u_a_s) "obQ" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"obX" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "occ" = ( /obj/structure/surface/table/almayer, /obj/item/weapon/gun/energy/taser, @@ -52518,53 +53026,22 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"ocI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/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/aft_hallway) +"ocS" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/s_bow) "odb" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"ode" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/s_bow) "odl" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"odt" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/vehiclehangar) "odu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -52593,22 +53070,6 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"odG" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - 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/hull/upper/u_a_s) "odN" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -52619,6 +53080,14 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/sea_office) +"odT" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, +/obj/item/tool/lighter/random{ + pixel_x = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "odV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -52646,17 +53115,17 @@ icon_state = "cargo" }, /area/almayer/squads/alpha_bravo_shared) +"oeq" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "oer" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/delta) -"oes" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "oex" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light, @@ -52670,20 +53139,31 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) -"oeH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "oeM" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "silver" }, /area/almayer/command/computerlab) +"oeY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"ofp" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "medical manuals bookcase"; + opacity = 0 + }, +/obj/item/book/manual/surgery, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) "ofH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -52701,6 +53181,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"ofP" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "ofU" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -52715,18 +53201,23 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"ogd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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" +"ogi" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"ogj" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"ogI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "ogK" = ( /obj/structure/bed/bedroll{ desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; @@ -52741,25 +53232,28 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"ogM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "ohj" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/charlie) -"ohu" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig Maintenance" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +"ohw" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/lower/l_m_s) "ohA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -52797,19 +53291,6 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) -"ohI" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "ohJ" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, @@ -52832,17 +53313,6 @@ icon_state = "test_floor4" }, /area/almayer/living/captain_mess) -"oif" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"oig" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "oih" = ( /obj/structure/bed{ icon_state = "abed" @@ -52872,16 +53342,28 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"oiq" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) +"oil" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/lower/vehiclehangar) +"oin" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "oir" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -52891,6 +53373,12 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"ois" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "oit" = ( /obj/effect/landmark/railgun_computer{ dir = 1 @@ -52900,12 +53388,6 @@ icon_state = "redfull" }, /area/almayer/shipboard/port_missiles) -"oiB" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "oiL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -52924,10 +53406,14 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"oiX" = ( -/obj/docking_port/stationary/vehicle_elevator/almayer, -/turf/open/floor/almayer/empty, -/area/almayer/hallways/lower/vehiclehangar) +"oiR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "oiY" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -52944,6 +53430,33 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"oiZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ojg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "ojh" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -52951,6 +53464,18 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"ojn" = ( +/obj/structure/sign/safety/security{ + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "ojF" = ( /obj/structure/machinery/cm_vending/clothing/tl/charlie{ density = 0; @@ -52991,16 +53516,6 @@ icon_state = "plate" }, /area/almayer/squads/charlie) -"okd" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "n_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_umbilical) "okg" = ( /obj/structure/sign/safety/reception{ pixel_x = 8; @@ -53010,19 +53525,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/hull/upper/u_a_p) -"okx" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "okD" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer6" @@ -53031,20 +53533,26 @@ icon_state = "outerhull_dir" }, /area/space) -"old" = ( -/obj/structure/machinery/light/small, -/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, +"olk" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"olv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_p) "olM" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -53081,12 +53589,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"olQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "olU" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -53094,12 +53596,6 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"olW" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/lower/s_bow) "omb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -53109,47 +53605,21 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"ome" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +"omi" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/hull/upper/p_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "omo" = ( /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" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) "omt" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"omx" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_f_s) "omy" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -53160,6 +53630,10 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) +"omL" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) "omP" = ( /obj/item/tool/mop, /obj/structure/surface/rack, @@ -53176,36 +53650,25 @@ icon_state = "dark_sterile" }, /area/almayer/shipboard/brig/surgery) -"onh" = ( +"onn" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /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/stern_hallway) -"onn" = ( -/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"onq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"onv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/hallways/upper/aft_hallway) +"onr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_m_p) "onN" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -53269,19 +53732,9 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"ooA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, +"opf" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"opd" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/p_stern) "opC" = ( /obj/structure/machinery/door/airlock/almayer/command/reinforced{ name = "\improper Combat Information Center" @@ -53331,46 +53784,30 @@ /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 +/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/aft_hallway) -"opV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/area/almayer/hallways/upper/stern_hallway) +"opU" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/hallways/lower/port_midship_hallway) -"oqc" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/toxin, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, /area/almayer/maint/hull/upper/u_a_s) +"oqn" = ( +/obj/item/stool{ + pixel_x = -15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "oqt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -53409,10 +53846,6 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"oqI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "oqS" = ( /obj/structure/toilet{ dir = 1 @@ -53427,6 +53860,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"oqW" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_f_s) "oqY" = ( /obj/structure/machinery/conveyor{ id = "req_belt" @@ -53473,14 +53920,16 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"orq" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ory" = ( +/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 }, -/area/almayer/maint/hull/upper/u_m_s) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) "orH" = ( /turf/open/floor/almayer/uscm/directional{ dir = 10 @@ -53503,23 +53952,16 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"osn" = ( -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 10 - }, +"osd" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, +/obj/item/fuel_cell, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/engineering/lower/engine_core) "osx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -53582,12 +54024,15 @@ }, /area/almayer/engineering/lower/workshop) "osQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/upper/mess) "osT" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/prop/ice_colony/hula_girl{ @@ -53606,55 +54051,23 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"osX" = ( -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = -8 +"oth" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"otq" = ( -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "MTline"; - pixel_y = 3 + icon_state = "mono" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/vehiclehangar) "otu" = ( /turf/closed/wall/almayer/research/containment/wall/connect_w, /area/almayer/medical/containment/cell) -"otC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"oue" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"otE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"otW" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "ouf" = ( /obj/structure/stairs{ dir = 1; @@ -53703,6 +54116,16 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) +"ouy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "ouB" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, @@ -53716,18 +54139,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"ouU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "ouW" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -53742,10 +54153,6 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"ove" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "ovi" = ( /turf/open/floor/almayer{ dir = 4; @@ -53763,6 +54170,16 @@ icon_state = "silver" }, /area/almayer/living/briefing) +"ovx" = ( +/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/hull/upper/u_a_s) "ovG" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -53776,26 +54193,25 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"ovQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "owg" = ( /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"owU" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"owD" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/lower/l_a_p) +"owO" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"owS" = ( +/obj/docking_port/stationary/escape_pod/west, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) "owW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -53819,69 +54235,62 @@ /obj/item/bedsheet/orange, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"oxe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/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/aft_hallway) "oxi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) -"oxl" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"oxo" = ( +/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/hull/upper/u_m_s) +"oxt" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"oxn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "plating_striped" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/squads/req) "oxu" = ( /obj/structure/sign/safety/galley{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"oxy" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"oxz" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "oxU" = ( /obj/structure/machinery/photocopier, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"oyd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"oyg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "oyE" = ( /obj/effect/landmark/start/intel, /obj/structure/sign/poster{ @@ -53894,25 +54303,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/port_atmos) -"oyO" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +"oyJ" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) "oyR" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/lower) -"oyX" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "ozq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -53922,6 +54321,22 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) +"ozt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"ozw" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "ozz" = ( /obj/structure/surface/table/almayer, /obj/item/tank/emergency_oxygen/double, @@ -53929,18 +54344,6 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"ozH" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "ozN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ id_tag = "Boat2-D2"; @@ -53951,6 +54354,15 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) +"ozP" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "ozT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -53969,15 +54381,23 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"oAa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"oAr" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"oAw" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 1; + icon_state = "green" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/upper/aft_hallway) "oAB" = ( /obj/structure/platform{ dir = 8; @@ -53987,43 +54407,12 @@ dir = 10 }, /area/almayer/living/briefing) -"oAK" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "oAO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"oAT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -7 - }, -/turf/open/floor/almayer{ - 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/aft_hallway) "oBq" = ( /obj/structure/bed, /obj/structure/machinery/flasher{ @@ -54035,9 +54424,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"oBr" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_s) "oBA" = ( /obj/structure/sign/safety/conference_room{ pixel_x = -17; @@ -54052,30 +54438,29 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"oCa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +"oBM" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/area/almayer/maint/hull/upper/u_a_s) +"oBQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) -"oCb" = ( +/area/almayer/maint/hull/lower/l_m_s) +"oBS" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "oCf" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -54103,13 +54488,28 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"oCK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +"oCV" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"oDd" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "oDh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "oDi" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -54162,23 +54562,14 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"oDJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/spiderling_remains{ - pixel_x = 18; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/ash{ - pixel_x = 11; - pixel_y = 25 +"oDI" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" + icon_state = "plate" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/upper/p_stern) "oDL" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -54199,15 +54590,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/medical_science) -"oDU" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/lower/port_midship_hallway) "oDY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -54285,6 +54667,25 @@ icon_state = "red" }, /area/almayer/living/port_emb) +"oFb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) +"oFg" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_s) "oFm" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -54293,64 +54694,64 @@ }, /area/almayer/engineering/lower/workshop) "oFn" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters/clippers, -/obj/item/handcuffs/zip, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform, +/obj/structure/largecrate/random/case/double{ + layer = 2.98 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 32 }, -/area/almayer/maint/hull/lower/l_f_p) -"oFr" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/upper/u_a_s) -"oFV" = ( -/obj/structure/sign/poster{ - pixel_x = -32; - serial_number = 16 +"oFs" = ( +/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/squads/delta) -"oFY" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/lobby) -"oGf" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oFv" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) -"oGh" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, +"oFL" = ( /turf/open/floor/almayer{ dir = 4; - icon_state = "orange" + icon_state = "emerald" }, -/area/almayer/hallways/lower/port_aft_hallway) -"oGi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/hallways/lower/port_midship_hallway) +"oFV" = ( +/obj/structure/sign/poster{ + pixel_x = -32; + serial_number = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"oFW" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "n_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"oGj" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 +/area/almayer/hallways/lower/starboard_umbilical) +"oFY" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/lobby) +"oFZ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"oGm" = ( /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + dir = 1; + icon_state = "blue" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/hallways/upper/aft_hallway) "oGx" = ( /obj/structure/closet/secure_closet/surgical{ pixel_x = 30 @@ -54375,28 +54776,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"oGF" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "oGJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) -"oGL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "oGP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -54446,21 +54829,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie) -"oHf" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"oHg" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "oHl" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/electrical, @@ -54469,23 +54837,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"oHs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oHt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "oHx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -54494,6 +54845,10 @@ icon_state = "test_floor4" }, /area/almayer/engineering/laundry) +"oHy" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "oIa" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -54544,15 +54899,6 @@ "oIB" = ( /turf/closed/wall/almayer, /area/almayer/command/combat_correspondent) -"oJj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "oJk" = ( /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop) @@ -54567,22 +54913,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"oJL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) "oJR" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -54606,6 +54936,18 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"oJX" = ( +/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/hull/upper/u_m_s) "oKb" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -54614,6 +54956,15 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"oKi" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) "oKv" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 @@ -54630,31 +54981,50 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"oLf" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 +"oKz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"oKA" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/lower/vehiclehangar) +"oKB" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/upper/u_m_s) +"oKF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"oLa" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "oLi" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"oLj" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "oLm" = ( /obj/structure/machinery/door_control{ id = "ARES StairsLower"; @@ -54729,6 +55099,12 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"oMp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "oMs" = ( /obj/structure/machinery/computer/cameras/almayer{ dir = 1 @@ -54750,10 +55126,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/aft_hallway) "oNb" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -54790,12 +55162,6 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"oNM" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "oNP" = ( /obj/structure/machinery/vending/cola{ density = 0; @@ -54816,22 +55182,24 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"oOi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +"oOb" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "green" }, -/area/almayer/hallways/upper/stern_hallway) -"oOp" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, +/area/almayer/hallways/upper/aft_hallway) +"oOh" = ( +/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/hull/upper/u_m_p) +/area/almayer/maint/upper/u_m_s) "oOw" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -54862,6 +55230,11 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"oPb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "oPf" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -54898,6 +55271,36 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"oPr" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) +"oPs" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"oPu" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"oPv" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"oPx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "oPy" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -54936,26 +55339,26 @@ icon_state = "red" }, /area/almayer/command/cic) -"oPF" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"oPG" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "green" }, -/area/almayer/maint/hull/lower/l_a_s) -"oPT" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/hallways/lower/starboard_midship_hallway) +"oPS" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"oQn" = ( /turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) +"oPY" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) "oQs" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/book/manual/surgery{ @@ -54965,30 +55368,19 @@ icon_state = "plate" }, /area/almayer/command/cichallway) -"oQw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/port_umbilical) "oQH" = ( /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, /area/almayer/living/briefing) -"oQJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "oQL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "blue" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/upper/aft_hallway) "oQM" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -55012,20 +55404,18 @@ icon_state = "silver" }, /area/almayer/living/auxiliary_officer_office) +"oRh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "oRk" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"oRm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "oRJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -55070,6 +55460,16 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"oSf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) "oSq" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -55097,6 +55497,15 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"oSy" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "oSC" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -55106,14 +55515,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"oSG" = ( -/obj/structure/surface/table/almayer, -/obj/item/card/id/visa, -/obj/item/tool/crew_monitor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "oSL" = ( /obj/structure/window/reinforced{ dir = 8 @@ -55137,26 +55538,10 @@ icon_state = "plate" }, /area/almayer/squads/alpha_bravo_shared) -"oSM" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"oSR" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - 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/hull/upper/u_a_s) +"oSP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "oTe" = ( /obj/item/prop/almayer/box, /obj/item/prop{ @@ -55186,6 +55571,21 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) +"oTn" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) +"oTv" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "oTA" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light{ @@ -55195,15 +55595,17 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) -"oTH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"oTN" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, -/obj/structure/disposalpipe/segment, +/obj/item/device/radio, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/upper/u_f_s) "oTO" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -55217,35 +55619,21 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"oUi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oUt" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 +"oTR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"oUx" = ( -/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"oUz" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 + icon_state = "test_floor4" }, +/area/almayer/maint/hull/lower/l_m_s) +"oUo" = ( /turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/lower/port_midship_hallway) "oUG" = ( /obj/structure/machinery/light{ dir = 8 @@ -55255,21 +55643,24 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"oUO" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +"oUM" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"oUZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"oVc" = ( +/obj/item/tool/wirecutters{ + pixel_y = -7 }, -/area/almayer/maint/hull/lower/l_m_p) +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "oVf" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/evidence{ @@ -55287,28 +55678,12 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"oVk" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_fore_hallway) -"oVY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"oVn" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "oWf" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -55337,10 +55712,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"oWq" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "oWx" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -55357,41 +55728,25 @@ icon_state = "plate" }, /area/almayer/living/starboard_garden) -"oWE" = ( -/obj/structure/stairs, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oWF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"oWN" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "oXb" = ( /obj/effect/landmark/start/marine/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) +"oXn" = ( +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oXo" = ( +/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) "oXp" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/wood/ship, @@ -55432,12 +55787,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"oYi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) "oYp" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -55447,55 +55796,35 @@ icon_state = "red" }, /area/almayer/living/offices/flight) -"oYr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, +"oYD" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "silvercorner" }, -/area/almayer/maint/hull/upper/u_a_p) -"oYs" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/almayer/hallways/upper/aft_hallway) +"oYG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/sign/safety/west{ + pixel_y = 32 }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) +"oYP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + layer = 2.5; pixel_y = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"oYA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/dropship_equipment/fuel/cooling_system{ - layer = 3.5 - }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - 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/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_f_p) "oZp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, @@ -55512,12 +55841,42 @@ icon_state = "red" }, /area/almayer/living/offices/flight) +"oZv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "oZy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"oZz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"oZC" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "oZD" = ( /obj/structure/sign/poster/music{ pixel_x = -27 @@ -55547,6 +55906,15 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"oZF" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) +"oZJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "oZV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/roller, @@ -55587,6 +55955,10 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) +"pau" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "paI" = ( /obj/structure/sign/safety/debark_lounge{ pixel_x = 15; @@ -55596,26 +55968,23 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"paJ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "paL" = ( /turf/open/floor/almayer/uscm/directional{ dir = 1 }, /area/almayer/command/cic) -"pbo" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" +"paN" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/maint/hull/upper/s_stern) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"pbd" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "pbp" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -55643,22 +56012,6 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"pcc" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) -"pcf" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "pcj" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -55674,6 +56027,11 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"pcp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "pcv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -55703,6 +56061,12 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"pcK" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) "pcO" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -55713,18 +56077,31 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"pcR" = ( +/obj/item/frame/rack{ + layer = 3.1; + pixel_y = 19 + }, +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = 5 + }, +/obj/item/tool/weldpack{ + pixel_x = -2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "pcY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"pdp" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/maint/hull/upper/p_bow) +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "pdy" = ( /obj/structure/machinery/door_control{ id = "OTStore"; @@ -55750,28 +56127,12 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"pek" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_bow) -"peu" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +"pep" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) -"peM" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" + dir = 5 }, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "peO" = ( /obj/structure/sign/safety/medical{ pixel_x = -17; @@ -55814,27 +56175,28 @@ allow_construction = 0 }, /area/almayer/stair_clone) -"pfD" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, +"pfu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 + }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/port_fore_hallway) +"pfy" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "pfH" = ( /obj/structure/platform_decoration, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"pfL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "pfM" = ( /obj/structure/machinery/light{ dir = 4 @@ -55850,6 +56212,36 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) +"pfU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) +"pga" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"pgg" = ( +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pgq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_aft_hallway) "pgw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -55859,10 +56251,25 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/upper_engineering/port) +"pgx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "pgD" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south1) -"pgH" = ( +"pgE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) +"pgH" = ( /obj/effect/projector{ name = "Almayer_AresDown"; vector_x = 97; @@ -55879,13 +56286,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"pgJ" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "pgM" = ( /obj/structure/reagent_dispensers/water_cooler/walk_past{ pixel_x = 10; @@ -55944,15 +56344,21 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) -"phw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 - }, +"phn" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/lower/s_bow) +"phx" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + id_tag = "or03"; + name = "Lobby" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) "phN" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -55963,19 +56369,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"pij" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"piJ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "piK" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -55990,12 +56383,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"pjh" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "pjj" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -56005,15 +56392,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"pjr" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "pjw" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"pjz" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_bow) "pjF" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -56033,18 +56420,6 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"pjP" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/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/aft_hallway) "pjR" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -56055,15 +56430,18 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"pjY" = ( -/obj/structure/machinery/light{ - dir = 4 +"pkv" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/lower/l_a_s) +"pkx" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - dir = 10; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_f_s) "pkz" = ( /turf/open/floor/almayer{ icon_state = "redfull" @@ -56079,9 +56457,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"plv" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) "plI" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, /turf/open/floor/almayer{ @@ -56089,15 +56464,6 @@ icon_state = "sterile_green_side" }, /area/almayer/shipboard/brig/surgery) -"pmd" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) "pmq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -56128,6 +56494,14 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"pmS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) "pmV" = ( /obj/structure/prop/server_equipment/yutani_server/broken{ density = 0; @@ -56140,16 +56514,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"pnh" = ( -/obj/structure/ladder{ - height = 2; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/p_bow) "pns" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -56160,12 +56524,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"pnC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +"pnI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ - icon_state = "sterile_green_side" + icon_state = "plate" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/upper/s_bow) "pnL" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_2" @@ -56183,21 +56551,21 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"pok" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +"pnV" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/area/almayer/engineering/upper_engineering/port) +"poj" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "green" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/port_midship_hallway) "poA" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/bucket/mopbucket, @@ -56236,21 +56604,6 @@ /obj/item/device/camera, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"ppG" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) -"ppM" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"ppV" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "pqc" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -56275,19 +56628,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/stern_hallway) -"pqw" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "pqD" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -56305,22 +56645,16 @@ /obj/item/trash/cigbutt, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) +"pqG" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/p_bow) "pqK" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/bravo) -"pqM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Workshop Vendors" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/repair_bay) "pqP" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light{ @@ -56330,39 +56664,25 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"pqX" = ( -/obj/structure/bed/chair{ - dir = 4 +"pqU" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"prf" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = -6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"pri" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/maint/hull/upper/u_m_s) +"pqX" = ( +/obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"prl" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/living/gym) "prx" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -56387,19 +56707,22 @@ }, /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" +"prS" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 }, -/area/almayer/hallways/upper/stern_hallway) -"prX" = ( -/obj/structure/ladder{ - height = 2; - id = "AftStarboardMaint" +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "prY" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray, @@ -56415,6 +56738,12 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) +"psl" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "psK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56443,6 +56772,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"psT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "pth" = ( /obj/structure/surface/table/almayer, /obj/item/folder/blue, @@ -56475,6 +56810,18 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"ptr" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "ptv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform{ @@ -56502,14 +56849,6 @@ "ptK" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/starboard) -"ptQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/s_stern) "ptZ" = ( /obj/structure/platform{ dir = 4; @@ -56523,16 +56862,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"pum" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "pun" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -56582,34 +56911,18 @@ }, /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_m_s) "puO" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"puT" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"puV" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "bluecorner" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) +/area/almayer/hallways/upper/aft_hallway) "pvh" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/item/tool/warning_cone{ @@ -56619,31 +56932,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"pvi" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) -"pvE" = ( -/obj/structure/machinery/light{ - dir = 1 +"pvv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hallways/upper/stern_hallway) -"pvI" = ( -/obj/structure/sign/safety/rad_haz{ +/obj/structure/sign/safety/water{ pixel_x = 8; - pixel_y = 32 + pixel_y = -32 }, -/obj/structure/machinery/power/reactor, +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower/l_f_s) "pvJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56683,29 +56987,34 @@ icon_state = "redcorner" }, /area/almayer/shipboard/starboard_missiles) -"pwd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"pwe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "mono" + dir = 5; + icon_state = "plating" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/vehiclehangar) "pwx" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/p_bow) "pwG" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"pwJ" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "pxj" = ( /obj/structure/bed, /obj/item/bedsheet/brown, @@ -56748,6 +57057,12 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) +"pxO" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "pyc" = ( /obj/structure/bed/stool, /turf/open/floor/almayer{ @@ -56755,6 +57070,19 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) +"pye" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "pyi" = ( /obj/structure/prop/almayer/missile_tube{ icon_state = "missiletubesouth" @@ -56789,12 +57117,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/bravo) -"pym" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) "pyx" = ( /obj/structure/machinery/door_display/research_cell{ dir = 4; @@ -56851,15 +57173,6 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) -"pzc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "pzd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -56870,16 +57183,30 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"pzj" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" +"pzi" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"pzl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"pzA" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "pzG" = ( /obj/docking_port/stationary/emergency_response/port1, /turf/open/floor/almayer{ @@ -56899,36 +57226,40 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"pzR" = ( +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "pzV" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "bluecorner" }, /area/almayer/living/briefing) -"pzW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hallways/lower/vehiclehangar) +"pAa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "pAm" = ( /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"pAV" = ( -/obj/structure/platform{ - dir = 1 - }, -/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 - }, +"pAH" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"pBE" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/upper/u_a_s) "pBG" = ( /turf/closed/wall/almayer, /area/almayer/command/corporateliaison) +"pCe" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) "pCq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -56946,17 +57277,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/hull/upper/u_m_s) "pDh" = ( /obj/structure/machinery/power/monitor{ name = "Core Power Monitoring" @@ -56975,6 +57295,24 @@ icon_state = "tcomms" }, /area/almayer/engineering/upper_engineering/starboard) +"pDk" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/s_bow) +"pDl" = ( +/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/aft_hallway) "pDo" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -56988,6 +57326,18 @@ icon_state = "plating" }, /area/almayer/shipboard/starboard_point_defense) +"pDq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "pDr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -57035,12 +57385,38 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"pEd" = ( +"pDZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"pEf" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/upper/aft_hallway) +"pEh" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) "pEl" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -57059,12 +57435,35 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"pEp" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"pEu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) "pEB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"pEH" = ( +/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) "pEJ" = ( /obj/structure/machinery/flasher{ alpha = 1; @@ -57092,55 +57491,72 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) -"pFf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"pFh" = ( +/obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 }, -/area/almayer/hallways/upper/aft_hallway) -"pFq" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/obj/item/device/whistle{ - pixel_y = 5 +/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{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/upper/u_f_s) -"pFr" = ( -/obj/structure/machinery/light/small, +/area/almayer/hallways/upper/stern_hallway) +"pFx" = ( +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/structure/closet/crate, +/obj/item/clothing/suit/storage/hazardvest/black, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) -"pGh" = ( -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -9; - pixel_y = 19 +/area/almayer/maint/hull/lower/l_f_p) +"pFO" = ( +/obj/structure/stairs, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pGD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"pGj" = ( -/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) -"pGG" = ( -/obj/effect/landmark/start/doctor, -/obj/structure/sign/safety/maint{ - pixel_y = 26 - }, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) +/area/almayer/maint/hull/lower/l_a_p) "pGK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -57152,6 +57568,18 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) +"pGQ" = ( +/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/stern_hallway) "pGT" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -57162,20 +57590,12 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"pHh" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"pHk" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "cargo" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/vehiclehangar) "pHp" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/perma) @@ -57185,23 +57605,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"pHD" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"pHF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "pHG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -57220,40 +57623,15 @@ /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/hull/upper/u_a_s) -"pIo" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"pIC" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +"pIM" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 10; + icon_state = "green" }, -/area/almayer/maint/lower/constr) +/area/almayer/hallways/upper/aft_hallway) "pIU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -57268,6 +57646,13 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"pIX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/upper/aft_hallway) "pIZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -57277,16 +57662,10 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/north1) -"pJq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) +"pJa" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) "pJr" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -57327,6 +57706,17 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) +"pJE" = ( +/obj/item/trash/uscm_mre, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "pJR" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; @@ -57340,36 +57730,65 @@ dir = 4 }, /area/almayer/command/airoom) -"pKh" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"pJV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"pKB" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/firealarm, -/obj/item/circuitboard, -/obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/maint/hull/upper/s_stern) -"pKW" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" +/obj/structure/platform{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "silver" }, /area/almayer/hallways/lower/repair_bay) +"pJY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) +"pKd" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"pKs" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_fore_hallway) "pKZ" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -57402,6 +57821,13 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"pLB" = ( +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "pLO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -57422,6 +57848,15 @@ icon_state = "cargo" }, /area/almayer/living/pilotbunks) +"pMh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "pMj" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -57446,19 +57881,27 @@ icon_state = "plate" }, /area/almayer/medical/morgue) +"pMz" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "pMA" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/hallways/upper/port) -"pMH" = ( -/obj/item/tool/wet_sign, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"pMI" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "pMJ" = ( /obj/structure/bed/chair{ dir = 1 @@ -57508,6 +57951,11 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/execution) +"pNu" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "pNM" = ( /obj/structure/platform{ dir = 4 @@ -57530,32 +57978,18 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) +"pOa" = ( +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "pOi" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/offices) -"pOp" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - 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/aft_hallway) "pOD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -57566,27 +58000,25 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"pOH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) "pON" = ( /turf/open/floor/almayer/uscm/directional{ dir = 8 }, /area/almayer/command/cic) -"pOW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"pOR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/obj/structure/ladder{ + height = 2; + id = "cicladder3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) "pOY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/microwave{ @@ -57597,16 +58029,14 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"pPd" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" +"pPq" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/upper/u_m_s) "pPv" = ( /obj/structure/closet/cabinet, /obj/item/reagent_container/food/drinks/bottle/wine, @@ -57631,14 +58061,16 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"pPy" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 +"pPw" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "pPA" = ( /obj/structure/sign/poster{ desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; @@ -57655,15 +58087,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"pPG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "pPM" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ @@ -57678,19 +58101,13 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"pPQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"pPU" = ( +"pPR" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/port_umbilical) +"pQh" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" + icon_state = "red" }, /area/almayer/hallways/upper/aft_hallway) "pQr" = ( @@ -57758,10 +58175,6 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"pRs" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "pRy" = ( /turf/open/floor/almayer/research/containment/corner_var1{ dir = 4 @@ -57805,24 +58218,20 @@ }, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop) -"pSF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"pSK" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"pSN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"pSP" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "pSQ" = ( /obj/structure/reagent_dispensers/fueltank{ anchored = 1 @@ -57856,16 +58265,24 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"pTX" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ +"pTD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; pixel_y = -32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"pTQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/lower/s_bow) "pUd" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -57934,23 +58351,12 @@ 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" - }, -/area/almayer/maint/hull/upper/u_m_s) -"pVr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"pVg" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/p_bow) "pVx" = ( /obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, /turf/open/floor/almayer{ @@ -57989,26 +58395,49 @@ }, /area/almayer/living/briefing) "pVF" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/atm{ - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"pVG" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" }, +/area/almayer/maint/hull/upper/u_a_s) +"pVK" = ( /turf/open/floor/almayer, -/area/almayer/command/corporateliaison) +/area/almayer/maint/hull/upper/u_f_p) "pWb" = ( /obj/effect/landmark/start/marine/tl/delta, /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"pWd" = ( -/obj/structure/surface/table/almayer, +"pWg" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/l_m_s) +"pWp" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "pWr" = ( /obj/structure/surface/rack, /obj/item/tool/minihoe{ @@ -58036,22 +58465,44 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"pWw" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"pWA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "green" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/squads/req) "pWN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "blue" }, /area/almayer/living/pilotbunks) +"pWR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) +"pWT" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" + }, +/area/almayer/hallways/lower/port_midship_hallway) "pXl" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -58088,23 +58539,18 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) "pYh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/one{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/vehiclehangar) "pYi" = ( /obj/structure/machinery/light{ dir = 4 @@ -58136,24 +58582,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"pYN" = ( -/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/lower/port_fore_hallway) -"pYQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "pYS" = ( /obj/structure/pipes/binary/pump/on{ dir = 4 @@ -58169,18 +58597,21 @@ icon_state = "silvercorner" }, /area/almayer/shipboard/brig/cic_hallway) -"pZq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +"pZa" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_umbilical) +"pZk" = ( /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/stern_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "pZH" = ( /obj/structure/machinery/shower{ dir = 8 @@ -58222,28 +58653,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"qan" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"qas" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, +"qay" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"qax" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/port_midship_hallway) +"qaT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "qaV" = ( /turf/open/floor/almayer{ dir = 10; @@ -58258,6 +58680,9 @@ icon_state = "red" }, /area/almayer/living/briefing) +"qbs" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_p) "qbx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -58308,6 +58733,12 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"qcr" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "qcy" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 8; @@ -58317,13 +58748,12 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) -"qcL" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 +"qcM" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/upper/u_m_p) "qdk" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -58374,6 +58804,9 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) +"qdy" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_s) "qdz" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -58397,12 +58830,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"qdV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "qec" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -58445,6 +58872,16 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) +"qev" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "qeF" = ( /obj/structure/sign/safety/reception{ pixel_x = 8; @@ -58470,6 +58907,13 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"qeO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/headset/almayer/mt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "qeY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/beach_ball/holoball, @@ -58491,12 +58935,13 @@ icon_state = "plate" }, /area/almayer/squads/alpha_bravo_shared) -"qfq" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +"qfp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/lower/port_umbilical) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "qfy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -58532,21 +58977,6 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qfI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"qfQ" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade/three, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "qga" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ dir = 1 @@ -58572,16 +59002,14 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qgK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic/press{ - dir = 1; - name = "\improper Combat Correspondent Room" +"qgM" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/command/combat_correspondent) +/area/almayer/maint/lower/cryo_cells) "qgN" = ( /obj/structure/bed/chair{ dir = 4 @@ -58640,31 +59068,21 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) -"qhG" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -7; - pixel_y = 14 +"qhR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -8 }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 9 +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/hallways/lower/port_fore_hallway) "qhU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -58680,22 +59098,6 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"qid" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"qig" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "qih" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -58715,6 +59117,16 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"qip" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "qit" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light{ @@ -58732,6 +59144,14 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) +"qiD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/s_bow) "qjz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/clipboard, @@ -58748,28 +59168,11 @@ icon_state = "silvercorner" }, /area/almayer/command/computerlab) -"qjL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "qjN" = ( /turf/open/floor/almayer{ 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/hull/upper/u_m_s) "qjV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -58781,6 +59184,23 @@ "qjZ" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/stern_point_defense) +"qkb" = ( +/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/aft_hallway) +"qkc" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "qki" = ( /obj/effect/landmark/start/marine/smartgunner/charlie, /obj/effect/landmark/late_join/charlie, @@ -58796,6 +59216,15 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"qkz" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) "qkP" = ( /obj/item/frame/light_fixture{ anchored = 1; @@ -58849,12 +59278,18 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qlu" = ( -/obj/structure/largecrate/random/case/double, +"qlt" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_s) "qlz" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -58872,12 +59307,6 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"qlL" = ( -/obj/item/reagent_container/food/drinks/cans/souto, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/lower/repair_bay) "qlS" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -58893,10 +59322,28 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"qmh" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hallways/lower/repair_bay) +"qmb" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + access_modified = 1; + name = "\improper Requisition's Office"; + req_one_access = null; + req_one_access_txt = "1;26" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) "qmk" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -58911,27 +59358,6 @@ icon_state = "bluecorner" }, /area/almayer/squads/delta) -"qmq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/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/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "qmy" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -58994,19 +59420,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) -"qmM" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "qmP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm, @@ -59044,15 +59457,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/hallways/upper/stern_hallway) "qnh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -59077,14 +59481,15 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"qnA" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 +"qny" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Under Construction Shutters"; + name = "\improper Construction Site" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/constr) "qnC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -59100,6 +59505,28 @@ icon_state = "test_floor4" }, /area/almayer/living/pilotbunks) +"qnN" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"qob" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"qoj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "qom" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/chem_dispenser/soda{ @@ -59124,6 +59551,12 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) +"qor" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "qoJ" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -59145,11 +59578,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"qoN" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) "qoR" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -59176,13 +59604,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/stern_hallway) "qpQ" = ( /obj/item/reagent_container/glass/beaker/bluespace, /obj/structure/machinery/chem_dispenser/medbay, @@ -59190,29 +59611,15 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/chemistry) -"qpV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ +"qqi" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/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" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) -"qqf" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/lower/s_bow) "qqn" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -59270,12 +59677,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"qqS" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "qqV" = ( /obj/structure/machinery/cm_vending/clothing/military_police_warden, /turf/open/floor/wood/ship, @@ -59304,10 +59705,36 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"qsp" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +"qrS" = ( +/obj/item/clothing/head/welding{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"qsj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) +"qsr" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "qsC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction, @@ -59316,6 +59743,43 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) +"qsJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_x = -7; + pixel_y = -26; + req_one_access_txt = "3;22;2;19;7" + }, +/obj/structure/surface/rack, +/obj/item/rappel_harness{ + pixel_y = 8 + }, +/obj/item/rappel_harness, +/obj/item/rappel_harness{ + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/hallways/lower/repair_bay) +"qsK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "qsL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -59341,6 +59805,17 @@ icon_state = "plate" }, /area/almayer/living/gym) +"qtO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) +"qtZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/p_stern) "quj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -59420,12 +59895,33 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"qvd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"qvl" = ( +/obj/item/stack/folding_barricade/three, +/obj/item/stack/folding_barricade/three, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/shipboard/panic) "qvC" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 }, /turf/open/floor/plating, /area/almayer/living/port_emb) +"qvG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "qvI" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 @@ -59447,13 +59943,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/aft_hallway) "qwo" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -59487,6 +59976,9 @@ icon_state = "plate" }, /area/almayer/living/offices) +"qwE" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_s) "qwJ" = ( /obj/structure/machinery/door_control{ id = "ARES Operations Left"; @@ -59500,12 +59992,22 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"qwY" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" +"qwT" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/cryo_cells) +"qxb" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer{ + pixel_x = 4; + pixel_y = 4 }, -/area/almayer/maint/hull/upper/u_f_s) +/obj/item/storage/toolbox/emergency, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "qxe" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 @@ -59586,21 +60088,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"qxI" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) -"qxJ" = ( -/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/aft_hallway) "qxL" = ( /obj/structure/machinery/medical_pod/autodoc, /turf/open/floor/almayer{ @@ -59620,6 +60107,11 @@ dir = 4 }, /area/almayer/medical/containment/cell) +"qyd" = ( +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "qyi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -59632,6 +60124,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"qyj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "qyo" = ( /turf/open/floor/almayer{ dir = 1; @@ -59644,6 +60142,21 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"qyu" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"qyw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "qyD" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -59651,13 +60164,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"qyG" = ( -/obj/structure/sign/safety/hazard{ - desc = "A sign that warns of a hazardous environment nearby"; - name = "\improper Warning: Hazardous Environment" - }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) "qyK" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -59665,21 +60171,16 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"qyP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"qyL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/vehiclehangar) "qyW" = ( /obj/structure/bed/chair{ dir = 4 @@ -59688,13 +60189,6 @@ icon_state = "emeraldfull" }, /area/almayer/squads/charlie_delta_shared) -"qyX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "qyZ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/view_objectives, @@ -59718,12 +60212,42 @@ icon_state = "plating" }, /area/almayer/shipboard/port_point_defense) -"qzA" = ( -/obj/structure/largecrate/random/secure, +"qzm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/upper/u_a_s) +"qAa" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"qAc" = ( +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "qAs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -59733,16 +60257,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"qAy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) "qAA" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" @@ -59763,29 +60277,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"qAG" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"qAK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "qAT" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, @@ -59808,12 +60299,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"qBl" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "qBq" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -59826,6 +60311,12 @@ icon_state = "test_floor4" }, /area/almayer/living/commandbunks) +"qBE" = ( +/obj/structure/closet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) "qBM" = ( /obj/item/storage/fancy/crayons{ layer = 3.1; @@ -59837,18 +60328,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"qBS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "qCc" = ( /obj/structure/sign/safety/security{ pixel_x = 15; @@ -59876,16 +60355,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"qCH" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Secretroom"; - indestructible = 1; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) "qCU" = ( /obj/structure/machinery/light{ dir = 4 @@ -59920,12 +60389,6 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) -"qDB" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_p) "qDN" = ( /obj/structure/machinery/light{ dir = 8 @@ -59944,19 +60407,10 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) -"qDS" = ( -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"qEc" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +"qEa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "qEk" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -59970,15 +60424,6 @@ icon_state = "plating" }, /area/almayer/command/cic) -"qEl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) "qEn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -59993,6 +60438,13 @@ icon_state = "test_floor4" }, /area/almayer/medical/hydroponics) +"qEw" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "qEy" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -60000,25 +60452,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"qEz" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_y = -21; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) "qEA" = ( /obj/structure/bed, /obj/structure/machinery/flasher{ @@ -60043,34 +60476,45 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"qEM" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" +"qEP" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) +"qFi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"qFm" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Medical Storage" }, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ 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" +/area/almayer/medical/lower_medical_medbay) +"qFp" = ( +/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 = "dark_sterile" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"qFi" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 +/area/almayer/maint/hull/upper/u_m_s) +"qFr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) +/area/almayer/maint/hull/upper/u_f_p) "qFu" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -60108,16 +60552,6 @@ icon_state = "bluefull" }, /area/almayer/squads/delta) -"qFS" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "qGc" = ( /turf/open/floor/almayer{ dir = 1; @@ -60141,39 +60575,27 @@ icon_state = "cargo" }, /area/almayer/engineering/lower/workshop/hangar) -"qGC" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "qGF" = ( /obj/structure/machinery/optable, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_two) -"qGP" = ( +"qGS" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer{ + icon_state = "red" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/living/cryo_cells) "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/aft_hallway) "qHg" = ( /turf/open/floor/almayer{ dir = 1; @@ -60190,20 +60612,30 @@ icon_state = "test_floor4" }, /area/almayer/powered) -"qHu" = ( -/obj/structure/machinery/light{ - dir = 1 +"qHK" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"qHG" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/maint/hull/upper/p_stern) +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "qHM" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -60214,23 +60646,16 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) -"qIa" = ( -/obj/structure/platform{ - dir = 4 +"qHZ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"qIf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "test_floor4" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/shipboard/panic) "qIx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; @@ -60242,6 +60667,18 @@ icon_state = "test_floor4" }, /area/almayer/command/corporateliaison) +"qIB" = ( +/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) "qIL" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/camera/autoname/almayer{ @@ -60262,6 +60699,15 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"qJb" = ( +/obj/effect/decal/cleanable/vomit, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/port) "qJf" = ( /obj/structure/machinery/light{ dir = 4 @@ -60291,6 +60737,18 @@ icon_state = "red" }, /area/almayer/shipboard/brig/perma) +"qJr" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "qJx" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/almayer{ @@ -60354,19 +60812,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"qKb" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/tubes{ - pixel_x = -8 - }, -/obj/item/storage/box/lights/tubes{ - pixel_x = 5 - }, -/obj/item/storage/box/lights/tubes{ - pixel_y = 10 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "qKi" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -60379,15 +60824,6 @@ icon_state = "plating" }, /area/almayer/engineering/upper_engineering) -"qKl" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "qKz" = ( /obj/structure/machinery/light/small, /turf/open/floor/almayer{ @@ -60395,15 +60831,15 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"qKK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/blue, +"qKT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/camera_film, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/u_f_s) "qKY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -60414,6 +60850,16 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"qLb" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "qLg" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -60469,6 +60915,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"qLO" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/machinery/recycler, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) "qLS" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom, /turf/open/floor/almayer/no_build{ @@ -60483,13 +60939,6 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"qLY" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "qMD" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/flashbangs, @@ -60531,6 +60980,12 @@ icon_state = "cargo" }, /area/almayer/squads/delta) +"qNw" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "qNI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -60540,20 +60995,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"qNK" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_f_s) "qNR" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -60588,43 +61029,17 @@ /obj/structure/disposalpipe/junction, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"qOS" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qOY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) -"qPk" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qPn" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"qPC" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 }, -/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" +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "qPD" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) @@ -60653,10 +61068,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"qPU" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "qPX" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -60690,13 +61101,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"qQG" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "qQS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -60709,19 +61113,12 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"qRb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qRd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"qRi" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "qRj" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -60738,6 +61135,12 @@ icon_state = "silvercorner" }, /area/almayer/shipboard/brig/cic_hallway) +"qRq" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) "qRr" = ( /obj/structure/machinery/door/airlock/almayer/generic/corporate, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -60751,24 +61154,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/aft_hallway) "qSm" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) -"qSw" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) +"qSB" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "qSE" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/cholula, @@ -60776,14 +61176,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"qSI" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/oxygen/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "qSK" = ( /obj/item/stack/sheet/metal{ layer = 2.9; @@ -60805,14 +61197,21 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"qTu" = ( -/obj/structure/machinery/power/apc/almayer{ +"qTd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) +"qTv" = ( +/obj/structure/closet, +/obj/item/device/flashlight/pen, +/obj/item/attachable/reddot, +/obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/upper/u_m_s) "qTQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -60883,11 +61282,15 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"qUO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +"qUT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "qUZ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -60910,12 +61313,6 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"qVE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "qVF" = ( /turf/open/floor/almayer{ icon_state = "cargo" @@ -60953,34 +61350,25 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"qWx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"qWG" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ + pixel_x = 9 + }, +/obj/item/tool/weldingtool{ + pixel_x = -7; + pixel_y = 3 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "silver" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/repair_bay) "qWI" = ( /obj/structure/machinery/status_display{ pixel_y = -30 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"qWK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"qWL" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/item/frame/rack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "qWQ" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -60995,43 +61383,32 @@ 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_y = 15; - pixel_x = 4 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_y = 13; - pixel_x = -8 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_y = 19; - pixel_x = -5; - layer = 3.01 +"qXe" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = -5; - pixel_y = 2 +/area/almayer/maint/hull/upper/u_m_s) +"qXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "qXk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"qXm" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "qXo" = ( /obj/structure/machinery/seed_extractor, /obj/structure/machinery/light{ @@ -61052,6 +61429,15 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) +"qXz" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "qXE" = ( /obj/structure/machinery/brig_cell/perma_1{ pixel_x = 32 @@ -61089,6 +61475,10 @@ allow_construction = 0 }, /area/almayer/hallways/upper/port) +"qXW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "qXZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -61145,17 +61535,6 @@ icon_state = "mono" }, /area/almayer/command/lifeboat) -"qYN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/deck, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/living/offices/flight) "qYQ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -61179,20 +61558,23 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"qZy" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/largecrate/supply/supplies/flares, +"qZh" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "green" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/port_midship_hallway) +"qZj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"qZx" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) "qZA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -61230,21 +61612,6 @@ icon_state = "greenfull" }, /area/almayer/living/offices) -"qZK" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"qZT" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "qZX" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -61259,12 +61626,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) -"raE" = ( +"raq" = ( /obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"raD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/stern_hallway) "raK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -61277,24 +61649,21 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"raO" = ( -/obj/structure/bed/sofa/south/grey/right, +"raT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_f_p) "rbd" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "rbi" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/ids{ @@ -61311,13 +61680,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"rbp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "rby" = ( /obj/structure/machinery/door_control{ id = "ARES Mainframe Left"; @@ -61335,6 +61697,18 @@ icon_state = "silvercorner" }, /area/almayer/command/computerlab) +"rbE" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/reagent_container/glass/rag, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "rbF" = ( /obj/effect/landmark/late_join, /obj/effect/landmark/ert_spawns/distress_cryo, @@ -61379,6 +61753,14 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) +"rcw" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "rcx" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -61392,13 +61774,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"rcG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "rcS" = ( /obj/structure/machinery/computer/cryopod/eng{ dir = 8 @@ -61419,18 +61794,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/aft_hallway) "rdt" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -61470,12 +61833,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"rdN" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "rdS" = ( /obj/structure/machinery/light{ dir = 8 @@ -61490,12 +61847,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"rdT" = ( -/obj/structure/machinery/power/apc/almayer, +"rdX" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "orange" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/stern_hallway) "rec" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 1 @@ -61516,21 +61875,21 @@ icon_state = "plate" }, /area/almayer/living/gym) -"reu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"rez" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) -"reH" = ( -/obj/structure/noticeboard{ - pixel_x = -10; - pixel_y = 31 +"reF" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, +/obj/item/storage/firstaid/regular, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/squads/req) +/area/almayer/maint/hull/upper/u_f_p) "reL" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/sliceable/bread{ @@ -61544,24 +61903,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"reM" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) -"reN" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) "rfa" = ( /obj/effect/landmark/start/marine/medic/alpha, /obj/effect/landmark/late_join/alpha, @@ -61575,11 +61916,6 @@ icon_state = "containment_window_h" }, /area/almayer/medical/containment/cell/cl) -"rfB" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "rfI" = ( /obj/structure/sign/safety/airlock{ pixel_y = -32 @@ -61592,10 +61928,6 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"rfQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) "rfT" = ( /obj/item/frame/camera{ desc = "The Staff Officer insisted he needed to monitor everyone at all times."; @@ -61626,23 +61958,28 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) -"rgk" = ( -/obj/structure/platform_decoration{ - dir = 1 +"rgs" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "greencorner" }, -/area/almayer/maint/hull/upper/u_a_s) -"rgt" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/lower/starboard_midship_hallway) "rgy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"rgC" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "rgK" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 @@ -61663,13 +62000,22 @@ }, /area/almayer/living/auxiliary_officer_office) "rgL" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) "rgW" = ( /turf/open/floor/almayer{ icon_state = "emeraldcorner" }, /area/almayer/living/briefing) +"rhf" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "rhl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -61681,18 +62027,6 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/main_office) -"rhm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"rht" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "rhy" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -61707,12 +62041,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"rhD" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "rhO" = ( /obj/structure/machinery/vending/cola/research{ pixel_x = 4 @@ -61727,16 +62055,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"rhX" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) "rib" = ( /obj/structure/sink{ dir = 8; @@ -61747,41 +62065,26 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"rir" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +"riv" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/s_bow) -"riB" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"riC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/maint/hull/lower/l_f_p) +"riw" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/upper/u_a_p) "riE" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -61794,18 +62097,31 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"riG" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/lower/vehiclehangar) +"riI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "riJ" = ( /turf/open/floor/almayer{ dir = 5; icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"riK" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, -/area/almayer/hallways/upper/aft_hallway) "riP" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/rewire{ @@ -61824,6 +62140,12 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) +"rji" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "rjn" = ( /obj/structure/machinery/light, /obj/structure/reagent_dispensers/water_cooler/stacks, @@ -61831,17 +62153,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"rjF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "rjG" = ( /obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/almayer{ @@ -61908,10 +62219,39 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) +"rkn" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "rkz" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/gym) +"rkF" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) +"rkS" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "rlc" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -61948,21 +62288,36 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"rlD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"rly" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/lower/starboard_aft_hallway) +"rlO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/s_stern) "rlQ" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "green" }, /area/almayer/living/grunt_rnr) +"rlY" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "rlZ" = ( /turf/open/floor/almayer{ icon_state = "dark_sterile" @@ -62008,18 +62363,38 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"rmz" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) "rmB" = ( +/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_y = 15; + pixel_x = 4 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_y = 13; + pixel_x = -8 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_y = 19; + pixel_x = -5; + layer = 3.01 + }, +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = -5; + pixel_y = 2 + }, /turf/open/floor/almayer{ - icon_state = "blue" + dir = 1; + icon_state = "sterile_green_corner" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/medical/lower_medical_medbay) "rmD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -62040,18 +62415,28 @@ "rna" = ( /turf/closed/wall/almayer/white, /area/almayer/command/airoom) -"rnd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"rng" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) +"rnu" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_y = 24; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "rnF" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -62088,25 +62473,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"rnO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"rnP" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 10; + icon_state = "red" }, /area/almayer/hallways/upper/stern_hallway) "rob" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"roj" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "rou" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -62118,6 +62497,10 @@ icon_state = "cargo" }, /area/almayer/squads/bravo) +"row" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) "roG" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -62140,6 +62523,17 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) +"roK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "roU" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -62147,15 +62541,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/hallways/upper/stern_hallway) "rpp" = ( /obj/effect/landmark/start/executive, /turf/open/floor/plating/plating_catwalk, @@ -62169,14 +62554,6 @@ icon_state = "sterile_green_side" }, /area/almayer/shipboard/brig/surgery) -"rpG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_s) "rpK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -62186,6 +62563,18 @@ icon_state = "plate" }, /area/almayer/command/cichallway) +"rqa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/stern_hallway) "rqb" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 @@ -62202,38 +62591,10 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"rqv" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) -"rqz" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"rqD" = ( -/obj/structure/disposalpipe/segment, -/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_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) +"rqn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "rqE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -62245,13 +62606,16 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"rqQ" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" +"rqL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/starboard_umbilical) "rqS" = ( /obj/structure/surface/table/almayer, /obj/item/folder/red{ @@ -62267,15 +62631,18 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/evidence_storage) -"rrh" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Under Construction Shutters"; - name = "\improper Construction Site" +"rro" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" }, +/area/almayer/hallways/upper/stern_hallway) +"rrp" = ( +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/lower/l_m_p) "rrq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -62306,13 +62673,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/stern_hallway) "rrK" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -62338,25 +62698,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"rrU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"rrO" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_umbilical) +"rsr" = ( +/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/hull/upper/u_a_s) "rsK" = ( /obj/structure/sign/safety/hvac_old, /turf/closed/wall/almayer, /area/almayer/squads/req) -"rsL" = ( -/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/hallways/lower/port_aft_hallway) "rsM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -62370,31 +62731,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"rsP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"rsS" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = -25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"rsV" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "rtd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -62404,12 +62740,6 @@ "rth" = ( /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"rtj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) "rtA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/pen{ @@ -62497,57 +62827,62 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"ruC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ruD" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "ruL" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop/hangar) -"rvA" = ( -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"rvI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random, +"ruS" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/upper/s_stern) +"rvt" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"rvA" = ( +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) "rvT" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ icon_state = "emerald" }, /area/almayer/squads/charlie) -"rwe" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, -/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 - }, +"rwh" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) -"rwj" = ( +/area/almayer/maint/hull/lower/l_f_p) +"rwk" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + icon_state = "cargo" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/starboard_aft_hallway) "rwq" = ( /obj/structure/sign/safety/cryo{ pixel_x = 7; @@ -62583,26 +62918,26 @@ }, /turf/open/floor/plating, /area/almayer/living/pilotbunks) -"rwZ" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_p) -"rxe" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +"rxm" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"rxq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/almayer/maint/upper/u_m_p) +"rxr" = ( +/obj/item/stool, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/vehiclehangar) "rxK" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -62613,11 +62948,17 @@ icon_state = "silverfull" }, /area/almayer/command/computerlab) -"rxV" = ( -/obj/structure/barricade/handrail, -/obj/structure/largecrate/supply/generator, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) +"rye" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"ryg" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "ryt" = ( /obj/structure/pipes/standard/manifold/visible, /turf/open/floor/almayer{ @@ -62644,20 +62985,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"rzk" = ( -/obj/item/tool/screwdriver, -/obj/structure/platform_decoration{ - dir = 8 - }, +"rzC" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) +"rzG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/maint/hull/upper/u_a_p) -"rzy" = ( -/obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/hallways/lower/port_umbilical) +"rzK" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "rzN" = ( /turf/open/floor/almayer{ icon_state = "dark_sterile" @@ -62677,28 +63026,20 @@ icon_state = "bluecorner" }, /area/almayer/living/briefing) -"rAo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light/small{ +"rAc" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"rAw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = -7 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/lower/starboard_fore_hallway) +"rAk" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/p_bow) "rAx" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -62774,6 +63115,15 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"rBd" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "rBj" = ( /obj/structure/machinery/processor, /turf/open/floor/plating/plating_catwalk, @@ -62795,12 +63145,6 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"rBD" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/u_m_p) "rBH" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_2" @@ -62816,15 +63160,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"rCh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "rCi" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ dir = 8 @@ -62881,6 +63216,12 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) +"rCP" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_midship_hallway) "rCU" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 2; @@ -62897,6 +63238,19 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/chief_mp_office) +"rCX" = ( +/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/aft_hallway) "rDb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -62929,15 +63283,20 @@ icon_state = "green" }, /area/almayer/squads/req) -"rDf" = ( +"rDk" = ( /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/aft_hallway) +/area/almayer/maint/hull/upper/u_a_s) +"rDp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "rDr" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -62974,34 +63333,20 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"rDH" = ( -/obj/structure/machinery/light, +"rDC" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"rDM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"rDO" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) "rDQ" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/shipboard/brig/cryo) -"rDR" = ( -/obj/structure/machinery/vending/coffee, -/obj/item/toy/bikehorn/rubberducky{ - desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; - name = "Quackers"; - pixel_x = 5; - pixel_y = 17 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "rDV" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -63023,17 +63368,15 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) "rEd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/upper/u_a_s) "rEf" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -63059,16 +63402,13 @@ }, /area/space) "rEs" = ( -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_s) -"rEt" = ( -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_a_s) "rEv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -63082,19 +63422,13 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"rEK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, +"rEF" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12; pixel_y = 12 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/lower/l_m_p) "rEL" = ( /obj/structure/machinery/cm_vending/gear/intelligence_officer, /turf/open/floor/almayer{ @@ -63166,32 +63500,29 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"rGc" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"rFO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 10; - icon_state = "red" + dir = 4; + icon_state = "orange" }, /area/almayer/hallways/upper/stern_hallway) +"rFS" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) "rGj" = ( /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/squads/alpha) -"rGr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"rGz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "rGE" = ( /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Conference Room" @@ -63216,15 +63547,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"rGL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "rGU" = ( /obj/structure/machinery/computer/skills{ req_one_access_txt = "200" @@ -63232,6 +63554,13 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) +"rGZ" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/squads/req) "rHc" = ( /turf/open/floor/carpet, /area/almayer/command/cichallway) @@ -63242,13 +63571,26 @@ icon_state = "plate" }, /area/almayer/squads/alpha_bravo_shared) -"rHn" = ( +"rHg" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ + dir = 1; icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) +"rHm" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/lower/vehiclehangar) "rHo" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 @@ -63268,19 +63610,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_medbay) -"rHq" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"rHr" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "rHw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -63292,17 +63621,17 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"rHB" = ( -/obj/item/ammo_box/magazine/misc/mre/empty{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 11; - pixel_y = -3 +"rHA" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/maint/hull/lower/l_m_p) "rHN" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/plating/plating_catwalk, @@ -63335,27 +63664,26 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_lobby) -"rIw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "rID" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "orange" }, /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 +"rIG" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_f_s) "rIH" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -63373,27 +63701,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"rIP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rIV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "rIW" = ( /obj/structure/machinery/cm_vending/gear/synth, /obj/effect/decal/cleanable/cobweb2, @@ -63402,11 +63709,11 @@ }, /area/almayer/living/synthcloset) "rJf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "rJh" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -63461,6 +63768,21 @@ /obj/structure/machinery/cm_vending/own_points/experimental_tools, /turf/open/floor/almayer, /area/almayer/living/synthcloset) +"rJE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rJF" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "rJK" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -63498,14 +63820,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"rJY" = ( -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "rKd" = ( /turf/open/floor/almayer/uscm/directional{ dir = 5 @@ -63535,6 +63849,19 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"rKI" = ( +/obj/structure/machinery/light/small, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_umbilical) "rKO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63550,11 +63877,38 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"rKX" = ( +/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/aft_hallway) +"rLi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "rLk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) +"rLl" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "rLp" = ( /obj/structure/machinery/chem_dispenser/soda{ pixel_y = 20 @@ -63567,30 +63921,6 @@ icon_state = "containment_window_h" }, /area/almayer/medical/containment/cell/cl) -"rLH" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/device/binoculars, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) -"rLK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) "rLP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -63603,25 +63933,41 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"rLQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "rLU" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 8 }, /area/almayer/medical/containment/cell/cl) -"rMj" = ( -/obj/structure/reagent_dispensers/fueltank, +"rMh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/hallways/lower/vehiclehangar) -"rMO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"rMk" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 30 }, +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/lower/s_bow) +/area/almayer/maint/hull/lower/l_m_s) +"rMG" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "rMT" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -63692,6 +64038,38 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"rNT" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"rNY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"rNZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"rOa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "rOc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -63710,14 +64088,6 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"rOv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "rOC" = ( /obj/structure/machinery/light{ dir = 1 @@ -63726,6 +64096,15 @@ icon_state = "plate" }, /area/almayer/command/cic) +"rOD" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "rOI" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -63740,14 +64119,21 @@ icon_state = "plate" }, /area/almayer/living/gym) -"rPq" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, +"rOR" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"rPc" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/hallways/lower/starboard_umbilical) +"rPl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "rPt" = ( /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) @@ -63787,14 +64173,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"rQs" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "rQt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -63802,20 +64180,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"rQw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) "rQy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/hydroponics) @@ -63825,6 +64189,12 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/delta) +"rQP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) "rQV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63850,21 +64220,27 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"rRb" = ( -/obj/effect/decal/cleanable/dirt, +"rQX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "orangecorner" }, -/area/almayer/maint/hull/upper/u_m_s) -"rRf" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/area/almayer/hallways/lower/starboard_umbilical) +"rRg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Starboard Railguns and Viewing Room" }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "red" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_f_s) "rRq" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south2) @@ -63889,6 +64265,25 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"rRP" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = -9; + pixel_y = 16 + }, +/obj/item/clothing/suit/storage/hazardvest/blue{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "rRU" = ( /obj/structure/machinery/light{ dir = 8 @@ -63927,30 +64322,18 @@ icon_state = "orangefull" }, /area/almayer/squads/alpha_bravo_shared) -"rSx" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/rods/plasteel{ - amount = 36 - }, -/obj/item/stack/catwalk{ - amount = 60; - pixel_x = 5; - pixel_y = 4 +"rSz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"rSA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/port_aft_hallway) "rSG" = ( /obj/structure/toilet{ pixel_y = 16 @@ -63965,35 +64348,38 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"rSR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"rTe" = ( -/obj/structure/machinery/light{ - dir = 1 +"rSI" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rTj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/maint/upper/u_m_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "rTk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"rTA" = ( -/obj/structure/disposalpipe/junction{ +"rTr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "redfull" }, /area/almayer/hallways/lower/starboard_midship_hallway) "rTJ" = ( @@ -64002,6 +64388,12 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"rTX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "rTZ" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 @@ -64017,14 +64409,6 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"rUi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "rUk" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -64032,10 +64416,11 @@ /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) "rUq" = ( -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "rUy" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -64044,20 +64429,6 @@ 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; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "rVm" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -64068,38 +64439,20 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/main_office) -"rVt" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/part_fabricator/dropship, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) -"rVC" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "rVN" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"rWb" = ( -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"rWm" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "rWn" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -64119,15 +64472,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"rWv" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, +"rWy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"rWz" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) +/area/almayer/hallways/lower/port_aft_hallway) "rWF" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -64144,12 +64492,6 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) -"rWP" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "rWT" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -64157,12 +64499,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) +"rWV" = ( +/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/hallways/lower/port_aft_hallway) "rXd" = ( /obj/structure/machinery/vending/security, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) +"rXg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "rXj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -64180,6 +64540,21 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) +"rXs" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "rXv" = ( /obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/disposalpipe/segment{ @@ -64189,28 +64564,18 @@ icon_state = "test_floor4" }, /area/almayer/living/gym) -"rXF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) -"rXH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) -"rXQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"rXM" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 3 }, +/obj/item/folder/yellow, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/upper/u_f_s) "rXS" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -64223,23 +64588,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/delta) -"rXU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - 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/stern_hallway) "rYh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -64262,6 +64610,16 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"rYs" = ( +/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/aft_hallway) "rYv" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/warning_stripes{ @@ -64274,52 +64632,54 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"rYG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +"rYJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, /turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"rYI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "plate" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/living/offices/flight) +"rYK" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"rYJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, +/area/almayer/maint/hull/lower/l_f_p) +"rYM" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/offices/flight) -"rZt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/maint/hull/upper/u_a_s) +"rYT" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/area/almayer/maint/hull/upper/u_a_p) +"rYV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"rZb" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "rZB" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -64328,15 +64688,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/aft_hallway) "rZP" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldpack, @@ -64345,18 +64696,12 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) -"sab" = ( -/obj/effect/landmark/start/doctor, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"sai" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +"saa" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/lower/l_a_p) "saL" = ( /obj/structure/machinery/door/airlock/almayer/generic/corporate{ name = "Corporate Liaison's Closet" @@ -64365,13 +64710,15 @@ icon_state = "test_floor4" }, /area/almayer/command/corporateliaison) -"saT" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"sbb" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "sbq" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; @@ -64381,30 +64728,33 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/notunnel) -"sbt" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "safe_armory"; - name = "\improper Hangar Armory Shutters" - }, +"sbA" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/panic) -"sbE" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 + icon_state = "orange" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/lower/l_m_s) "sbJ" = ( /turf/closed/wall/almayer/white/hull, /area/almayer/powered/agent) +"sbM" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_y = 7; + pixel_x = -17 + }, +/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) "sbP" = ( /obj/effect/landmark/start/police, /obj/effect/decal/warning_stripes{ @@ -64413,6 +64763,39 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) +"sbU" = ( +/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/hull/upper/u_m_p) +"sbV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"sce" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "sco" = ( /obj/structure/sign/prop1{ layer = 3.1 @@ -64423,19 +64806,6 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"sct" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) "scu" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -64505,15 +64875,12 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"scX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/toy/deck{ - pixel_x = -9 +"sde" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/port_midship_hallway) "sdf" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -64563,6 +64930,9 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"sdz" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) "sdC" = ( /obj/structure/bed/chair{ dir = 4 @@ -64571,6 +64941,14 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"sdF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) "sdO" = ( /obj/structure/ladder{ height = 1; @@ -64580,13 +64958,34 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"seL" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +"sdP" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"sen" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/upper/u_m_s) +"sep" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) +"sfv" = ( +/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/aft_hallway) "sfT" = ( /turf/open/floor/almayer, /area/almayer/hallways/upper/port) @@ -64693,16 +65092,15 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"sgL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" +"sgI" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/almayer{ - icon_state = "redfull" + dir = 4; + icon_state = "green" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/upper/aft_hallway) "sgR" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck{ @@ -64719,12 +65117,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"she" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "shh" = ( /obj/structure/machinery/autolathe, /turf/open/floor/almayer, @@ -64764,6 +65156,14 @@ "sht" = ( /turf/open/floor/almayer, /area/almayer/living/pilotbunks) +"shJ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "shL" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/electrical, @@ -64775,36 +65175,12 @@ icon_state = "cargo" }, /area/almayer/engineering/lower/engine_core) -"sir" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "panicroomback"; - name = "\improper Safe Room Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_s) -"sit" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"sic" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"siy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/s_bow) "siz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/hangar{ @@ -64821,12 +65197,12 @@ icon_state = "redfull" }, /area/almayer/living/offices/flight) -"siC" = ( +"siB" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer{ - dir = 9; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/vehiclehangar) "siN" = ( /obj/structure/machinery/light{ dir = 1 @@ -64842,23 +65218,21 @@ 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" +"siP" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/area/almayer/hallways/upper/stern_hallway) -"siT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_s) "siW" = ( /obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ @@ -64875,9 +65249,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) -"sje" = ( -/turf/open/floor/almayer/empty, -/area/almayer/hallways/lower/vehiclehangar) "sjj" = ( /obj/structure/machinery/keycard_auth{ pixel_x = -7; @@ -64907,16 +65278,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/hull/upper/u_m_p) "sjz" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -64926,6 +65287,19 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) +"sjC" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"sjZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "skj" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -64973,6 +65347,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/workshop) +"skO" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "skR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -65010,91 +65391,62 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"slo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +"slr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"slu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "slv" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/engineering/lower/engine_core) -"slF" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/shipboard/brig/processing) -"smi" = ( /turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"smw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -5; - pixel_y = 16 + dir = 8; + icon_state = "orange" }, -/obj/structure/sign/safety/terminal{ +/area/almayer/hallways/upper/stern_hallway) +"slx" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small{ - dir = 4 + pixel_y = 32 }, +/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"smA" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -16; - pixel_y = 16 - }, +/area/almayer/maint/hull/lower/l_m_s) +"slF" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 9; + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_m_s) -"smH" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" +/area/almayer/shipboard/brig/processing) +"slG" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) -"smU" = ( +/area/almayer/maint/hull/lower/l_a_s) +"smi" = ( /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "green" }, -/area/almayer/shipboard/panic) +/area/almayer/living/grunt_rnr) "smW" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -65152,10 +65504,15 @@ icon_state = "plate" }, /area/almayer/squads/req) -"snx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +"snC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/starboard_umbilical) "snE" = ( /obj/structure/machinery/cryopod/right, /obj/effect/decal/warning_stripes{ @@ -65191,25 +65548,6 @@ icon_state = "plate" }, /area/almayer/command/cic) -"snM" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"snN" = ( -/obj/structure/curtain/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "snR" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -65247,6 +65585,9 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) +"soC" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_bow) "soK" = ( /obj/item/storage/firstaid/fire/empty, /obj/item/storage/firstaid/o2/empty, @@ -65262,34 +65603,23 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"soT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "soX" = ( /obj/structure/window/reinforced/toughened, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/command/cic) -"spd" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"spa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_p) +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) +"spn" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "spF" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -65315,6 +65645,12 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) +"spN" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "spS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -65324,39 +65660,6 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"spT" = ( -/obj/structure/closet/crate{ - desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; - name = "special operations crate" - }, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/almayer{ - 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/aft_hallway) "sqa" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -65392,16 +65695,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_m_s) "sqW" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/tomatoseed, @@ -65410,39 +65703,28 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"srh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"sre" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 6; + icon_state = "red" }, -/area/almayer/hallways/lower/port_umbilical) -"srl" = ( -/obj/structure/largecrate/random/barrel/red, +/area/almayer/hallways/lower/port_fore_hallway) +"sro" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) -"srO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"srR" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/area/almayer/maint/hull/lower/l_m_s) +"srA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "srT" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 @@ -65454,28 +65736,14 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/evidence_storage) -"ssk" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 +"ssx" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/upper/p_bow) "ssD" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -65486,19 +65754,24 @@ }, /area/almayer/shipboard/brig/main_office) "ssF" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32; +/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 }, -/obj/structure/sign/safety/reduction{ - pixel_x = 32; - pixel_y = -8 +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"ssH" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/stern) "ssU" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/almayer{ @@ -65530,13 +65803,10 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"stk" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, +"stm" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + dir = 5; + icon_state = "silver" }, /area/almayer/hallways/upper/aft_hallway) "str" = ( @@ -65558,12 +65828,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/hull/upper/u_a_s) "stO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm/brig, @@ -65575,25 +65839,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/perma) -"stP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"stR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sub" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/vehiclehangar) "suc" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -65619,18 +65864,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"suH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "suJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Core Hatch" @@ -65643,18 +65876,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/engine_core) -"suU" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "suY" = ( /obj/structure/platform_decoration, /turf/open/floor/almayer{ @@ -65676,43 +65897,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"svt" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"svw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"svF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/effect/landmark/yautja_teleport, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - 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 - }, -/obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "swn" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -65735,12 +65919,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"swG" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "swH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/radio/intercom{ @@ -65776,15 +65954,6 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering) -"sxD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Officer's Bunk" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/bridgebunks) "sxE" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -65798,10 +65967,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"sxS" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "sxW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -65813,12 +65978,30 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"syj" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 +"syf" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -25 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/upper/stern_hallway) +"syo" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "syH" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -65828,13 +66011,6 @@ }, /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" - }, -/area/almayer/hallways/upper/stern_hallway) "szf" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -65849,6 +66025,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"szs" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "szE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -65886,6 +66068,14 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) +"szS" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/p_bow) "szU" = ( /obj/structure/toilet{ dir = 8 @@ -65915,32 +66105,18 @@ icon_state = "orange" }, /area/almayer/engineering/ce_room) -"sAD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"sAS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "sBg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"sBK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, +"sBD" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/upper/s_bow) "sBL" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/light, @@ -65948,20 +66124,30 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"sBY" = ( -/obj/item/tool/wet_sign, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"sCg" = ( +"sBP" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"sCi" = ( +/obj/structure/machinery/pipedispenser/orderable, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) +"sCs" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "sCA" = ( /obj/structure/bed/chair/comfy/delta{ dir = 4 @@ -65999,12 +66185,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"sCT" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_f_s) "sCV" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -66018,47 +66198,20 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"sCW" = ( -/obj/effect/decal/cleanable/cobweb, -/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/stern_hallway) "sDu" = ( /obj/item/clothing/under/marine/dress, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"sDx" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/vehiclehangar) +"sDv" = ( +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "sDA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy/charlie{ @@ -66075,6 +66228,11 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) +"sDE" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "sDM" = ( /turf/open/floor/almayer{ dir = 9; @@ -66101,15 +66259,6 @@ icon_state = "cargo" }, /area/almayer/squads/bravo) -"sEg" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "sEi" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -66155,6 +66304,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"sEs" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "sEt" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, @@ -66163,13 +66320,37 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"sEu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"sEz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sEC" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"sEE" = ( +/obj/structure/prop/invuln/joey, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/lower/l_m_s) +"sEJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "sEK" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -66197,15 +66378,13 @@ icon_state = "plate" }, /area/almayer/command/cic) -"sER" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"sEW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/stern) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "sEZ" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 26 @@ -66227,6 +66406,12 @@ icon_state = "cargo" }, /area/almayer/shipboard/starboard_missiles) +"sFo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/upper/stern_hallway) "sFC" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -66236,15 +66421,44 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/main_office) +"sFO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "sGh" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/lifeboat) -"sGw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_s) -"sGK" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +"sGm" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"sGD" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/storage/firstaid/rad, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"sGJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "sGL" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -66261,12 +66475,17 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/port) -"sGQ" = ( -/obj/structure/closet/emcloset, +"sGP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/lower/s_bow) +/area/almayer/hallways/upper/stern_hallway) +"sGQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "sGU" = ( /obj/structure/mirror, /turf/closed/wall/almayer, @@ -66277,10 +66496,6 @@ icon_state = "silverfull" }, /area/almayer/command/airoom) -"sHe" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "sHm" = ( /obj/structure/disposalpipe/up/almayer{ id = "almayerlink_OT_req" @@ -66346,10 +66561,11 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"sIu" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +"sIw" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "sIA" = ( /obj/structure/sign/poster{ desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; @@ -66368,30 +66584,21 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) -"sIR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) "sIU" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/hallways/hangar) -"sJa" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = -26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "sJm" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) +"sJo" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "sJC" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -66461,13 +66668,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"sLk" = ( -/obj/structure/ladder{ - height = 2; - id = "cicladder4" - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) "sLo" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -66478,15 +66678,15 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"sLx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"sLs" = ( +/obj/structure/largecrate/supply, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/upper/s_bow) "sLA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -66494,12 +66694,19 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"sLX" = ( +"sLJ" = ( +/obj/docking_port/stationary/escape_pod/cl, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) +"sMe" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_m_s) "sMu" = ( /obj/item/trash/uscm_mre, /obj/structure/bed/chair/comfy/charlie{ @@ -66509,6 +66716,15 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) +"sMC" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "sMM" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -66527,6 +66743,18 @@ icon_state = "orange" }, /area/almayer/squads/bravo) +"sNu" = ( +/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/aft_hallway) "sNz" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -66535,22 +66763,19 @@ dir = 1 }, /area/almayer/medical/containment/cell) +"sNC" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"sNF" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_p) "sNI" = ( /obj/structure/bed/chair/comfy/delta, /turf/open/floor/almayer{ icon_state = "bluefull" }, /area/almayer/living/briefing) -"sNL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "sNO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -66561,12 +66786,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"sNP" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "sNR" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell/cl) @@ -66580,22 +66799,9 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"sOr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_s) +"sOq" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_bow) "sOt" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/status_display{ @@ -66639,22 +66845,17 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"sOD" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"sOL" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"sOH" = ( +/obj/structure/ladder{ + height = 1; + id = "ForeStarboardMaint" }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/maint/upper/mess) +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/s_bow) "sOZ" = ( /obj/structure/sign/safety/ammunition{ pixel_y = 32 @@ -66683,6 +66884,14 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) +"sPI" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) "sPJ" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -66693,23 +66902,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"sPY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/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/aft_hallway) "sQF" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -66721,20 +66913,14 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"sRM" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"sRk" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 2; + pixel_y = 3 }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) -"sRP" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "sSa" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ dir = 2; @@ -66762,6 +66948,19 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) +"sSu" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "sSC" = ( /turf/open/floor/almayer{ dir = 6; @@ -66792,6 +66991,12 @@ icon_state = "plate" }, /area/almayer/command/cic) +"sSP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "sTd" = ( /turf/open/floor/almayer{ dir = 4; @@ -66817,13 +67022,9 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"sTU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +"sTT" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_s) "sTV" = ( /obj/structure/machinery/power/apc/almayer/hardened{ cell_type = /obj/item/cell/hyper; @@ -66831,6 +67032,15 @@ }, /turf/open/floor/plating, /area/almayer/command/airoom) +"sTX" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "sUg" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -66841,12 +67051,6 @@ icon_state = "silverfull" }, /area/almayer/shipboard/brig/cic_hallway) -"sUi" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_a_p) "sUj" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -66858,14 +67062,20 @@ }, /area/almayer/squads/delta) "sUk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/almayer/hallways/lower/port_aft_hallway) +"sUq" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "sUs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -66876,12 +67086,36 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"sUA" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "sUE" = ( /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer{ icon_state = "bluefull" }, /area/almayer/command/cichallway) +"sUH" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"sUI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "sUO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -66905,15 +67139,22 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"sVA" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"sVp" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sVv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_m_s) "sVT" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, @@ -66934,23 +67175,31 @@ "sVV" = ( /turf/open/floor/almayer, /area/almayer/hallways/upper/starboard) -"sWp" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +"sWb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) -"sWw" = ( +/area/almayer/maint/upper/u_m_s) +"sWn" = ( +/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/stern_hallway) +"sWy" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "sWC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -66990,12 +67239,14 @@ icon_state = "dark_sterile" }, /area/almayer/medical/containment) -"sXq" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +"sXg" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/upper/u_a_s) "sXt" = ( /obj/structure/machinery/cm_vending/clothing/tl/alpha{ density = 0; @@ -67011,6 +67262,22 @@ /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) +"sXy" = ( +/obj/item/device/camera{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/camera_film, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) "sXB" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -67024,15 +67291,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"sXC" = ( -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "sXE" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Auxiliary Support Officer's Room" @@ -67041,6 +67299,21 @@ icon_state = "test_floor4" }, /area/almayer/living/auxiliary_officer_office) +"sXG" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) +"sXJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_umbilical) "sXQ" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/appleseed, @@ -67052,6 +67325,17 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) +"sYe" = ( +/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/hull/upper/u_m_s) "sYh" = ( /turf/open/floor/almayer{ dir = 1; @@ -67077,28 +67361,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"sYj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"sYr" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_umbilical) "sYw" = ( /obj/structure/platform{ dir = 8 @@ -67155,18 +67417,6 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"sZc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"sZe" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "sZq" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; @@ -67227,6 +67477,33 @@ icon_state = "blue" }, /area/almayer/living/port_emb) +"sZN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sZQ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"sZW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) "tab" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/flashbangs{ @@ -67283,9 +67560,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/perma) -"taw" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_s) "taH" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ id = "Containment Cell 2"; @@ -67314,6 +67588,11 @@ icon_state = "test_floor4" }, /area/almayer/medical/containment/cell) +"taM" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) "taV" = ( /obj/effect/projector{ name = "Almayer_Down1"; @@ -67325,43 +67604,66 @@ icon_state = "plate" }, /area/almayer/hallways/upper/starboard) -"tbD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"tbd" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) -"tbF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, /turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/hallways/upper/aft_hallway) -"tcd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 3 + icon_state = "sterile_green_side" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tcm" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/medical/lockerroom) +"tbz" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) -"tcO" = ( -/turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_a_p) -"tcS" = ( +"tbG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) +"tcn" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tcq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) +"tcP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"tcY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/constr) "tcZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -67398,14 +67700,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"tdi" = ( -/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/lower/starboard_midship_hallway) "tdv" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/terminal{ @@ -67446,27 +67740,35 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) -"tdH" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/item/bedsheet/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "tdI" = ( /turf/open/floor/almayer{ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"tdN" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "tdT" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/open/floor/carpet, /area/almayer/command/cichallway) +"tdU" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "teg" = ( /obj/structure/bed/chair{ dir = 8 @@ -67484,14 +67786,13 @@ }, /area/almayer/lifeboat_pumps/north1) "ter" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_f_p) "teu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/shotgun/pump{ @@ -67499,10 +67800,6 @@ }, /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_m_s) "tez" = ( /obj/effect/landmark/ert_spawns/distress_cryo, /obj/effect/landmark/late_join, @@ -67517,6 +67814,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"teI" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_p) "teY" = ( /obj/structure/machinery/light{ dir = 1 @@ -67538,6 +67838,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) +"tfj" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/plasticflaps, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) "tfH" = ( /obj/structure/machinery/light/containment, /obj/effect/decal/warning_stripes{ @@ -67547,10 +67857,6 @@ dir = 1 }, /area/almayer/medical/containment/cell) -"tfQ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "tge" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -67562,37 +67868,16 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"tgm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"tgh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"tgy" = ( -/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"tgz" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 + icon_state = "E"; + pixel_x = 2 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_f_p) "tgK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -67602,6 +67887,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"tgP" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "tgV" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -67635,6 +67929,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"tht" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "thv" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -67657,6 +67957,12 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) +"thK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "thL" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) @@ -67685,12 +67991,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"tih" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "tii" = ( /obj/structure/machinery/firealarm{ pixel_x = 6; @@ -67772,31 +68072,14 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"tiX" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"tiY" = ( -/obj/structure/closet, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/newspaper, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/structure/machinery/light/small{ - dir = 8 +"tje" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_p) -"tiZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) "tjj" = ( /turf/open/floor/almayer{ @@ -67822,40 +68105,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/hull/upper/u_m_s) -"tjH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/headset/almayer/mt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"tjO" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/maint/hull/lower/l_m_s) -"tkg" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "tkn" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, @@ -67892,6 +68141,16 @@ icon_state = "redfull" }, /area/almayer/hallways/upper/starboard) +"tkX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tla" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/s_bow) "tld" = ( /obj/structure/machinery/prop/almayer/computer{ dir = 8; @@ -67947,6 +68206,13 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"tlX" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "tmg" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/hypospray, @@ -67958,22 +68224,27 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"tml" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"tms" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "officers_mess"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;30" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) "tmB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"tmE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "tmH" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/camera/autoname/almayer{ @@ -68007,38 +68278,44 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"tmQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"tmS" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"tmX" = ( -/obj/effect/landmark/start/professor, -/obj/effect/landmark/late_join/cmo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) "tnb" = ( /obj/structure/bed/chair/comfy/black, /turf/open/floor/almayer{ icon_state = "redfull" }, /area/almayer/shipboard/port_missiles) -"tne" = ( -/obj/structure/machinery/door_control/cl/quarter/backdoor{ - pixel_x = -25; - pixel_y = 23 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "tni" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) +"tnD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"tnS" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"tnT" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) "tnY" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -68050,9 +68327,19 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) -"tob" = ( +"toe" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"toh" = ( +/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_a_p) "tos" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -68064,12 +68351,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/engine_core) -"tot" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "tou" = ( /obj/structure/bed/chair{ dir = 4 @@ -68085,17 +68366,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"toD" = ( -/obj/structure/largecrate/supply/generator, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - layer = 2.9; - pixel_x = -10; - pixel_y = 3 +"toz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/lower/vehiclehangar) "toO" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/engineering_construction, @@ -68116,20 +68395,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"toQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "tpa" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/window/reinforced{ @@ -68146,37 +68411,21 @@ }, /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 +"tpk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/p_stern) "tpn" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/evidence_storage) "tpB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" - }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "silver" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/aft_hallway) "tpD" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -68187,29 +68436,45 @@ icon_state = "silver" }, /area/almayer/living/bridgebunks) -"tpG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"tpQ" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool, +/obj/item/tool/screwdriver{ + icon_state = "screwdriver7" }, +/obj/item/tool/crowbar/red, +/obj/item/book/manual/engineering_hacking, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) -"tpR" = ( +/area/almayer/maint/hull/upper/u_a_p) +"tqp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tqf" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"tqs" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tqt" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) "tqE" = ( /obj/structure/machinery/light{ dir = 8 @@ -68220,6 +68485,9 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"tqG" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "tqO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -68232,47 +68500,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"tqQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"tqV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"tra" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = null; - req_one_access_txt = "19;34;30" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) "trb" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -68349,9 +68576,17 @@ /obj/item/clothing/suit/chef/classic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"tsr" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/upper/mess) +"tsc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "tst" = ( /obj/structure/machinery/cryopod/right, /obj/effect/decal/warning_stripes{ @@ -68392,10 +68627,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/upper_medical) -"tsE" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +"tsI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "tsM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -68428,24 +68665,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/hull/upper/u_a_s) -"ttB" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"ttD" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "ttE" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -68526,45 +68745,9 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"tup" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "tuA" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/port_missiles) -"tuC" = ( -/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 = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"tuJ" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/tool/shovel/spade{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "tuN" = ( /turf/open/floor/almayer{ icon_state = "orange" @@ -68577,26 +68760,23 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) -"tvl" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +"tvc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tvr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"tvt" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/lower/starboard_midship_hallway) +"tvm" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "tvw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -68605,13 +68785,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"tvA" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "tvM" = ( /obj/structure/bed/chair{ dir = 1 @@ -68643,21 +68816,16 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"tvS" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) -"twp" = ( -/obj/structure/ladder{ - height = 1; - id = "AftStarboardMaint" +"twi" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "twq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/hand_labeler{ @@ -68702,13 +68870,28 @@ icon_state = "cargo" }, /area/almayer/command/cic) -"twQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"twL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/one{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"twO" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_a_s) "twW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -68723,47 +68906,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"txd" = ( -/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/stern_hallway) -"txp" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"txy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"txE" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"txH" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "txO" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 @@ -68778,17 +68920,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"txS" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) "tyb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -68803,6 +68934,9 @@ dir = 4 }, /area/almayer/medical/containment/cell) +"tyH" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "tyK" = ( /obj/effect/spawner/random/toolbox, /obj/structure/machinery/light{ @@ -68813,6 +68947,13 @@ icon_state = "cargo_arrow" }, /area/almayer/shipboard/starboard_missiles) +"tyY" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "tzd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -68820,28 +68961,34 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) +"tze" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) "tzw" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"tzx" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"tzC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/medical/lockerroom) -"tzF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_m_p) "tzL" = ( /obj/structure/sign/safety/waterhazard{ pixel_x = 8; @@ -68858,14 +69005,10 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"tAb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +"tzZ" = ( +/obj/effect/landmark/start/reporter, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "tAq" = ( /obj/structure/surface/table/reinforced/black, /obj/item/clothing/mask/breath{ @@ -68880,6 +69023,12 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"tAH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "tAL" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ @@ -68909,13 +69058,18 @@ icon_state = "cargo" }, /area/almayer/medical/lower_medical_medbay) -"tAW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"tBd" = ( +/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/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/starboard_aft_hallway) +"tBp" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "tBq" = ( /obj/item/tool/crowbar, /turf/open/floor/plating/plating_catwalk, @@ -68927,42 +69081,18 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"tBU" = ( -/obj/structure/platform, -/obj/structure/largecrate/random/case/double{ - layer = 2.98 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"tBY" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +"tCi" = ( /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/mess) -"tCd" = ( -/obj/item/folder/red{ - desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; - name = "folder: 28"; - pixel_x = -4; - pixel_y = 5 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/crayon{ - pixel_x = 9; - pixel_y = -2 + icon_state = "test_floor4" }, +/area/almayer/maint/hull/upper/u_f_s) +"tCv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/lower/port_umbilical) "tCx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/sign/safety/maint{ @@ -68981,23 +69111,10 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/port) -"tCC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/maint/hull/upper/u_a_s) -"tCD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"tCM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" + icon_state = "test_floor4" }, /area/almayer/hallways/upper/aft_hallway) "tCT" = ( @@ -69008,6 +69125,17 @@ icon_state = "plate" }, /area/almayer/command/cic) +"tDq" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"tDw" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/obj/structure/largecrate/supply/ammo/pistol/half{ + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "tDZ" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -69041,15 +69169,27 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"tEu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +"tEk" = ( +/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/hull/lower/l_m_s) +/area/almayer/maint/upper/u_m_p) +"tEo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "tEB" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -69091,11 +69231,16 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"tFQ" = ( +"tFH" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, /turf/open/floor/almayer{ - icon_state = "orange" + dir = 1; + icon_state = "green" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "tFS" = ( /obj/structure/machinery/computer/supplycomp, /obj/structure/sign/safety/terminal{ @@ -69160,47 +69305,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"tGH" = ( -/obj/structure/sign/safety/restrictedarea, -/obj/structure/sign/safety/security{ - pixel_x = 15 - }, -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) -"tGS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"tGT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/photocopier{ - anchored = 0 - }, -/obj/structure/sign/poster/art{ - pixel_y = 32 - }, -/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/stern_hallway) -"tHk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "tHr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/status_display{ @@ -69227,12 +69331,27 @@ icon_state = "orangecorner" }, /area/almayer/living/briefing) -"tHF" = ( -/obj/structure/machinery/light, +"tHw" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/lower/stern) +"tHA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "tHQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -69260,15 +69379,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"tIl" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) "tIp" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Dorms" @@ -69284,12 +69394,12 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) -"tIF" = ( -/obj/structure/largecrate/random/barrel/green, +"tIE" = ( +/obj/structure/girder/displaced, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_a_p) "tIK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -69302,13 +69412,15 @@ /turf/open/floor/wood/ship, /area/almayer/living/basketball) "tIN" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 16; + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "tIQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -69324,17 +69436,10 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"tIX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) +"tJa" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "tJi" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/paper_bin/uscm, @@ -69343,24 +69448,33 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"tJq" = ( -/obj/structure/machinery/light/small{ +"tJn" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"tJw" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_midship_hallway) "tJz" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"tJH" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) "tJM" = ( /obj/structure/toilet{ pixel_y = 13 @@ -69422,6 +69536,25 @@ icon_state = "cargo" }, /area/almayer/living/bridgebunks) +"tKu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) +"tKv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "tLa" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -69473,17 +69606,41 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"tLZ" = ( +"tLj" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_umbilical) +"tLA" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/squads/req) +"tLD" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/item/bedsheet/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "tMc" = ( /obj/structure/machinery/chem_master/industry_mixer, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"tMu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "tMH" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ name = "\improper Warden's Office"; @@ -69506,22 +69663,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/chief_mp_office) -"tMT" = ( -/obj/item/tool/weldingtool, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) -"tMU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "tMW" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -69531,19 +69672,31 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"tNw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/almayer{ - icon_state = "plate" +"tNf" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/s_bow) +"tNm" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" }, -/area/almayer/maint/hull/upper/u_m_p) -"tNB" = ( -/obj/structure/bed/sofa/south/grey/left, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/vehiclehangar) +"tNy" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"tNE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "tNP" = ( /obj/structure/sign/safety/debark_lounge{ pixel_x = 15; @@ -69562,6 +69715,12 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) +"tOp" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "tOr" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -69590,52 +69749,12 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"tON" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) "tOW" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "green" }, /area/almayer/living/grunt_rnr) -"tPc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"tPj" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - access_modified = 1; - name = "\improper Requisition's Office"; - req_one_access = null; - req_one_access_txt = "1;26" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) "tPm" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -69649,20 +69768,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/aft_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/aft_hallway) "tPI" = ( /obj/structure/bed/chair{ dir = 4 @@ -69678,16 +69783,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"tQe" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "tQi" = ( /obj/effect/landmark/start/warrant, /obj/effect/decal/warning_stripes{ @@ -69705,30 +69800,44 @@ icon_state = "sterile_green_side" }, /area/almayer/shipboard/brig/surgery) -"tQA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - dir = 1 +"tQw" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/lower/l_a_p) "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 +"tQM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = -30 }, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "dark_sterile" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/command/corporateliaison) +"tQN" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/p_bow) "tQV" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/south1) +"tRd" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "tRs" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, @@ -69749,14 +69858,11 @@ }, /area/almayer/living/basketball) "tSm" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -16 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "tSp" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -69779,15 +69885,15 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"tSY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"tST" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/repair_bay) "tTk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -69810,9 +69916,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"tTC" = ( -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "tTD" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/uscm_mre, @@ -69826,13 +69929,6 @@ icon_state = "kitchen" }, /area/almayer/living/captain_mess) -"tTG" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "tUh" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -69885,12 +69981,13 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) -"tVn" = ( -/obj/structure/platform{ - dir = 1 +"tVl" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_f_p) "tVq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -69900,84 +69997,38 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha) -"tVs" = ( -/obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) -"tVx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"tVZ" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +"tVJ" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/area/almayer/hallways/lower/repair_bay) -"tWd" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tWf" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 1; + pixel_y = -1 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_f_p) "tWi" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"tWl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Disposals" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_a_p) -"tWp" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"tWF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/mess) "tWL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/lower/repair_bay) -"tWM" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "tWY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -70034,11 +70085,20 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) -"tXo" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" +"tXA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "tXM" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -70082,6 +70142,22 @@ icon_state = "plate" }, /area/almayer/living/port_emb) +"tXX" = ( +/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/hull/upper/u_m_p) +"tYh" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "tYi" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -70093,15 +70169,9 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"tYr" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) +"tYu" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hallways/lower/vehiclehangar) "tYw" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft"; @@ -70123,12 +70193,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"tYV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "tYX" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" @@ -70157,23 +70221,16 @@ 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/hull/upper/u_a_s) -"tZP" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/structure/machinery/light/small{ - dir = 1 +"tZO" = ( +/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 = "cargo" + icon_state = "sterile_green_side" }, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/medical/lower_medical_medbay) "tZZ" = ( /obj/structure/machinery/cryopod, /obj/effect/decal/warning_stripes{ @@ -70196,12 +70253,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"uag" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/mess) "uah" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -70212,6 +70263,13 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"uai" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "hypersleep curtain" + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "ual" = ( /obj/structure/sink{ pixel_y = 24 @@ -70235,15 +70293,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"uaA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) -"uaG" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) "uaI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/processor{ @@ -70254,6 +70303,9 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"uaR" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "uaU" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -70279,6 +70331,19 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"ubB" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig Maintenance" + }, +/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/p_bow) "ubI" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random{ @@ -70292,27 +70357,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"ubQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/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/aft_hallway) "ucp" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -70323,14 +70367,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"ucy" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_p) "ucz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/overwatch/almayer{ @@ -70353,23 +70389,12 @@ icon_state = "plate" }, /area/almayer/command/cic) -"udf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 +"ucU" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/lower/p_bow) "udi" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -70403,6 +70428,13 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"udH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "udK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -70458,12 +70490,12 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"uew" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"ueq" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/port_midship_hallway) "ueG" = ( /obj/item/bedsheet/orange, /obj/structure/bed{ @@ -70477,6 +70509,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) +"ueH" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "ueJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -70488,6 +70526,15 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"ueX" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_umbilical) "ueZ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ @@ -70528,12 +70575,38 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"ugj" = ( +"ufM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + icon_state = "orangecorner" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/upper/stern_hallway) +"ugq" = ( +/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/aft_hallway) +"ugt" = ( +/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) "ugu" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer, @@ -70554,21 +70627,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"ugZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) -"uhh" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "uhl" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -70579,22 +70637,24 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"uhq" = ( -/obj/structure/disposalpipe/segment{ +"uhn" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" +/area/almayer/maint/hull/upper/u_a_p) +"uhv" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "redfull" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/upper/stern_hallway) "uhE" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, /turf/open/floor/plating/plating_catwalk, @@ -70613,6 +70673,13 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) +"uhS" = ( +/obj/structure/sign/safety/hazard{ + desc = "A sign that warns of a hazardous environment nearby"; + name = "\improper Warning: Hazardous Environment" + }, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) "uhW" = ( /turf/open/floor/almayer{ dir = 1; @@ -70640,12 +70707,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"uiK" = ( -/obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "uiR" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -70674,12 +70735,23 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"ujf" = ( -/obj/structure/largecrate/random/barrel/yellow, +"ujc" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_m_s) +"ujr" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) "ujz" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -70698,19 +70770,15 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"uky" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"ukk" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) -"ukC" = ( -/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/upper/u_m_s) "ukP" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer{ @@ -70757,22 +70825,61 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"ulH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"ulD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/hallways/upper/aft_hallway) +"ulG" = ( +/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/hull/upper/u_m_s) +"ulI" = ( +/obj/structure/ladder{ + height = 1; + id = "AftPortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_p) "ulZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, /area/almayer/living/offices) +"umb" = ( +/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/lower/port_aft_hallway) +"umf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) "umh" = ( /obj/structure/platform_decoration{ dir = 8 @@ -70782,15 +70889,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"umk" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "umm" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light/small, @@ -70798,6 +70896,14 @@ icon_state = "rasputin15" }, /area/almayer/powered/agent) +"umn" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "umy" = ( /obj/structure/machinery/light{ dir = 1 @@ -70807,22 +70913,6 @@ 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/aft_hallway) -"umI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) "umS" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -70856,6 +70946,12 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) +"unm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "uns" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/carrotseed, @@ -70875,13 +70971,30 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"unQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/tool, +"unA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/lower/starboard_midship_hallway) +"unI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "unT" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/crowbar, @@ -70893,16 +71006,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 @@ -70924,18 +71027,30 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"uoj" = ( -/obj/item/tool/pen, +"uos" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/lower/starboard_aft_hallway) "uoA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) +"uoF" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "uoH" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -70945,13 +71060,34 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"uoO" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +"uoM" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/upper/aft_hallway) +"upv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) +"upz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "upM" = ( /obj/structure/machinery/light{ dir = 4 @@ -70966,6 +71102,13 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) +"upP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "upR" = ( /obj/structure/machinery/light{ dir = 1 @@ -70979,10 +71122,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"upS" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "uqd" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/warning_stripes{ @@ -71013,13 +71152,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"uqg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "uqh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71059,60 +71191,42 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"uqJ" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/maint/hull/upper/u_a_s) -"urg" = ( -/obj/docking_port/stationary/escape_pod/east, +"uqW" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood, /turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) -"urk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" +/area/almayer/maint/lower/constr) +"uqY" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/area/almayer/hallways/lower/starboard_umbilical) -"urs" = ( /turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"ury" = ( -/obj/structure/bed/chair{ - dir = 8 + allow_construction = 0 }, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ +/area/almayer/hallways/lower/port_midship_hallway) +"urv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer{ - 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 + icon_state = "test_floor4" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/area/almayer/hallways/lower/starboard_aft_hallway) +"urD" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/lower/l_f_p) "urM" = ( /obj/structure/machinery/light{ dir = 8 @@ -71127,6 +71241,19 @@ /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) +"urZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"usl" = ( +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) "usm" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/waterhazard{ @@ -71137,19 +71264,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"usq" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/panic) "usy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -71161,6 +71275,13 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"usF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "usL" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -71211,15 +71332,6 @@ 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/hull/upper/u_a_s) "utK" = ( /obj/structure/machinery/light{ dir = 4 @@ -71294,12 +71406,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower) -"uuI" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_midship_hallway) "uuR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -71323,46 +71429,21 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"uuT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) "uvh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"uvp" = ( -/obj/structure/largecrate/supply, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ 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/stern_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "uvt" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -71381,6 +71462,23 @@ icon_state = "orangecorner" }, /area/almayer/squads/bravo) +"uvB" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/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 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "uvP" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -71415,10 +71513,30 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"uwf" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +"uwi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"uwj" = ( +/obj/item/stack/cable_coil{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/trash/pistachios, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/lower/repair_bay) +"uwk" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) "uws" = ( /obj/structure/machinery/light{ dir = 4 @@ -71439,6 +71557,12 @@ "uwv" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room/notunnel) +"uwJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "uwN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71483,18 +71607,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"uxb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"uxl" = ( -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "uxp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -71511,12 +71623,21 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"uxs" = ( -/obj/structure/machinery/pipedispenser/orderable, +"uxx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"uxy" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/lower/port_midship_hallway) "uxC" = ( /obj/structure/machinery/light{ dir = 4 @@ -71550,6 +71671,15 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"uyb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "uyd" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -71579,13 +71709,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/chemistry) -"uzv" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"uyK" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/upper/u_f_p) +"uyV" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_a_p) "uzy" = ( /obj/item/reagent_container/glass/bucket, /obj/effect/decal/cleanable/blood/oil, @@ -71606,15 +71742,6 @@ }, /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/aft_hallway) "uAj" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, @@ -71633,6 +71760,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"uAx" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "uAC" = ( /obj/item/bedsheet/purple{ layer = 3.2 @@ -71677,6 +71810,10 @@ /obj/item/toy/plush/farwa, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) +"uAN" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "uAW" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -71695,37 +71832,20 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"uBj" = ( +"uBE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uBx" = ( -/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 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/area/almayer/maint/hull/lower/l_a_s) +"uBI" = ( +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/lower/port_fore_hallway) "uBM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -71754,6 +71874,21 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"uBS" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"uBX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) "uCh" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/sign/safety/water{ @@ -71765,27 +71900,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"uCt" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uCw" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "uCM" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -71804,12 +71918,13 @@ icon_state = "test_floor4" }, /area/almayer/squads/charlie) -"uCR" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 +"uCU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "uCW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -71817,9 +71932,20 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"uDg" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_bow) +"uDl" = ( +/obj/structure/closet, +/obj/item/stack/sheet/glass/large_stack, +/obj/item/device/lightreplacer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/stack/rods{ + amount = 40 + }, +/obj/item/tool/weldingtool, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) "uDn" = ( /obj/structure/ladder{ height = 1; @@ -71837,6 +71963,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lockerroom) +"uDT" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "uDW" = ( /obj/structure/machinery/cm_vending/clothing/tl/delta{ density = 0; @@ -71846,36 +71985,15 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"uEO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"uES" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/recharge_station{ - layer = 2.9 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +"uFb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Port Viewing Room" }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/hull/upper/u_f_p) "uFd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -71906,12 +72024,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) -"uFp" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "uFq" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -71922,11 +72034,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) +"uFE" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/head/helmet/marine/tech/tanker, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "uFH" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, /turf/open/floor/almayer, /area/almayer/living/briefing) +"uFK" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "uGc" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /obj/structure/sign/safety/hazard{ @@ -71944,18 +72072,19 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"uGf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"uGy" = ( +/obj/structure/ladder{ + height = 2; + id = "AftPortMaint" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"uGI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) "uGN" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -71966,54 +72095,54 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"uGU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"uHk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 +"uHi" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/hallways/lower/port_fore_hallway) "uHr" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"uHT" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"uHZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic/press{ + dir = 1; + name = "\improper Combat Correspondent Room" }, -/area/almayer/maint/lower/s_bow) -"uIa" = ( /turf/open/floor/almayer{ - icon_state = "greencorner" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/command/combat_correspondent) "uIv" = ( /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"uIw" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_s) "uIA" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"uIF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "uII" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -72034,19 +72163,24 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha_bravo_shared) -"uJb" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +"uIX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uIZ" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32; + pixel_y = -8 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/lower/l_f_s) "uJk" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer4" @@ -72055,6 +72189,25 @@ icon_state = "outerhull_dir" }, /area/space) +"uJr" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_y = -21; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "uJs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -72064,13 +72217,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) -"uJM" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +"uJP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) +"uJT" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "uJU" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -72105,11 +72263,13 @@ }, /area/almayer/living/gym) "uKl" = ( -/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_s) "uKv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/multitool{ @@ -72120,12 +72280,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"uKH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "uKV" = ( /obj/structure/sign/safety/storage{ pixel_x = 32; @@ -72141,26 +72295,15 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"uLG" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." - }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2, -/obj/item/reagent_container/food/snacks/mre_pack/xmas1, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3, +"uLs" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_stern) +/area/almayer/hallways/lower/starboard_aft_hallway) "uMc" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/starboard) -"uMf" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) "uMj" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -72197,24 +72340,18 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"uNf" = ( -/obj/structure/sign/safety/conference_room{ - pixel_y = 32 +"uNd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/upper/u_f_s) "uNg" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/living/bridgebunks) -"uNp" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "uNq" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light{ @@ -72229,10 +72366,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"uNz" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "uNB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -72254,17 +72387,14 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"uNQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"uNO" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "uNV" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -72274,14 +72404,6 @@ "uOi" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/south2) -"uOE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "uOJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ @@ -72294,15 +72416,18 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"uPE" = ( +"uPB" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"uPN" = ( -/obj/item/tool/wirecutters/clippers, +/area/almayer/hallways/lower/port_fore_hallway) +"uPD" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/u_m_p) "uPP" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -72313,13 +72438,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower) -"uPQ" = ( -/obj/item/weapon/dart/green, -/obj/structure/dartboard{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "uPW" = ( /obj/structure/bed/chair{ dir = 4 @@ -72328,15 +72446,19 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"uPX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"uQg" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"uQi" = ( -/turf/open/floor/almayer{ - icon_state = "green" +/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/aft_hallway) "uQm" = ( @@ -72357,6 +72479,31 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"uQp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_stern) +"uQE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uRe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/stern_hallway) +"uRh" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "uRo" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -72389,12 +72536,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"uRD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "uRM" = ( /obj/structure/bed{ can_buckle = 0 @@ -72422,14 +72563,6 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"uRR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/s_bow) "uRY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -72463,16 +72596,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"uSI" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "uSS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/lockerroom) -"uSU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "uSW" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -72487,31 +72620,13 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"uSZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, +"uTc" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"uTk" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"uTs" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/p_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "uTv" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -72520,13 +72635,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"uTE" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "uTN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, @@ -72534,16 +72642,10 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"uTP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) +"uTS" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "uTU" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -72574,6 +72676,10 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"uUa" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "uUe" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -72590,28 +72696,6 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/port) -"uUf" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -9; - pixel_y = -4 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_y = -2 - }, -/obj/item/reagent_container/pill/happy, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "uUi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -72664,6 +72748,10 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) +"uUD" = ( +/obj/structure/largecrate/supply/weapons/pistols, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "uVc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -72678,30 +72766,16 @@ 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/aft_hallway) "uVh" = ( /obj/structure/filingcabinet/seeds, /turf/open/floor/almayer{ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"uVp" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) +"uVi" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "uVv" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 1 @@ -72710,6 +72784,18 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"uVx" = ( +/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/hull/upper/u_a_s) "uVA" = ( /turf/open/floor/almayer{ dir = 4; @@ -72741,29 +72827,15 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"uVZ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "uWc" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"uWm" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) +"uWv" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/stairs) "uWV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -72813,16 +72885,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/engine_core) -"uXm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "uXL" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -72832,13 +72894,6 @@ icon_state = "tcomms" }, /area/almayer/engineering/upper_engineering/starboard) -"uXU" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "uYa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -72871,22 +72926,20 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"uYM" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +"uYP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) -"uZm" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/port_midship_hallway) +"uZb" = ( +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) "uZo" = ( /obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -72912,12 +72965,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"uZI" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/hallways/upper/aft_hallway) "uZV" = ( /obj/structure/reagent_dispensers/fueltank/gas/methane{ anchored = 1 @@ -72941,49 +72988,30 @@ icon_state = "test_floor4" }, /area/almayer/living/basketball) -"vaq" = ( -/obj/structure/disposalpipe/junction{ +"vag" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"vaM" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/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 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_y = 13 }, -/area/almayer/hallways/lower/starboard_umbilical) -"vaQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Medical Storage" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"vaA" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 10; + icon_state = "blue" }, -/area/almayer/medical/lower_medical_medbay) -"vaV" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/hallways/upper/aft_hallway) +"vaH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "vaZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -73005,16 +73033,23 @@ 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, +"vbk" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"vbq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" + }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "vbB" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) @@ -73034,6 +73069,12 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"vbJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "vbM" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -73077,18 +73118,25 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"vbZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"vcg" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/upper/s_bow) +"vcl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "vcm" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -30 @@ -73119,22 +73167,41 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"vcI" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vcL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vcO" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 1 }, /turf/open/floor/almayer{ - dir = 9; - icon_state = "red" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/shipboard/brig/armory) +"vdc" = ( +/obj/item/tool/wet_sign, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "vdl" = ( /obj/structure/window/reinforced/ultra{ pixel_y = -12 @@ -73147,6 +73214,22 @@ icon_state = "plating_striped" }, /area/almayer/shipboard/brig/execution) +"vdB" = ( +/obj/item/reagent_container/food/drinks/cans/souto, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/lower/repair_bay) +"vdI" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "vdL" = ( /obj/structure/sign/safety/reception{ pixel_x = -17; @@ -73182,26 +73265,20 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"vdT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"vef" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_f_p) "ven" = ( /obj/structure/bed/chair, /turf/open/floor/almayer{ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"veq" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "veu" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -73212,27 +73289,16 @@ 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 - }, +"veN" = ( +/obj/item/stool, +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/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/hull/upper/u_m_p) +/area/almayer/maint/upper/u_m_s) +"veX" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/panic) "vfa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -73245,6 +73311,33 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) +"vfc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vfn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/structure/janitorialcart, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) "vfo" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -73290,16 +73383,6 @@ dir = 1 }, /area/almayer/medical/containment/cell) -"vfS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "vgi" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, @@ -73381,6 +73464,12 @@ icon_state = "red" }, /area/almayer/command/lifeboat) +"vgN" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "vgO" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell) @@ -73397,6 +73486,31 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"vgY" = ( +/obj/structure/largecrate/random/case/double, +/obj/item/tool/wet_sign{ + pixel_y = 18 + }, +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vhb" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) "vhe" = ( /obj/structure/filingcabinet{ density = 0; @@ -73422,10 +73536,15 @@ /obj/structure/machinery/disposal, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"vhA" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +"vhM" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "vhR" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -73471,6 +73590,15 @@ icon_state = "plate" }, /area/almayer/medical/morgue) +"vij" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "vil" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -73548,6 +73676,25 @@ icon_state = "plate" }, /area/almayer/squads/bravo) +"viV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vja" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "vjb" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 @@ -73576,29 +73723,19 @@ icon_state = "plating" }, /area/almayer/shipboard/port_missiles) -"vjk" = ( +"vji" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /obj/structure/machinery/camera/autoname/almayer{ + dir = 1; name = "ship-grade camera" }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/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" + icon_state = "cargo" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/engineering/lower/engine_core) "vjv" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -73622,45 +73759,20 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"vjG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_umbilical) "vjK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"vjS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, +"vjL" = ( /obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/lower/constr) -"vjT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/lower/vehiclehangar) "vjW" = ( /obj/structure/reagent_dispensers/watertank{ anchored = 1 @@ -73695,27 +73807,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"vky" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/p_bow) -"vkI" = ( -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "vkM" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -73729,26 +73820,14 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/general_equipment) -"vkO" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass/large_stack, -/obj/item/device/lightreplacer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/stack/rods{ - amount = 40 - }, -/obj/item/tool/weldingtool, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) "vkQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_f_s) "vkR" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -73759,9 +73838,27 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"vkV" = ( -/obj/effect/landmark/start/liaison, +"vkW" = ( +/obj/structure/sink{ + pixel_y = 24 + }, /turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"vlf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/medical_science) +"vlj" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer{ + icon_state = "plate" + }, /area/almayer/maint/hull/upper/u_m_p) "vlk" = ( /obj/structure/closet/emcloset, @@ -73837,13 +73934,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/aft_hallway) "vlX" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /turf/open/floor/almayer{ @@ -73866,15 +73956,6 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) -"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/hull/upper/u_a_p) "vmE" = ( /turf/open/floor/almayer{ icon_state = "orangecorner" @@ -73913,12 +73994,35 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"vno" = ( +"vmZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vna" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/squads/req) +"vnj" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/device/taperecorder{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "vnD" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -73928,35 +74032,45 @@ icon_state = "plate" }, /area/almayer/living/gym) -"vnY" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"vnZ" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ +"vnE" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"vnU" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"vop" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "plate" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" +/area/almayer/maint/hull/upper/s_bow) +"voo" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "vor" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/prop/broken_arcade, +/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/aft_hallway) +"voU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;21" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/squads/req) "vpe" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ @@ -73968,10 +74082,11 @@ }, /area/almayer/engineering/lower/workshop/hangar) "vpf" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "vpn" = ( /turf/open/floor/almayer{ dir = 9; @@ -73989,22 +74104,15 @@ /obj/item/clothing/mask/cigarette/weed, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"vpI" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"vpT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 +"vpK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/hallways/lower/port_fore_hallway) "vpV" = ( /turf/open/floor/almayer{ dir = 10; @@ -74030,19 +74138,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/processing) -"vqz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) "vqC" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -74073,6 +74168,17 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"vqT" = ( +/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/aft_hallway) "vqW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -74112,6 +74218,10 @@ "vra" = ( /turf/closed/wall/almayer, /area/almayer/squads/charlie_delta_shared) +"vrb" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "vrx" = ( /obj/structure/machinery/status_display{ pixel_x = -32; @@ -74119,6 +74229,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"vrG" = ( +/obj/item/ammo_box/magazine/misc/mre/empty{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 11; + pixel_y = -3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) "vrI" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -74168,19 +74289,10 @@ icon_state = "bluecorner" }, /area/almayer/living/briefing) -"vrZ" = ( -/obj/structure/largecrate/machine/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"vsd" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_s) +"vsa" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) "vse" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -74190,32 +74302,10 @@ icon_state = "cargo" }, /area/almayer/living/offices) -"vsf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "vsh" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"vsi" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "vsz" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -74223,6 +74313,19 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"vsB" = ( +/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/aft_hallway) "vsF" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -74233,6 +74336,20 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"vsK" = ( +/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/aft_hallway) "vsM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/toxin{ @@ -74253,6 +74370,15 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"vtg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "silvercorner" + }, +/area/almayer/hallways/upper/aft_hallway) "vti" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -74276,6 +74402,19 @@ icon_state = "rasputin3" }, /area/almayer/powered/agent) +"vts" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/tool/shovel/spade{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "vtx" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bathroom" @@ -74301,12 +74440,33 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"vtJ" = ( -/obj/structure/closet/emcloset, +"vtH" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"vtL" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_f_p) +"vtV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"vtZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "vub" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) @@ -74315,6 +74475,27 @@ /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) +"vuw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + access_modified = 1; + dir = 2; + name = "\improper Requisitions Break Room"; + req_one_access_txt = "19;21" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) "vuA" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -74328,16 +74509,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/aft_hallway) "vuF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ access_modified = 1; @@ -74371,15 +74542,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"vuV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "vuZ" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -74389,6 +74551,10 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) +"vvj" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "vvp" = ( /obj/structure/pipes/vents/pump, /obj/structure/sign/safety/intercom{ @@ -74435,25 +74601,12 @@ }, /area/almayer/engineering/upper_engineering/starboard) "vvH" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"vvX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" - }, +/obj/structure/machinery/light, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 6; + icon_state = "orange" }, -/area/almayer/shipboard/panic) +/area/almayer/hallways/upper/stern_hallway) "vvY" = ( /obj/structure/sink{ dir = 1; @@ -74508,16 +74661,22 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) "vwJ" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/area/almayer/maint/hull/upper/u_m_p) +/obj/item/tool/soap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "vwU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_s) "vwV" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ dir = 4 @@ -74580,17 +74739,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"vxY" = ( -/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/lower/starboard_midship_hallway) "vyg" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data, @@ -74598,14 +74746,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"vyh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "vyi" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -74627,12 +74767,6 @@ icon_state = "cargo" }, /area/almayer/living/offices) -"vyr" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "vyu" = ( /obj/structure/bed/sofa/south/white/right, /turf/open/floor/almayer{ @@ -74640,9 +74774,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"vyB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) "vyH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -74652,13 +74783,27 @@ "vyI" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"vzi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 +"vyS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4; + pixel_y = -3 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"vyZ" = ( +/obj/structure/largecrate/guns/merc{ + name = "\improper dodgy crate" + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"vze" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) "vzj" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 @@ -74688,24 +74833,9 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"vzB" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "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_m_s) "vzP" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/cups, @@ -74725,17 +74855,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"vAg" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "vAq" = ( /obj/structure/bed/chair{ dir = 1 @@ -74745,20 +74864,24 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"vAx" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"vAu" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"vAz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_s) +"vAw" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/constr) +"vAB" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/s_bow) "vAE" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -74813,6 +74936,12 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"vBa" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "vBm" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/main_office) @@ -74828,10 +74957,6 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"vBC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "vBJ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen, @@ -74892,14 +75017,53 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"vCE" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +"vCB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) +"vCM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/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) "vCO" = ( /obj/effect/landmark/start/bridge, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) +"vCW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "vDa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -74908,53 +75072,35 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/hydroponics) -"vDh" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"vDo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vDk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/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_m_s) -"vDz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vDN" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"vDR" = ( +"vDK" = ( /obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, +/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/lower/vehiclehangar) +"vDZ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_m_s) "vEf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -74970,6 +75116,10 @@ /obj/effect/landmark/start/synthetic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) +"vEq" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "vEr" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -74981,15 +75131,20 @@ }, /area/almayer/medical/medical_science) "vEv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/lower/l_a_p) "vEx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -75013,10 +75168,28 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/almayer, /area/almayer/living/briefing) -"vEI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +"vEQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"vES" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "vEV" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -75027,6 +75200,18 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"vFa" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "vFn" = ( /obj/structure/machinery/light/small, /turf/open/floor/almayer{ @@ -75034,15 +75219,10 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) -"vFp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) +"vFr" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "vFv" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -75058,38 +75238,46 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) -"vFy" = ( +"vFB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "S" }, -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/p_bow) "vFH" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower) -"vFI" = ( -/obj/structure/largecrate/random/secure, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 +"vFS" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/normandy{ + layer = 3.5 }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 5 +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/offices/flight) +"vGt" = ( +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"vGw" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/upper/u_m_s) "vGA" = ( /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer{ @@ -75097,6 +75285,14 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"vGC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) "vGG" = ( /obj/structure/bed/chair/comfy/bravo, /turf/open/floor/almayer{ @@ -75112,6 +75308,13 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) +"vGV" = ( +/obj/structure/largecrate/supply, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) "vHa" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/ares_console{ @@ -75134,33 +75337,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"vHn" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_s) -"vHp" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/prop/magazine/boots/n160{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/structure/transmitter/rotary{ - name = "Flight Deck Telephone"; - phone_category = "Almayer"; - phone_id = "Flight Deck"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) "vHq" = ( /obj/item/device/assembly/mousetrap/armed, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -75235,6 +75411,20 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) +"vHL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "vHO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -75258,6 +75448,15 @@ icon_state = "redfull" }, /area/almayer/command/cic) +"vHZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "vIf" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -75267,26 +75466,28 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"vIg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/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/aft_hallway) "vIu" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cichallway) +"vIE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"vJd" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "vJg" = ( /obj/structure/machinery/light/small, /turf/open/floor/almayer{ @@ -75304,10 +75505,41 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"vJR" = ( -/obj/structure/barricade/handrail, +"vJq" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"vJx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/hallways/lower/port_midship_hallway) +"vJJ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"vJO" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_f_s) "vJV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -75350,6 +75582,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"vKo" = ( +/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/hull/upper/u_a_p) "vKB" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, /obj/structure/machinery/light/small{ @@ -75357,12 +75599,61 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"vKI" = ( -/obj/structure/machinery/light{ - dir = 1 +"vKG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/spiderling_remains{ + pixel_x = 18; + pixel_y = -5 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/obj/effect/decal/cleanable/ash{ + pixel_x = 11; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"vKU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"vKV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) +"vLd" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/lungs/prosthetic, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"vLe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "vLg" = ( /obj/item/trash/uscm_mre, /obj/structure/bed/chair/comfy/charlie, @@ -75385,15 +75676,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/upper_medical) -"vLp" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "vLA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -75408,13 +75690,23 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie) -"vMb" = ( -/obj/item/stool{ - pixel_x = -15; - pixel_y = 6 +"vLO" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/lower/l_f_s) +"vLX" = ( +/obj/item/robot_parts/arm/l_arm, +/obj/item/robot_parts/leg/l_leg, +/obj/item/robot_parts/arm/r_arm, +/obj/item/robot_parts/leg/r_leg, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) "vMo" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_four) @@ -75422,15 +75714,39 @@ /obj/effect/landmark/start/otech, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"vMA" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"vMt" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/light{ +/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/aft_hallway) +"vMv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) +"vMw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_f_p) "vME" = ( /turf/open/floor/almayer{ dir = 9; @@ -75470,20 +75786,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"vMQ" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) -"vMU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) "vNp" = ( /obj/structure/sign/safety/three{ pixel_x = -17 @@ -75501,39 +75803,35 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) +"vNE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "vNW" = ( /turf/open/floor/almayer/uscm/directional{ dir = 9 }, /area/almayer/command/cic) +"vOb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "vOh" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"vOw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_m_s) "vOy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/medical_science) -"vOG" = ( -/obj/structure/largecrate/supply/ammo/m41a/half, -/obj/structure/largecrate/supply/ammo/pistol/half{ - pixel_y = 12 +"vOK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"vOM" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_p) "vON" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -75552,38 +75850,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/upper_medical) -"vOV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"vOY" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/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/maint/upper/mess) -"vOZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) "vPf" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -75657,15 +75923,6 @@ icon_state = "redfull" }, /area/almayer/engineering/lower/workshop/hangar) -"vPW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) "vQe" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down2"; @@ -75685,6 +75942,15 @@ icon_state = "silvercorner" }, /area/almayer/command/securestorage) +"vQo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "vQq" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, @@ -75721,6 +75987,18 @@ dir = 10 }, /area/almayer/command/cic) +"vRp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) "vRu" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -75735,16 +76013,22 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"vRJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Emergency Air Storage" +"vRF" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = 6 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) "vRR" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -75758,6 +76042,12 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"vRW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "vRX" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/medical_diagnostics_manual, @@ -75771,6 +76061,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/upper_medical) +"vSh" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/upper/aft_hallway) "vSl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -75793,21 +76089,12 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"vSr" = ( -/obj/structure/largecrate/random/case/double, -/obj/item/tool/wet_sign{ - pixel_y = 18 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 10 +"vSu" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/port_umbilical) "vSE" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/almayer{ @@ -75873,13 +76160,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) -"vTM" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "vTS" = ( /obj/structure/machinery/light{ pixel_x = 16 @@ -75910,16 +76190,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"vTX" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) "vUb" = ( /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, @@ -75939,33 +76209,28 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"vUJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"vUs" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/maint/hull/lower/l_a_p) -"vUO" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/lower/constr) "vUP" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cic_hallway) +"vUW" = ( +/obj/item/weapon/dart/green, +/obj/structure/dartboard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "vVb" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -76001,14 +76266,12 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"vVy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"vVD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/lower/l_m_s) "vVI" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 8; @@ -76028,40 +76291,29 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"vVY" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) -"vVZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 +"vWa" = ( +/obj/structure/mirror{ + pixel_x = 28 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/lower/port_umbilical) -"vWc" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/normandy{ - layer = 3.5 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/offices/flight) -"vWs" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "dark_sterile" }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/upper/u_a_s) +"vWb" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/upper/u_m_p) "vWt" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/beaker/large, @@ -76187,12 +76439,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"vXk" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) "vXo" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -76203,33 +76449,25 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower) -"vXv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10"; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"vXF" = ( +"vXr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + layer = 2.5; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) -"vYd" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"vXV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vYk" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_p) "vYm" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, @@ -76315,6 +76553,14 @@ "vZw" = ( /turf/open/floor/almayer/research/containment/floor2, /area/almayer/medical/containment/cell/cl) +"vZF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "vZU" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/power/apc/almayer{ @@ -76334,15 +76580,40 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"wac" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"vZX" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = null; + req_one_access_txt = "7;23;27;102" }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 10; + icon_state = "silver" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/hallways/lower/repair_bay) +"waa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"wad" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"wal" = ( +/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/aft_hallway) "wan" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/brown, @@ -76351,11 +76622,41 @@ icon_state = "green" }, /area/almayer/living/offices) +"wax" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "waD" = ( /turf/open/floor/almayer{ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_one) +"waG" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) +"waH" = ( +/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/aft_hallway) "waJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -76365,17 +76666,28 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"waV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"waS" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"waY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"wbm" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "wbu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname/almayer{ @@ -76386,18 +76698,6 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"wby" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "wbC" = ( /obj/structure/machinery/atm{ pixel_y = 32 @@ -76451,15 +76751,15 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_four) -"wbV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"wbT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "red" + icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/almayer/maint/hull/upper/u_f_p) "wbX" = ( /obj/structure/closet/secure_closet/cmdcabinet{ pixel_y = 24 @@ -76479,6 +76779,12 @@ icon_state = "redfull" }, /area/almayer/lifeboat_pumps/south2) +"wcs" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "wct" = ( /obj/structure/closet/radiation, /turf/open/floor/almayer{ @@ -76486,20 +76792,19 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"wcD" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +"wcx" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/hallways/lower/port_midship_hallway) -"wcJ" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "redfull" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/shipboard/panic) "wcN" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -76579,19 +76884,21 @@ /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) +"wdA" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stairs) "wdF" = ( /turf/open/floor/almayer{ allow_construction = 0 }, /area/almayer/shipboard/brig/processing) "wdG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_f_p) +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "wdI" = ( /turf/open/floor/almayer{ dir = 1; @@ -76606,18 +76913,15 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"wdQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"wdN" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"wdW" = ( -/obj/structure/machinery/light/small, +/obj/structure/machinery/power/reactor, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/engineering/lower/engine_core) "wed" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, @@ -76644,24 +76948,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/hydroponics) -"wer" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) -"wes" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "wex" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 8; @@ -76694,6 +76980,25 @@ icon_state = "cargo" }, /area/almayer/living/offices) +"weW" = ( +/obj/effect/landmark/start/doctor, +/obj/structure/sign/safety/maint{ + pixel_y = 26 + }, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"wfd" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/p_bow) "wfn" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ @@ -76730,6 +77035,13 @@ "wfE" = ( /turf/closed/wall/almayer, /area/almayer/living/gym) +"wfG" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "wfZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -76777,13 +77089,12 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"wgO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"wgw" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_m_s) "wgR" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, @@ -76794,14 +77105,42 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"whm" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"wgY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, +/obj/item/tank/emergency_oxygen/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/starboard_umbilical) +"whg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) +"whr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = null; + req_one_access_txt = "19;34;30" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) +"whv" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "whA" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/living/briefing) @@ -76820,9 +77159,15 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"wid" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/p_bow) +"whX" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "wiz" = ( /obj/structure/bed/chair{ dir = 4 @@ -76864,27 +77209,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"wiO" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"wiQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "wiW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -76941,38 +77265,9 @@ icon_state = "test_floor4" }, /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/hull/upper/u_a_s) -"wjQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - 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/mess) +"wjN" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/s_bow) "wjY" = ( /obj/structure/closet/secure_closet/warrant_officer, /turf/open/floor/wood/ship, @@ -77000,6 +77295,10 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) +"wkw" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "wky" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -77029,6 +77328,13 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) +"wkJ" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "wkM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "ARES StairsLower"; @@ -77053,6 +77359,25 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) +"wkP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -16 + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"wkR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/lower/port_fore_hallway) "wkX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -77090,32 +77415,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"wlh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, +"wli" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"wlB" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) -"wlD" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/maint/hull/lower/l_m_s) +"wlv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/lower/starboard_umbilical) "wlE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -77142,6 +77453,12 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"wlQ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "wmg" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -77151,6 +77468,17 @@ icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) +"wmr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "wmz" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 1 @@ -77159,12 +77487,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/stern_hallway) "wmK" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -77198,6 +77520,14 @@ icon_state = "cargo" }, /area/almayer/living/bridgebunks) +"wmY" = ( +/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/stern_hallway) "wnh" = ( /obj/structure/window/framed/almayer/white/hull, /turf/open/floor/plating, @@ -77211,6 +77541,14 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) +"wnK" = ( +/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/aft_hallway) "wnL" = ( /obj/item/stack/tile/carpet{ amount = 12 @@ -77259,9 +77597,30 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"woU" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_p) +"woQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"woW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "wpg" = ( /obj/structure/machinery/blackbox_recorder, /turf/open/shuttle/dropship{ @@ -77278,20 +77637,6 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"wpu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/device/flash, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) "wpw" = ( /obj/structure/bed/chair/comfy/ares{ dir = 1 @@ -77331,12 +77676,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"wpT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "wqc" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -77365,15 +77704,33 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) -"wqO" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +"wqs" = ( +/obj/structure/surface/table/almayer, +/obj/item/pipe{ + dir = 9 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/tool/screwdriver{ + layer = 3.6; + pixel_x = 9; + pixel_y = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/obj/item/tool/crowbar/red{ + pixel_x = 17 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) +"wqQ" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"wqU" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "wqW" = ( /obj/structure/closet/secure_closet/CMO, /obj/structure/machinery/light{ @@ -77384,55 +77741,27 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/upper_medical) -"wra" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"wqX" = ( +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/lower/l_a_p) -"wrr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control/railings{ - pixel_y = 24 +"wri" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) -"wru" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/lower/stern) "wrC" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"wrN" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_fore_hallway) "wrQ" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -77490,64 +77819,38 @@ /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) "wsw" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) -"wsz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_a_p) "wsD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"wsR" = ( +"wsF" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/bravo) -"wsS" = ( +/area/almayer/hallways/lower/port_umbilical) +"wsR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wtk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"wtn" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/item/storage/firstaid{ - pixel_x = -13; - pixel_y = 13 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/squads/bravo) "wty" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -77557,14 +77860,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/delta) -"wtD" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/p_bow) "wtM" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -77572,6 +77867,15 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"wtW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "wtY" = ( /obj/structure/surface/table/almayer, /obj/item/folder/white{ @@ -77590,14 +77894,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"wub" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) "wuc" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ name = "\improper Brig Medbay"; @@ -77623,26 +77919,6 @@ icon_state = "orangefull" }, /area/almayer/engineering/lower/workshop) -"wuh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "wup" = ( /obj/structure/supply_drop/echo, /turf/open/floor/almayer, @@ -77665,6 +77941,31 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) +"wuP" = ( +/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_m_s) +"wuR" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "wuT" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -77697,6 +77998,10 @@ /obj/structure/filingcabinet, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"wvt" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "wvE" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ @@ -77723,6 +78028,12 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) +"wvN" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "wvU" = ( /obj/structure/machinery/recharge_station, /obj/structure/machinery/light{ @@ -77741,18 +78052,6 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) -"wwv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"wwE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "wwJ" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -77761,6 +78060,14 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) +"wwV" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "wwW" = ( /obj/structure/machinery/camera/autoname/almayer/containment/hidden{ dir = 8; @@ -77792,11 +78099,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"wxp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"wxn" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) "wxq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -77805,20 +78116,6 @@ icon_state = "plate" }, /area/almayer/medical/lower_medical_medbay) -"wxu" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"wxy" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_stern) -"wxD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "wxU" = ( /obj/item/ashtray/bronze{ pixel_x = 7; @@ -77853,32 +78150,6 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"wyz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/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/aft_hallway) -"wyG" = ( -/obj/structure/disposalpipe/segment, -/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/hull/lower/l_m_s) "wyQ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door_control{ @@ -77891,46 +78162,26 @@ icon_state = "plating" }, /area/almayer/command/airoom) -"wzy" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"wzJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/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 +"wyV" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 8; + dir = 5; icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) -"wzZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Wheelchair Storage"; - req_access = null; - req_one_access = null +"wzC" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"wzJ" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_medbay) -"wAK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "cargo_arrow" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/lower/vehiclehangar) "wBd" = ( /obj/structure/machinery/status_display{ pixel_x = 32 @@ -77945,16 +78196,31 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) -"wBw" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/status_display{ - pixel_y = 30 +"wBg" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + dir = 4; + icon_state = "orange" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_aft_hallway) +"wBl" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) +"wBy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "wBI" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/sign/safety/maint{ @@ -77978,12 +78244,21 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"wCF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "wCI" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "redcorner" }, /area/almayer/living/briefing) +"wCN" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "wCT" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresDown"; @@ -78010,25 +78285,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"wDp" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"wDq" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"wDr" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stairs) "wDs" = ( /obj/structure/machinery/seed_extractor, /obj/structure/sign/safety/terminal{ @@ -78066,15 +78322,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"wDG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "wDH" = ( /obj/structure/morgue, /obj/structure/machinery/light{ @@ -78102,14 +78349,14 @@ "wDM" = ( /turf/closed/wall/almayer/reinforced/temphull, /area/almayer/engineering/upper_engineering) -"wDP" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +"wDW" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/lower/port_fore_hallway) "wEd" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -78134,6 +78381,23 @@ icon_state = "rasputin3" }, /area/almayer/powered/agent) +"wEp" = ( +/obj/structure/bookcase/manuals/medical, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) +"wEA" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "wEI" = ( /obj/structure/surface/table/reinforced/black, /obj/item/tool/pen, @@ -78147,12 +78411,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"wEK" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "wEO" = ( /obj/structure/platform_decoration{ dir = 4 @@ -78168,6 +78426,15 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"wFk" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "wFn" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/marine/light/vest, @@ -78195,34 +78462,33 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"wFN" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, +"wFG" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/lower/l_a_p) +"wFL" = ( +/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/aft_hallway) "wFR" = ( /turf/open/floor/almayer, /area/almayer/living/gym) -"wFX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"wGa" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"wGa" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/upper/u_m_s) "wGb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -78238,12 +78504,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"wGe" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "wGE" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/marine/leader/delta, @@ -78276,13 +78536,6 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) -"wHn" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "wHo" = ( /turf/open/floor/almayer{ icon_state = "emerald" @@ -78306,6 +78559,13 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/chief_mp_office) +"wIg" = ( +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "wIr" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ req_access = list(); @@ -78319,12 +78579,12 @@ icon_state = "cargo" }, /area/almayer/squads/req) -"wIu" = ( -/obj/structure/largecrate/random/case, +"wIz" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/s_stern) "wIC" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/chief_mp_office) @@ -78349,35 +78609,31 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"wIQ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" +"wIP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/brig/cic_hallway) -"wIX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) +"wIQ" = ( /turf/open/floor/almayer{ dir = 4; - icon_state = "green" + icon_state = "silvercorner" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/shipboard/brig/cic_hallway) "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/stern_hallway) "wJh" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -78397,16 +78653,18 @@ icon_state = "test_floor4" }, /area/almayer/medical/upper_medical) +"wJA" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_aft_hallway) "wJB" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/command/airoom) -"wJC" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "wJD" = ( /obj/structure/bed/chair{ dir = 8; @@ -78428,23 +78686,34 @@ "wJH" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell/cl) -"wKb" = ( -/obj/structure/bed/chair{ - dir = 8 +"wJS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"wKm" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/area/almayer/maint/hull/upper/u_a_s) +"wJT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"wKe" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/upper/u_a_p) +"wKf" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "wKF" = ( /obj/structure/machinery/power/apc/almayer{ cell_type = /obj/item/cell/hyper; @@ -78463,15 +78732,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"wKN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "wKP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -78487,6 +78747,11 @@ }, /turf/open/floor/plating, /area/almayer/medical/containment) +"wLe" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) "wLi" = ( /obj/structure/machinery/door_control/airlock{ id = "s_engi"; @@ -78502,6 +78767,15 @@ icon_state = "plating_striped" }, /area/almayer/living/cryo_cells) +"wLs" = ( +/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/aft_hallway) "wLu" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -78564,6 +78838,20 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"wLM" = ( +/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/hull/upper/u_m_s) "wLN" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 8 @@ -78572,24 +78860,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"wMl" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/two{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "wMv" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -78598,21 +78868,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/auxiliary_officer_office) -"wMB" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wMF" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "wMG" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -78621,17 +78876,6 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) -"wMI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "wMO" = ( /obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 @@ -78671,27 +78915,12 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) -"wNz" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wNG" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, +"wNN" = ( +/obj/structure/platform, /turf/open/floor/almayer{ - allow_construction = 0 + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/upper/u_a_s) "wNS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -78704,18 +78933,34 @@ /obj/structure/platform, /turf/open/floor/almayer, /area/almayer/living/briefing) +"wOb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"wOm" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "wOt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"wOv" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) +"wOC" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "wOK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -78725,18 +78970,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"wPa" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/reagent_container/glass/rag, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "wPf" = ( /obj/structure/sign/safety/reception{ pixel_x = 32; @@ -78746,27 +78979,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"wPi" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/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/hallways/upper/stern_hallway) "wPz" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -78794,25 +79006,17 @@ }, /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/hull/upper/u_a_s) -"wQu" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "mono" }, +/area/almayer/hallways/upper/stern_hallway) +"wPX" = ( /turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" + dir = 10; + icon_state = "green" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/aft_hallway) "wQA" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 @@ -78826,19 +79030,43 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"wRf" = ( -/obj/structure/machinery/light/small, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 15; - pixel_y = -32 +"wQH" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 +/turf/open/floor/almayer{ + allow_construction = 0 }, +/area/almayer/hallways/lower/port_fore_hallway) +"wQM" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/upper/u_m_p) +"wQV" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"wQZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/upper/stern_hallway) +"wRn" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "wRN" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/goldappleseed, @@ -78878,6 +79106,10 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"wSd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) "wSm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -78902,15 +79134,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"wSx" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "wSK" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, @@ -78918,12 +79141,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/execution) -"wSQ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "wSR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -78963,6 +79180,10 @@ icon_state = "silver" }, /area/almayer/command/securestorage) +"wTe" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "wTg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -78980,23 +79201,6 @@ icon_state = "red" }, /area/almayer/living/briefing) -"wTn" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"wTu" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "wTw" = ( /obj/structure/machinery/cm_vending/sorted/attachments/squad{ req_access = null; @@ -79014,28 +79218,12 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) -"wTB" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) -"wTJ" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ +"wTF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/largecrate/random, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) "wTM" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell) @@ -79047,6 +79235,10 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"wUc" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "wUd" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves{ @@ -79056,12 +79248,9 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"wUJ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) +"wUB" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_stern) "wUK" = ( /turf/open/floor/almayer{ dir = 8; @@ -79097,13 +79286,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"wVm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "wVt" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/plating/plating_catwalk, @@ -79131,6 +79313,12 @@ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) +"wVz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/lower/port_midship_hallway) "wVA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -79150,14 +79338,13 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) -"wVN" = ( -/obj/item/roller, -/obj/structure/surface/rack, -/obj/item/roller, -/turf/open/floor/almayer{ - icon_state = "plate" +"wVU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, -/area/almayer/shipboard/panic) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) "wVW" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/cic) @@ -79186,14 +79373,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"wWt" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "wWz" = ( /turf/closed/wall/almayer/research/containment/wall/north, /area/almayer/medical/containment/cell) @@ -79203,6 +79382,10 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) +"wWD" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) "wWP" = ( /obj/structure/prop/cash_register/broken, /obj/structure/machinery/light/small, @@ -79226,6 +79409,29 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"wXb" = ( +/obj/structure/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"wXf" = ( +/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/aft_hallway) "wXh" = ( /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" @@ -79234,12 +79440,22 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) -"wXl" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "plate" +"wXx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_p) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) +"wXD" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "wXH" = ( /obj/structure/bed/chair{ dir = 1 @@ -79252,12 +79468,15 @@ icon_state = "greencorner" }, /area/almayer/living/grunt_rnr) -"wXJ" = ( -/obj/structure/largecrate/random/case/small, +"wXS" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/u_a_p) "wXT" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Engineering Storage" @@ -79272,35 +79491,38 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north2) -"wYd" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"wYr" = ( -/obj/structure/machinery/gel_refiller, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) "wYA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"wYG" = ( -/obj/structure/largecrate/random/barrel/white, +"wYI" = ( +/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 = "cargo" + icon_state = "orangecorner" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/upper/stern_hallway) "wYK" = ( /obj/structure/barricade/handrail/medical, /turf/open/floor/almayer{ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"wYQ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "wYS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79313,6 +79535,16 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"wYU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "wYY" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -79324,30 +79556,22 @@ }, /turf/open/floor/plating, /area/almayer/engineering/ce_room) -"wZk" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" +"wZa" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_s) +"wZt" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 15; + pixel_y = 32 }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 +/obj/structure/sign/safety/intercom{ + pixel_y = 32 }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" }, /area/almayer/hallways/upper/aft_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/stern_hallway) "wZv" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -79361,6 +79585,15 @@ icon_state = "outerhull_dir" }, /area/almayer/engineering/upper_engineering/port) +"wZD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) "wZE" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/surgery, @@ -79372,6 +79605,13 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) +"wZH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "wZL" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -79394,6 +79634,11 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) +"xac" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "xad" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -79405,12 +79650,6 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"xas" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "xaC" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/utensil/pfork{ @@ -79464,6 +79703,14 @@ dir = 5 }, /area/almayer/command/lifeboat) +"xaV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "xba" = ( /turf/closed/wall/almayer/reinforced/temphull, /area/almayer/living/cryo_cells) @@ -79476,24 +79723,35 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xbg" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "xbk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/gym) -"xbI" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"xbG" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8; + plane = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "sterile_green_corner" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/medical/lower_medical_medbay) "xbN" = ( /obj/structure/surface/rack{ density = 0; @@ -79509,60 +79767,37 @@ }, /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/hull/upper/u_a_s) -"xcI" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, +"xcC" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) -"xcV" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, +/area/almayer/maint/hull/lower/l_m_p) +"xdr" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "red" }, -/area/almayer/shipboard/panic) -"xcY" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/hallways/upper/stern_hallway) +"xdt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/almayer{ - dir = 4; + dir = 9; icon_state = "green" }, -/area/almayer/hallways/upper/aft_hallway) -"xdf" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"xdl" = ( +"xdv" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, /turf/open/floor/almayer{ - icon_state = "red" + icon_state = "green" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/port_midship_hallway) "xdx" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular/empty, @@ -79586,6 +79821,14 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/execution) +"xdN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "xdP" = ( /obj/structure/surface/table/almayer, /obj/item/trash/uscm_mre, @@ -79602,80 +79845,60 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"xee" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"xef" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/yellow, -/obj/structure/machinery/keycard_auth{ - pixel_x = -8; - pixel_y = 25 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 26 +"xdT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/sheet/metal{ + desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; + icon = 'icons/obj/structures/props/semiotic_standard.dmi'; + icon_state = "coffee"; + name = "coffee semiotic"; + pixel_x = 20; + pixel_y = 12; + singular_name = "coffee semiotic" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering/lower/workshop) -"xeq" = ( -/obj/structure/sign/safety/distribution_pipes{ +/area/almayer/maint/hull/upper/u_a_p) +"xec" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"xeV" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_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, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/upper/u_m_s) +"xeY" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "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" +"xft" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/hallways/upper/aft_hallway) -"xfq" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, +/area/almayer/maint/hull/upper/u_a_p) +"xfu" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/upper/u_m_p) "xfK" = ( /obj/structure/machinery/light{ dir = 1 @@ -79719,17 +79942,6 @@ 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/hull/upper/u_m_s) "xgh" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -79738,40 +79950,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/lower_medical_lobby) -"xgk" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xgm" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"xgr" = ( -/obj/structure/ladder{ - height = 1; - id = "AftPortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/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/aft_hallway) "xgI" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null @@ -79781,16 +79959,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"xgJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) "xgN" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 1 @@ -79804,44 +79972,19 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xgP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"xgS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"xhi" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) "xhn" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) +"xhp" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "xhx" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -79855,24 +79998,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) -"xhO" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "xhQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/squads/bravo) -"xhW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "xhZ" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 @@ -79887,18 +80018,20 @@ /obj/structure/window/reinforced, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"xiH" = ( -/obj/structure/largecrate/random/barrel/blue, +"xiD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/wrench{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/tool/wrench{ + pixel_x = 2; + pixel_y = 7 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) -"xiP" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/upper/u_a_p) "xiU" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/tool/minihoe{ @@ -79913,9 +80046,13 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"xiV" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_bow) +"xiZ" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/maint/hull/lower/l_m_s) "xjb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ access_modified = 1; @@ -79926,6 +80063,12 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"xjh" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "xjt" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/card{ @@ -79985,12 +80128,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"xjI" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) "xjK" = ( /obj/structure/sign/safety/hazard{ pixel_y = 32 @@ -80003,7 +80140,10 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"xjW" = ( +"xjU" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"xjW" = ( /obj/structure/sign/safety/hazard{ desc = "A sign that warns of a hazardous environment nearby"; name = "\improper Warning: Hazardous Environment" @@ -80014,34 +80154,9 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"xkb" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"xkc" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "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/aft_hallway) "xkB" = ( /obj/structure/bed/chair/comfy/charlie{ dir = 1 @@ -80051,20 +80166,34 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xkN" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"xkE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/s_bow) +"xkM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"xkZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "greencorner" + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/constr) "xlk" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, @@ -80101,21 +80230,21 @@ icon_state = "silverfull" }, /area/almayer/shipboard/brig/cic_hallway) -"xmn" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical{ +"xml" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; pixel_x = 1; - pixel_y = 7 + pixel_y = 1 }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 1; - pixel_y = -1 +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "xmJ" = ( /obj/structure/closet, /obj/structure/sign/safety/bathunisex{ @@ -80142,6 +80271,22 @@ icon_state = "dark_sterile" }, /area/almayer/shipboard/brig/surgery) +"xnn" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"xnr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "xns" = ( /obj/structure/machinery/door_control{ id = "ARES JoeCryo"; @@ -80164,6 +80309,13 @@ icon_state = "red" }, /area/almayer/command/lifeboat) +"xnG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "xnI" = ( /obj/effect/landmark/start/requisition, /turf/open/floor/plating/plating_catwalk, @@ -80195,28 +80347,15 @@ 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/aft_hallway) "xoj" = ( /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) -"xos" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"xow" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"xoB" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "xoJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -80231,15 +80370,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"xpc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"xoX" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "green" + dir = 8; + icon_state = "silver" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/upper/aft_hallway) "xpi" = ( /obj/structure/sink{ dir = 8; @@ -80257,24 +80396,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/commandbunks) -"xpl" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/four{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) "xpo" = ( /obj/structure/closet/secure_closet/cmdcabinet{ desc = "A bulletproof cabinet containing communications equipment."; @@ -80292,12 +80413,20 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"xpL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"xpq" = ( +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/starboard_fore_hallway) +"xpG" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "xpT" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -80318,6 +80447,23 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"xqj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/vehiclehangar) +"xqm" = ( +/obj/structure/sign/safety/security{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "xqp" = ( /obj/structure/machinery/body_scanconsole{ dir = 8; @@ -80377,19 +80523,6 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) -"xrg" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "xrq" = ( /obj/structure/closet/firecloset, /obj/item/clothing/mask/gas, @@ -80424,17 +80557,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"xrC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "xrI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -80443,20 +80565,26 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"xrT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"xsc" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/lower/port_umbilical) "xsg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) +"xsj" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "xsl" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -80466,28 +80594,19 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) -"xss" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"xsv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "xsw" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"xsy" = ( +/obj/item/pipe{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "xsz" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -80497,27 +80616,49 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"xsQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 +"xtg" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart/green, -/obj/item/weapon/dart/green, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"xsX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xtk" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_a_p) +"xtr" = ( +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"xtI" = ( +/obj/structure/disposalpipe/segment, +/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_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "xtM" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -80525,26 +80666,17 @@ 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/aft_hallway) -"xub" = ( +"xtU" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "xuc" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -80552,23 +80684,13 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"xui" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"xuy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +"xun" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/toy/deck{ + pixel_y = 12 }, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "xuE" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ dir = 1; @@ -80615,6 +80737,13 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"xvB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "xvE" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ @@ -80638,16 +80767,6 @@ icon_state = "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/aft_hallway) "xvQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/sentencing{ @@ -80664,15 +80783,6 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"xwd" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "xwl" = ( /obj/structure/window/reinforced{ dir = 4; @@ -80686,18 +80796,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) -"xwm" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) "xwp" = ( /obj/item/storage/box/matches{ pixel_x = -11; @@ -80728,15 +80826,26 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xwU" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +"xwT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "green" + dir = 8; + icon_state = "blue" }, /area/almayer/hallways/upper/aft_hallway) +"xwU" = ( +/obj/item/roller, +/obj/structure/surface/rack, +/obj/item/roller, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "xwX" = ( /turf/open/floor/almayer{ dir = 9; @@ -80781,6 +80890,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"xxj" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "xxm" = ( /obj/structure/bed{ can_buckle = 0 @@ -80818,19 +80933,16 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"xxG" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/largecrate/random/barrel/red, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = -2; - pixel_y = 16 +"xxr" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars, +/obj/item/device/whistle{ + pixel_y = 5 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_f_s) "xxI" = ( /obj/structure/cargo_container/wy/mid, /obj/structure/sign/poster{ @@ -80929,12 +81041,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"xyQ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/hallways/lower/repair_bay) "xyY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -80946,11 +81052,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"xyZ" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "xzf" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -80961,21 +81062,17 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"xzh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"xzB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"xzI" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"xzx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_m_p) "xzO" = ( /obj/structure/closet/secure_closet{ name = "\improper Execution Firearms" @@ -81008,13 +81105,12 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"xAu" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 +"xAv" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emeraldcorner" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/hallways/lower/port_midship_hallway) "xAB" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -81024,6 +81120,16 @@ icon_state = "green" }, /area/almayer/squads/req) +"xAC" = ( +/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/aft_hallway) "xAI" = ( /obj/structure/platform{ dir = 1 @@ -81059,12 +81165,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/port) -"xBK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) "xBQ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -81072,14 +81172,12 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"xBS" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, +"xBT" = ( +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) "xBV" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -81109,17 +81207,16 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"xCy" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 +"xCQ" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orange" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/upper/stern_hallway) "xDe" = ( /obj/effect/projector{ name = "Almayer_Down4"; @@ -81136,6 +81233,10 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"xDy" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "xDC" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/no_build{ @@ -81149,15 +81250,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/hull/upper/u_a_s) "xDV" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -81168,14 +81260,20 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"xEe" = ( -/obj/structure/prop/invuln/joey, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +"xEq" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "xEs" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "xEz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/surgery, @@ -81187,6 +81285,15 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_two) +"xEI" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "xEO" = ( /turf/open/floor/prison{ icon_state = "kitchen" @@ -81198,21 +81305,12 @@ icon_state = "plate" }, /area/almayer/living/offices) -"xFt" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "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/aft_hallway) "xFZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -81230,18 +81328,18 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"xGm" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "xGo" = ( /obj/structure/machinery/autolathe, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/req) +"xGv" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "xGE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -81263,15 +81361,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/bravo) -"xGF" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "xGJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -81282,78 +81371,38 @@ icon_state = "red" }, /area/almayer/living/briefing) -"xGK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/lights/tubes{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"xGT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"xHa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"xHl" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "xHp" = ( /turf/open/floor/almayer{ 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 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +"xHr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/tubes{ + pixel_x = -8 }, -/area/almayer/maint/hull/upper/u_m_p) -"xHS" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank{ - anchored = 1 +/obj/item/storage/box/lights/tubes{ + pixel_x = 5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/storage/box/lights/tubes{ + pixel_y = 10 }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xHx" = ( /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/engineering/lower/workshop/hangar) -"xHX" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/upper/u_m_s) +"xHC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/l_f_p) "xId" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/he, @@ -81370,6 +81419,14 @@ icon_state = "cargo" }, /area/almayer/medical/lower_medical_medbay) +"xIp" = ( +/obj/structure/surface/table/almayer, +/obj/item/card/id/visa, +/obj/item/tool/crew_monitor, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "xIq" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -81394,15 +81451,24 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"xIy" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/cryo_cells) +"xIB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "xIQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/living/offices) -"xIV" = ( -/turf/open/floor/almayer, -/area/almayer/maint/upper/mess) "xIW" = ( /obj/structure/machinery/light{ dir = 4 @@ -81437,17 +81503,39 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"xJp" = ( -/obj/structure/largecrate/random/barrel/yellow, +"xJr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"xJv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/upper/stern_hallway) "xJH" = ( /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/charlie_delta_shared) +"xJK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "xJR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -81464,18 +81552,41 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"xKG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"xJV" = ( +/turf/open/floor/almayer{ + icon_state = "mono" }, -/obj/structure/machinery/door_control{ - id = "Under Construction Shutters"; - name = "shutter-control"; - pixel_x = -25 +/area/almayer/hallways/upper/stern_hallway) +"xJY" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"xKo" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"xKy" = ( +/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/stern_hallway) "xKM" = ( /obj/structure/machinery/status_display{ pixel_x = 16; @@ -81522,28 +81633,15 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/general_equipment) -"xLn" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) -"xLu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"xLX" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, +"xLp" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"xLC" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 10; + icon_state = "red" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/upper/stern_hallway) "xMf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -81572,15 +81670,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"xMm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "xMs" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_two) @@ -81609,26 +81698,6 @@ dir = 6 }, /area/almayer/command/cic) -"xMG" = ( -/obj/structure/machinery/door_control{ - id = "OuterShutter"; - name = "Outer Shutter"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;3" - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "OfficeSafeRoom"; - name = "Office Safe Room"; - pixel_x = 5; - pixel_y = 5; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "xML" = ( /obj/structure/machinery/computer/cameras/wooden_tv/prop{ pixel_x = -4; @@ -81696,12 +81765,6 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) -"xNl" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "xNu" = ( /obj/structure/toilet{ dir = 1 @@ -81735,24 +81798,14 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) -"xNM" = ( -/obj/structure/machinery/cm_vending/gear/vehicle_crew, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/vehiclehangar) -"xOs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/command/corporateliaison) +"xNY" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"xOb" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) "xOL" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -81782,26 +81835,6 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"xPn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "xPq" = ( /obj/structure/filingcabinet, /obj/item/folder/yellow, @@ -81810,12 +81843,12 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"xPu" = ( +"xPU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/lower/port_midship_hallway) "xPZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -81831,24 +81864,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"xQd" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"xQe" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "xQg" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -81858,40 +81873,27 @@ icon_state = "bluecorner" }, /area/almayer/living/pilotbunks) -"xQj" = ( -/obj/item/pipe{ - dir = 4; - layer = 3.5 +"xQl" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "blue" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/hallways/upper/aft_hallway) "xQm" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 1 }, /area/almayer/medical/containment/cell) -"xQz" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) +"xQq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) "xQV" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer/no_build{ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"xQW" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = -18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "xRj" = ( /obj/structure/bed/chair{ dir = 8; @@ -81925,17 +81927,17 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"xRn" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/upper/aft_hallway) "xRw" = ( /turf/open/floor/almayer/uscm/directional{ dir = 1 }, /area/almayer/living/briefing) +"xRG" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "xRH" = ( /obj/structure/sign/safety/fibre_optics{ pixel_y = 32 @@ -81956,16 +81958,14 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"xSl" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"xRK" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/starboard_aft_hallway) "xSw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -81976,12 +81976,6 @@ }, /turf/open/floor/plating, /area/almayer/squads/charlie) -"xSx" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "xSz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/status_display{ @@ -82009,6 +82003,10 @@ icon_state = "red" }, /area/almayer/squads/alpha) +"xSX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "xSY" = ( /obj/structure/machinery/light{ dir = 1 @@ -82028,17 +82026,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"xTx" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_p) -"xTG" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "xTH" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -82058,6 +82045,20 @@ icon_state = "plate" }, /area/almayer/living/numbertwobunks) +"xTQ" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "xTR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -82103,13 +82104,18 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"xUy" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/structure/surface/rack, +"xUb" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xUt" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/maint/hull/lower/stern) "xUA" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pouch/tools/tank, @@ -82126,25 +82132,23 @@ icon_state = "silver" }, /area/almayer/command/cic) -"xUV" = ( -/obj/structure/bed/chair{ - dir = 4 +"xUS" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/command/combat_correspondent) -"xUY" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/maint/hull/lower/l_a_p) +"xUV" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1 - }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/command/combat_correspondent) "xVc" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/door_control{ @@ -82158,6 +82162,16 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"xVd" = ( +/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/aft_hallway) "xVe" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -82170,6 +82184,12 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"xVi" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "xVk" = ( /turf/open/space, /area/space/almayer/lifeboat_dock) @@ -82207,28 +82227,31 @@ }, /turf/closed/wall/almayer, /area/almayer/living/tankerbunks) -"xVY" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "xWd" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/squads/alpha_bravo_shared) -"xWo" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;21" +"xWh" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"xWi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/req) +/area/almayer/hallways/lower/port_midship_hallway) "xWp" = ( /turf/open/floor/almayer, /area/almayer/living/offices/flight) @@ -82238,6 +82261,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"xWI" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = -25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "xWO" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 @@ -82261,6 +82295,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"xWV" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/alamo{ + layer = 2.9 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/offices/flight) "xXa" = ( /turf/open/floor/almayer{ dir = 8; @@ -82294,6 +82337,18 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"xXm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "xXr" = ( /obj/item/reagent_container/glass/beaker/bluespace, /obj/structure/machinery/chem_dispenser/research, @@ -82301,6 +82356,32 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"xXu" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"xXC" = ( +/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/lower/port_midship_hallway) +"xXD" = ( +/obj/item/clothing/shoes/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"xXG" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "xXT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -82316,6 +82397,13 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"xXX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "xYf" = ( /obj/structure/machinery/cm_vending/clothing/sea, /turf/open/floor/almayer{ @@ -82323,12 +82411,30 @@ icon_state = "plating" }, /area/almayer/shipboard/sea_office) -"xYr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"xYg" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xYi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_umbilical) "xYB" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -82336,12 +82442,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) -"xYE" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "xYP" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) @@ -82370,12 +82470,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/aft_hallway) "xZk" = ( /obj/item/prop/helmetgarb/gunoil{ layer = 4.2; @@ -82403,10 +82497,15 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xZz" = ( -/obj/item/paper/almayer_storage, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +"xZs" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "xZG" = ( /obj/structure/machinery/light{ dir = 4 @@ -82415,28 +82514,6 @@ /obj/structure/bed, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"xZH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"xZM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"xZR" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "xZU" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -82448,6 +82525,12 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) +"yaa" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "yac" = ( /obj/structure/platform_decoration{ dir = 8 @@ -82457,18 +82540,22 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"yap" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"yai" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"yak" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "yaz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "\improper Officer's Study" @@ -82503,31 +82590,16 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"yaR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/stern_hallway) -"yaX" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +"yaS" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/port_umbilical) +"yaW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 }, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "yaZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -82537,26 +82609,16 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"ybk" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/upper/stern_hallway) -"ybm" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = 6 +"ybq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 8; - pixel_y = 7 +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/shipboard/panic) "ybz" = ( /obj/structure/machinery/brig_cell/cell_4{ pixel_x = 32; @@ -82564,14 +82626,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"ybP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) "ybU" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -82595,6 +82649,13 @@ icon_state = "redfull" }, /area/almayer/shipboard/port_missiles) +"ycb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "ycd" = ( /obj/structure/bed/chair{ dir = 8; @@ -82610,9 +82671,6 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"ycl" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) "ycm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -82644,14 +82702,13 @@ icon_state = "green" }, /area/almayer/squads/req) -"ycM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ycS" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "ycZ" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -82661,15 +82718,19 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"ydf" = ( -/obj/structure/platform{ +"ydb" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "ydh" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -82680,6 +82741,17 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"ydw" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) "ydz" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -82688,19 +82760,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) -"ydA" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_fore_hallway) "ydE" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -82742,6 +82801,12 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"ydR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "ydY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -82750,6 +82815,35 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"yeb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/hallways/upper/stern_hallway) +"yef" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"yen" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"yep" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "yeu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -82787,6 +82881,16 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"yeO" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "yeR" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ req_access = null; @@ -82795,12 +82899,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"yfd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "yff" = ( /obj/structure/machinery/cm_vending/clothing/dress{ density = 0; @@ -82813,13 +82911,6 @@ icon_state = "cargo" }, /area/almayer/command/cic) -"yfg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "yfm" = ( /obj/effect/landmark/start/marine/delta, /obj/effect/landmark/late_join/delta, @@ -82827,13 +82918,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"yfy" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "yfG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -82846,19 +82930,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/hull/upper/u_m_p) "yfS" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -82866,6 +82937,10 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) +"ygb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "yge" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer/vehicle{ @@ -82875,44 +82950,12 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"ygp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ygv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +"ygo" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"ygB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ygP" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) "yhg" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -82921,42 +82964,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"yht" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"yhx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/glasses/welding{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/tool/weldingtool{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "red" + icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/almayer/maint/hull/upper/u_a_p) "yhI" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"yhR" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"yhZ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/p_bow) -"yia" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"yih" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "yit" = ( /obj/structure/machinery/light{ dir = 4 @@ -82968,6 +82998,18 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"yiJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"yiL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "yiW" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -82999,6 +83041,18 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/morgue) +"yjf" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Passenger Cryogenics Bay" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) +"yjl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "yjq" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; @@ -83008,15 +83062,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/notunnel) -"yjE" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "yjG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -83035,11 +83080,21 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) +"yjQ" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "yjU" = ( /turf/open/floor/almayer{ icon_state = "emeraldfull" }, /area/almayer/living/briefing) +"ykg" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_p) "ykj" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -83051,33 +83106,33 @@ icon_state = "test_floor4" }, /area/almayer/living/grunt_rnr) -"yko" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, +"yks" = ( /turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/repair_bay) -"ykv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" + dir = 5; + icon_state = "blue" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/hallways/upper/aft_hallway) +"ykB" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/shipboard/panic) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "ykI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"ykL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "ykP" = ( /obj/structure/filingcabinet{ density = 0; @@ -83094,61 +83149,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/main_office) -"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/hull/upper/u_m_s) "ylc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -83183,23 +83183,13 @@ icon_state = "test_floor5" }, /area/almayer/engineering/lower/engine_core) -"ylN" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"ymg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, +"yma" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_m_s) (1,1,1) = {" aaa @@ -90955,8 +90945,8 @@ aaa aaa aaa aad -uDg -uDg +sOq +sOq hPI pQr rib @@ -90974,8 +90964,8 @@ jNT jNT wSK feb -xiV -xiV +lFL +lFL ajZ aaa aaa @@ -91157,9 +91147,9 @@ aaf aaf aaf aaf -uDg -uDg -lHk +sOq +sOq +ryg naB wnw pHp @@ -91177,9 +91167,9 @@ xzO pNk jIH mtl -igS -xiV -xiV +ktH +lFL +lFL aaf aaf aaf @@ -91353,19 +91343,19 @@ aaa aaa aaa aad -uDg -uDg -uDg -uDg -uDg -uDg -uDg -uDg -aPN -lSJ +sOq +sOq +sOq +sOq +sOq +sOq +sOq +sOq +nkE +mjC naB pQr -jeR +jRH wvI vPf fvA @@ -91380,16 +91370,16 @@ mtl mtl mtl mtl -iuf -pnh -xiV -xiV -xiV -xiV -xiV -xiV -xiV -xiV +vFB +gWL +lFL +lFL +lFL +lFL +lFL +lFL +lFL +lFL ajZ aaa aaa @@ -91556,16 +91546,16 @@ aaa aaa aaa aad -uDg -cth -gkr -xkc -oGj -hSj -xkc -mph -nlh -rGr +sOq +hNh +sjC +pjr +fHY +aXV +pjr +unI +mIQ +bKG naB naB naB @@ -91581,18 +91571,18 @@ rdA alF sql alF -rwe -pdp -hZw -xYr -mjs -pdp -ohu -iUh -pdp -pdp -kSn -xiV +kAk +xXu +ogI +uwJ +hIl +xXu +ubB +csT +xXu +xXu +jIU +lFL ajZ bdH bdH @@ -91759,19 +91749,19 @@ bdH aac aaf aag -uDg -gkr -xkc -gkr -vAg -gxI -kqC -bBU -xkc -eeA +sOq +sjC +pjr +sjC +qPC +tla +vcg +xqm +pjr +vnU naB pQr -ggS +dFH wvI piK fvA @@ -91787,15 +91777,15 @@ xkd xkd xkd xkd -lRt -tsE -iVG -hmA -hmZ -oDh -oDh -pdp -xiV +wUc +hfx +kvj +kWA +idf +tyH +tyH +xXu +lFL aag aaf ajY @@ -91961,10 +91951,10 @@ bdH bdH aad aag -uDg -uDg -gkr -xkc +sOq +sOq +sjC +pjr vBm vBm vBm @@ -91996,10 +91986,10 @@ xkd xkd xkd xkd -pdp -oDh -xiV -xiV +xXu +tyH +lFL +lFL aag ajZ bdH @@ -92164,10 +92154,10 @@ bdH bdH aad aag -uDg -pOp -gkr -cth +sOq +pnI +sjC +hNh vBm rBV oPk @@ -92199,10 +92189,10 @@ uns vCy eyV xkd -mkF -oDh -pdp -xiV +nWt +tyH +xXu +lFL aag ajZ bdH @@ -92367,10 +92357,10 @@ bdH bdH aad aag -uDg -lDT -xkc -xyZ +sOq +naN +pjr +lHE vBm ldu wgi @@ -92402,10 +92392,10 @@ xGh jVa wDs xkd -oHf -oDh -pdp -xiV +abN +tyH +xXu +lFL aag ajZ bdH @@ -92570,9 +92560,9 @@ bdH bdH aad aag -uDg -xkc -gkr +sOq +pjr +sjC vBm vBm sFC @@ -92582,10 +92572,10 @@ vBm lOI pJv jLM -btn +sXy cMb rbi -wDp +kwU xys nkX iQB @@ -92606,9 +92596,9 @@ tUx wRN xkd xkd -pdp -oDh -xiV +xXu +tyH +lFL aag ajZ bdH @@ -92676,10 +92666,10 @@ aaa bdH aad aag -nBJ -nBJ -nBJ -nBJ +tNf +tNf +tNf +tNf aag dqw uwv @@ -92701,10 +92691,10 @@ dqw aag aag aag -wid -wid -wid -wid +tQN +tQN +tQN +tQN aag ajZ bdH @@ -92773,9 +92763,9 @@ bdH bdH aad aag -lrE -xkc -gkr +ocS +pjr +sjC vBm ykP xAj @@ -92809,9 +92799,9 @@ tUx xJe qLt xkd -pdp -oDh -cPj +xXu +tyH +pqG aag etE bdH @@ -92879,9 +92869,9 @@ aaa bdH aad aag -nBJ -kJc -jFt +tNf +sOH +dRN bAs bAs bAs @@ -92905,9 +92895,9 @@ bTT bTT bTT bAs -kOR -jYM -wid +oFb +obx +tQN aag ajZ bdH @@ -92976,9 +92966,9 @@ bdH bdH aad aag -lrE -gkr -xkc +ocS +sjC +pjr vBm ykP xjG @@ -93012,9 +93002,9 @@ ycm qCo pWr xkd -aGa -oDh -cPj +xXX +tyH +pqG aag ajZ bdH @@ -93082,9 +93072,9 @@ aaa bdH aad aag -nBJ -rUi -grv +tNf +jln +vXr bBA bAK bCY @@ -93108,9 +93098,9 @@ acr bPG acN bBA -gTK -fWg -wid +nHN +sjZ +tQN aag ajZ bdH @@ -93179,9 +93169,9 @@ bdH bdH aad aag -lrE -vDh -xkc +ocS +lYZ +pjr lrq lrq lrq @@ -93215,9 +93205,9 @@ cyZ jVa fJT xkd -rfB -pdp -cPj +mPQ +xXu +pqG aag eSU bdH @@ -93285,9 +93275,9 @@ aaa bdH aad aag -nBJ -uRR -mFQ +tNf +pDk +wjN bBA hWJ bCY @@ -93311,9 +93301,9 @@ bHP bPG hpk bBA -yhZ -wtD -wid +rAk +szS +tQN aag ajZ bdH @@ -93382,9 +93372,9 @@ bdH bdH aad aag -uDg -cth -qsp +sOq +hNh +vtH lrq kEc chv @@ -93418,9 +93408,9 @@ dfk vzz moB xkd -gNZ -pdp -xiV +pVg +xXu +lFL aag ajZ bdH @@ -93488,9 +93478,9 @@ aaa bdH aad aag -nBJ -ecS -eQR +tNf +qqi +fvs gol akb bCY @@ -93514,9 +93504,9 @@ bPn bPG ald gol -sGK -hLu -wid +kuI +lGZ +tQN aag ajZ bdH @@ -93585,9 +93575,9 @@ bdH bdH aad aag -uDg -cUl -gkr +sOq +tnD +sjC lrq heo nqe @@ -93621,9 +93611,9 @@ eZH tUx cXi xkd -ttB -pdp -xiV +vFr +xXu +lFL aag twB bdH @@ -93691,9 +93681,9 @@ aaa bdH aad aag -nBJ -eQR -xAu +tNf +fvs +neX bBA bAN bCY @@ -93717,9 +93707,9 @@ bPo bPG acs bBA -xHX -sGK -wid +edx +kuI +tQN aag ajZ bdH @@ -93788,9 +93778,9 @@ bdH bdH aad aag -lrE -vOM -gkr +ocS +nMT +sjC lrq kui uqo @@ -93824,9 +93814,9 @@ nYd thL jVa fgR -nEc -oDh -cPj +pwx +tyH +pqG aag ajZ bdH @@ -93894,9 +93884,9 @@ aaa bdH aad aag -nBJ -ldF -eox +tNf +cCG +iWW bBA bAO bCZ @@ -93920,9 +93910,9 @@ bDW bPJ iuz bBA -mVh -uMf -wid +aGh +bjh +tQN aag ajZ bdH @@ -93991,16 +93981,16 @@ bdH bdH aad aag -lrE -etN -xkc +ocS +lFv +pjr lrq sEZ nqe nqe nqe nqe -mza +vcL eRL wfB tpn @@ -94027,9 +94017,9 @@ liZ rUk jVa fgR -azg -gKv -cPj +xGv +tht +pqG aag rEr bdH @@ -94097,9 +94087,9 @@ aaa bdH aad aag -nBJ -ldF -eQR +tNf +cCG +fvs bBA bAP aqu @@ -94123,9 +94113,9 @@ aqu aqu bQz bBA -sGK -vOG -wid +kuI +tDw +tQN aag ajZ bdH @@ -94194,9 +94184,9 @@ bdH bdH aad aag -lrE -gkr -xkc +ocS +sjC +pjr lrq dEX fxJ @@ -94230,9 +94220,9 @@ uaU rUk xaM fgR -hIG -pdp -cPj +tDq +xXu +pqG aag ajZ bdH @@ -94300,9 +94290,9 @@ aaa bdH aad aag -nBJ -vCE -ldF +tNf +uAN +cCG bBA bBu amg @@ -94326,9 +94316,9 @@ amg amg rAD bBA -sGK -mVh -wid +kuI +aGh +tQN aag ajZ bdH @@ -94397,9 +94387,9 @@ bdH bdH aad aag -uDg -xkc -xkc +sOq +pjr +pjr lrq iwV iwV @@ -94433,9 +94423,9 @@ uxa iZU nhG xkd -oDh -uqg -xiV +tyH +qnN +lFL aag uJk bdH @@ -94503,9 +94493,9 @@ aaa bdH aad aag -nBJ -amu -eQR +tNf +pTQ +fvs bBA bBu amg @@ -94529,9 +94519,9 @@ amg amg rAD bBA -ozH -flr -wid +oac +eEq +tQN aag ajZ bdH @@ -94600,9 +94590,9 @@ bdH bdH aad aag -uDg -gkr -old +sOq +sjC +lgM cQv oVf rmx @@ -94636,9 +94626,9 @@ tov thL sUs xkd -gNZ -pdp -xiV +pVg +xXu +lFL aag ajZ bdH @@ -94706,9 +94696,9 @@ aaa bdH aad aag -nBJ -kMW -eQR +tNf +bHC +fvs bBA bBv aqu @@ -94732,9 +94722,9 @@ tkq aqu bQG bBA -uoO -mVh -wid +irA +aGh +tQN aag ajZ bdH @@ -94803,9 +94793,9 @@ bdH bdH aad aag -lrE -gkr -wJC +ocS +sjC +ogi cQv cBw kde @@ -94839,9 +94829,9 @@ tov thL xhx fgR -oDh -pdp -cPj +tyH +xXu +pqG aag scz bdH @@ -94909,9 +94899,9 @@ aaa bdH aad aag -nBJ -iWJ -eQR +tNf +eYN +fvs bBA bBx amg @@ -94935,9 +94925,9 @@ bPq amg rAD bBA -sGK -nhV -wid +kuI +ucU +tQN aag ajZ bdH @@ -95006,9 +94996,9 @@ bdH bdH aad aag -lrE -gkr -wMF +ocS +sjC +eDN cQv eaf bEv @@ -95042,9 +95032,9 @@ iFc thL tUx fgR -pdp -hIG -cPj +xXu +tDq +pqG aag ajZ bdH @@ -95112,9 +95102,9 @@ aaa aac aag aag -nBJ -dKS -ffN +tNf +tzw +pcY bBA bBy amg @@ -95138,9 +95128,9 @@ aoa amg bQE bBA -bME -sGK -wid +dkR +kuI +tQN aag aag ajY @@ -95209,9 +95199,9 @@ bdH bdH aad aag -lrE -xkc -vDh +ocS +pjr +lYZ cQv eaf bEv @@ -95245,9 +95235,9 @@ thL thL tUx fgR -pdp -aCA -cPj +xXu +rlY +pqG aag okD bdH @@ -95314,10 +95304,10 @@ aaa aaa aad aag -nBJ -nBJ -eQR -bTW +tNf +tNf +fvs +phn bBA bBz aqu @@ -95341,10 +95331,10 @@ bEx aqu bQI bBA -gsy -sGK -wid -wid +xTQ +kuI +tQN +tQN aag ajZ aaa @@ -95412,9 +95402,9 @@ bdH bdH aad aag -uDg -xkc -xkc +sOq +pjr +pjr cQv eaf bEv @@ -95448,9 +95438,9 @@ thL thL tUx xkd -pdp -vhA -xiV +xXu +xNY +lFL aag ajZ bdH @@ -95517,10 +95507,10 @@ aaa aaa aad aag -nBJ -ldF -ldF -xiP +tNf +cCG +cCG +oVn bBA lsV amg @@ -95544,10 +95534,10 @@ bPC amg pyL bBA -cDb -sGK -nhV -wid +nrG +kuI +ucU +tQN aag ajZ bdH @@ -95615,9 +95605,9 @@ bdH bdH aad aag -uDg -lDT -xkc +sOq +naN +pjr cQv eaf bEv @@ -95651,9 +95641,9 @@ thL thL tUx xkd -pdp -oDh -xiV +xXu +tyH +lFL aag ajZ bdH @@ -95719,11 +95709,11 @@ aaf aaf aaf aag -nBJ -nBJ -ldF -eQR -uFp +tNf +tNf +cCG +fvs +grf bBA bBA tiR @@ -95740,18 +95730,18 @@ cmJ alU alU alU -pzW -pzW -pzW -pzW -hNB -pzW -pzW -ipB -mVh -sGK -wid -wid +tYu +tYu +tYu +tYu +xqj +tYu +tYu +hNJ +aGh +kuI +tQN +tQN aag aaf aaf @@ -95818,9 +95808,9 @@ bdH bdH aad aag -uDg -gkr -qsp +sOq +sjC +vtH cQv xLl bEv @@ -95854,9 +95844,9 @@ tUx vsz oEE xkd -gNZ -pdp -xiV +pVg +xXu +lFL aag ajZ bdH @@ -95919,18 +95909,18 @@ aaa aaa aad aag -nBJ -nBJ -nBJ -nBJ -ldF -ldF -bos -bos -bos -haR -uHT -jHn +tNf +tNf +tNf +tNf +cCG +cCG +oZF +oZF +oZF +hLW +bOy +cLk kcp bWJ nar @@ -95943,21 +95933,21 @@ aoi grG bXY alU -xNM -ikl -eLp -dFM -lEV -mZP -sDx -sDx -sDx -mVh -sGK -wid -wid -wid -wid +cFN +wzJ +niW +kpr +xac +dKq +iZy +iZy +iZy +aGh +kuI +tQN +tQN +tQN +tQN aag ajZ aaa @@ -96020,10 +96010,10 @@ aaa bdH bdH aad -uDg -uDg -xkc -eeA +sOq +sOq +pjr +vnU cQv dzG kde @@ -96057,10 +96047,10 @@ smZ wIC tMH wIC -pRs -pdp -xiV -xiV +cBQ +xXu +lFL +lFL ajZ bdH bdH @@ -96122,18 +96112,18 @@ aaa aaa aad aag -nBJ -fUz -ldF -eQR -ldF -ikA -bos -gpO -uHT -bKP -uHT -sGQ +tNf +naW +cCG +fvs +cCG +eFI +oZF +luJ +bOy +nrh +bOy +jrN kcp wMv nCR @@ -96146,21 +96136,21 @@ aoi bNk ecZ alU -odt -ikl -qAy -mua -mua -mua -lEV -eQz -sDx -mVh -fJu -mVh -roj -qzA -wid +qyL +wzJ +hnP +jap +jap +jap +xac +iqe +iZy +aGh +ffX +aGh +lHV +ftA +tQN aag ajZ aaa @@ -96223,10 +96213,10 @@ aaa bdH bdH aad -uDg -hzN -gkr -krG +sOq +vvj +sjC +mzk cQv rdM gUg @@ -96260,10 +96250,10 @@ crp dco dqZ wIC -uxb -oDh -pdp -xiV +fGB +tyH +xXu +lFL ajZ bdH bdH @@ -96325,14 +96315,14 @@ aaa aaa aad aag -nBJ -lJM -ldF -eQR -ldF -lyP -bos -gpO +tNf +cvL +cCG +fvs +cCG +sep +oZF +luJ kcp kcp iqp @@ -96349,21 +96339,21 @@ cmJ alU alU alU -wrr -kjw -hBr -tqQ -hgp -hgp -hgp -nef -sDx -mXm -mVh -sGK -sGK -nhV -wid +eyq +wIP +eMp +kbN +oil +oil +oil +hqg +iZy +laB +aGh +kuI +kuI +ucU +tQN aag ajZ aaa @@ -96426,9 +96416,9 @@ aaa bdH bdH aad -uDg -fHb -gkr +sOq +vEq +sjC vxM vxM vxM @@ -96464,9 +96454,9 @@ vAG jIo wIC wIC -oDh -pdp -xiV +tyH +xXu +lFL ajZ bdH bdH @@ -96528,14 +96518,14 @@ aaa aaa aad aag -nBJ -eQR -eQR -ldF -eQR -sxS -bos -gpO +tNf +fvs +fvs +cCG +fvs +hdO +oZF +luJ kcp bBD bTS @@ -96543,30 +96533,30 @@ bTS lxo qcy kcp -sub -sub -tqf -pHF -vYd -ghF -eSp -ghF -aFG -pPQ -juS -mdk -mdk -mdk -mdk -mdk -kCd +pHk +pHk +mLy +jfe +mYp +aTc +kXb +aTc +dSg +hLA +riG +iPp +iPp +iPp +iPp +iPp +oth bSv bSv bSv bSv bSv -sGK -wid +kuI +tQN aag ajZ aaa @@ -96629,9 +96619,9 @@ aaa bdH bdH aad -uDg -xkc -gkr +sOq +pjr +sjC vxM rfY kGu @@ -96667,9 +96657,9 @@ sJm dqZ rDY wIC -pdp -kIf -xiV +xXu +wkw +lFL ajZ bdH bdH @@ -96731,14 +96721,14 @@ aaa aaa aad aag -nBJ -ldF -ldF -wcJ -jCr -nQn -bos -uHT +tNf +cCG +cCG +dzU +vAB +gsA +oZF +bOy kcp bTR iEg @@ -96746,30 +96736,30 @@ oQM aqI aqI kcp -bOw -mYt -jsR -vPW -vyB -vyB -vyB -vyB -aFG -vFp -yaX -sje -sje -sje -sje -sje -jhS +crX +iAf +aiI +kps +xec +xec +xec +xec +dSg +ame +rHm +niN +niN +niN +niN +niN +qRi qih bTH foN cDZ bSv -hLu -wid +lGZ +tQN aag ajZ aaa @@ -96832,9 +96822,9 @@ aaa bdH aac aag -uDg -kac -xkc +sOq +oAr +pjr vxM tQi wee @@ -96870,9 +96860,9 @@ rWF uSB lzY wIC -pdp -ome -xiV +xXu +xjh +lFL aag ajY bdH @@ -96934,14 +96924,14 @@ aaa aaa aad aag -nBJ -ecS -ldF -bos -bos -bos -bos -uHT +tNf +qqi +cCG +oZF +oZF +oZF +oZF +bOy kcp lxW hPh @@ -96949,30 +96939,30 @@ wGX bFr ppe kcp -lEV -ghF -ghF -jak -jdC -jdC -jdC -jdC -wiQ -dEo -fGd -sje -sje -sje -sje -sje -jhS +xac +aTc +aTc +iZN +fob +fob +fob +fob +tNm +pwe +oKA +niN +niN +niN +niN +niN +qRi bSv tjw bTH bTV bSv -sGK -wid +kuI +tQN aag ajZ aaa @@ -97035,9 +97025,9 @@ bdH bdH aad aag -uDg -fco -qsp +sOq +eUe +vtH vxM jvP rDQ @@ -97073,9 +97063,9 @@ wIC wIC wHM wIC -dJy -aCA -xiV +pEp +rlY +lFL aag ajZ bdH @@ -97137,14 +97127,14 @@ aaa aaa aad aag -nBJ -eQR -ldF -bos -vkO -ibf -bos -rIw +tNf +fvs +cCG +oZF +uDl +eZK +oZF +gzE kcp wTN kZN @@ -97152,30 +97142,30 @@ rgK hbu iYe bJl -yfd -yfd -yfd -kgS -lEV -lEV -lEV -lEV -aFG -mua -yaX -sje -sje -oiX -sje -sje -rqQ +rMh +rMh +rMh +cPV +xac +xac +xac +xac +dSg +jap +rHm +niN +niN +ngu +niN +niN +nxL bSv ifb bTH bSv xVT -flr -wid +eEq +tQN aag ajZ aaa @@ -97238,9 +97228,9 @@ bdH bdH aad aag -uDg -lDT -xkc +sOq +naN +pjr vxM sbP sbP @@ -97264,7 +97254,7 @@ xuZ xuZ xuZ rEY -gxU +lfa giR vUP wIC @@ -97276,9 +97266,9 @@ wIC xgI dBQ wIC -oLf -hIG -xiV +gOu +tDq +lFL aag ajZ bdH @@ -97340,14 +97330,14 @@ aaa aaa aad aag -nBJ -ldF -eQR -bos -lBl -nEO -bos -gpO +tNf +cCG +fvs +oZF +ueH +oTn +oZF +luJ kcp oMi bAZ @@ -97355,30 +97345,30 @@ bTS bTS niR kcp -lEV -ghF -ghF -pHF -lEV -ghF -ghF -ghF -aFG -mua -hoc -sje -sje -sje -sje -sje -jhS +xac +aTc +aTc +jfe +xac +aTc +aTc +aTc +dSg +jap +dbH +niN +niN +niN +niN +niN +qRi bSv aIX aIX bSv -xcI -sIu -wid +gib +yjl +tQN aag ajZ aaa @@ -97441,9 +97431,9 @@ bdH bdH aad aag -uDg -xkc -gkr +sOq +pjr +sjC vxM pas ncf @@ -97479,9 +97469,9 @@ wIC qqV nNg wIC -oDh -xas -xiV +tyH +yef +lFL aag ajZ bdH @@ -97543,14 +97533,14 @@ aaa aaa aad aag -nBJ -ldF -eQR -rqv -gpO -gpO -bos -gpO +tNf +cCG +fvs +jtv +luJ +luJ +oZF +luJ kcp kcp kcp @@ -97558,30 +97548,30 @@ sXE kcp kcp kcp -lEV -vyB -vyB -pHF -lEV -ghF -vyB -vyB -aFG -pJq -yaX -sje -sje -sje -sje -sje -jhS +xac +xec +xec +jfe +xac +aTc +xec +xec +dSg +fAo +rHm +niN +niN +niN +niN +niN +qRi bSv cop cop bSv -kxe -sGK -wid +oLa +kuI +tQN aag ajZ aaa @@ -97644,9 +97634,9 @@ bdH bdH aad aag -uDg -xkc -gkr +sOq +pjr +sjC vxM vxM vxM @@ -97682,9 +97672,9 @@ wIC wIC wIC wIC -oDh -nEc -xiV +tyH +pwx +lFL aag ajZ bdH @@ -97746,45 +97736,45 @@ aaa aaa aad aag -nBJ -ldF -eQR -bos -iWH -gpO -bos -gpO -nEZ +tNf +cCG +fvs +oZF +vfn +luJ +oZF +luJ +jSz kcp bTU gZK bTS lyX kcp -rMj -ghF -vyB -pHF -lEV -ghF -vyB -ghF -aFG -pPQ -juS -jjl -jjl -jjl -jjl -jjl -kCd +siB +aTc +xec +jfe +xac +aTc +xec +aTc +dSg +hLA +riG +cez +cez +cez +cez +cez +oth bSv kBY bTn bSv -mVh -mVh -wid +aGh +aGh +tQN aag ajZ aaa @@ -97847,12 +97837,12 @@ aaf aaf aag aag -uDg -cUl -xkc -ode -xkc -gNg +sOq +tnD +pjr +ugt +pjr +ixl vBm tJM viH @@ -97882,12 +97872,12 @@ jhI jfY bra wIC -eQm -rXQ -vky -oDh -pdp -xiV +ssx +sdP +htn +tyH +xXu +lFL aag aag aaf @@ -97945,53 +97935,53 @@ aaa aaa aaa aaa -nBJ -nBJ -nBJ -nBJ -nBJ -eQR -ldF -bos -bos -olW -bos -uHT -gUi +tNf +tNf +tNf +tNf +tNf +fvs +cCG +oZF +oZF +fCG +oZF +bOy +nkR kcp onY wdf bTS kcp kcp -sDx -ghF -vyB -pHF -lEV -ghF -vyB -ghF -sDx -prl -gNy -fbU -vbZ -qEl -qEl -qEl -vWs +iZy +aTc +xec +jfe +xac +aTc +xec +aTc +iZy +jeu +fyi +rxr +oZv +toz +toz +toz +pYh bSv bSv bSv bSv -sGK -mVh -wid -wid -wid -wid -wid +kuI +aGh +tQN +tQN +tQN +tQN +tQN aaa aaa aaa @@ -98051,11 +98041,11 @@ adG adG adG adG -rvI -cYo -ode -gkr -gkr +xKo +pfy +ugt +sjC +sjC vBm vBm vBm @@ -98085,11 +98075,11 @@ jES vBJ qTQ wIC -oDh -pdp -vky -pdp -paJ +tyH +xXu +htn +xXu +xZs tuA tuA tuA @@ -98148,53 +98138,53 @@ aaa aaa aaa aaa -nBJ -ldF -jsE -rdN -eQR -eQR -eQR -ldF -sXq -rdN -rMO -uHT -hfv +tNf +cCG +sic +ydR +fvs +fvs +fvs +cCG +gPs +ydR +qiD +bOy +bxZ kcp xNz utK rKA kcp kcp -sDx -hIF -vyB -pHF -lEV -ghF -vyB -kEW -sDx -xHl -vyB -mQd -akn -vTM -vyB -lEV -meE -gGw -mVh -iBu -sGK -mVh -mVh -mVh -sGK -gDX -sGK -wid +iZy +mBX +xec +jfe +xac +aTc +xec +kki +iZy +fio +xec +hHs +gyc +vDK +xec +xac +lcZ +eIe +aGh +ixc +kuI +aGh +aGh +aGh +kuI +xow +kuI +tQN aaa aaa aaa @@ -98257,8 +98247,8 @@ akC akC akC akC -uvp -gkr +sLs +sjC vBm mvE tak @@ -98288,8 +98278,8 @@ vAG opF pDW wIC -oDh -lhj +tyH +iJb kCi kCi kCi @@ -98351,16 +98341,16 @@ aaa aaa aaa aaa -fwK -cZB -uaG -uaG -uaG -uaG -uaG -uaG -uaG -uaG +hEg +rPc +iGz +iGz +iGz +iGz +iGz +iGz +iGz +iGz bcm bcm kcp @@ -98370,34 +98360,34 @@ kcp kcp kcp kcp -sDx -lQB -qax -jTH -gPU -lQB -qax -lQB -sDx -sDx -sDx -sDx -sDx -sDx -sDx -sDx -sDx -sDx -rgt -rgt -sYr -rgt -rgt -rgt -rgt -rgt -ctw -hAh +iZy +ggC +sPI +bak +vjL +ggC +sPI +ggC +iZy +iZy +iZy +iZy +iZy +iZy +iZy +iZy +iZy +iZy +yaS +yaS +wsF +yaS +yaS +yaS +yaS +yaS +vSu +pPR aaa aaa aaa @@ -98460,8 +98450,8 @@ sFf bbV bzz akC -pzc -gkr +qoj +sjC vBm qkn eRL @@ -98491,8 +98481,8 @@ vzj wIC wIC wIC -oDh -nYi +tyH +mWh kCi sDD kOv @@ -98554,16 +98544,16 @@ aaa aaa aaa aaa -fwK -elY -uaG -vjk -lxd -dPk -nBV -dyq -lxd -uaG +hEg +mnz +iGz +vCM +ecm +nkp +bNK +ivY +ecm +iGz lYN byr aXh @@ -98591,16 +98581,16 @@ aXj qUh xyw ccG -rgt -gMS -vXF -hsc -epk -lwG -uJb -rgt -wRf -hAh +yaS +vFa +dCf +pWR +rrO +tLj +pye +yaS +rKI +pPR aaa aaa aaa @@ -98663,8 +98653,8 @@ nIt adu aHZ akC -lDT -gkr +naN +sjC vBm rJN nJz @@ -98694,8 +98684,8 @@ aTg rFg kkv wIC -pdp -pdp +xXu +xXu kCi uAj qfa @@ -98757,16 +98747,16 @@ aaa aaa aaa aaa -okd -lql -okd -urk -fmZ -ePq -fmZ -cqd -jhc -eml +oFW +lxO +oFW +gic +cZX +wlv +cZX +rQX +jtS +fMB btO aYt bzQ @@ -98794,16 +98784,16 @@ bVM bVM bwn bVM -oTH -kUA -gRJ -mqB -vjG -mqB -oQw -avp -oAa -efk +agh +jvO +gcF +nTB +xYi +nTB +gAY +xnr +jvv +egn aaa aaa aaa @@ -98866,8 +98856,8 @@ nkx bbZ btv akC -lCm -gkr +isz +sjC vBm vBm knO @@ -98897,8 +98887,8 @@ aTg wIC wIC wIC -pdp -iEa +xXu +vcl kCi eqI ssZ @@ -98960,16 +98950,16 @@ aaa aaa aaa aaa -okd -lql -okd -nDb -jhc -ccL -rDf -xZM -mnc -eml +oFW +lxO +oFW +jeW +jtS +hbP +xQq +umf +cOC +fMB btO aYt aYt @@ -98997,16 +98987,16 @@ aYt aYt aYt btO -tpG -wdQ -ybP -dhQ -dcx -mLg -wAK -efk -bTz -efk +gIK +efd +rzG +wSd +uGI +sdz +uBX +egn +hUr +egn aaa aaa aaa @@ -99069,9 +99059,9 @@ pvP adu aHZ akC -jdn -lgk -hMM +myy +dwX +sBD vBm rRr dFU @@ -99099,9 +99089,9 @@ wtY aTg jIT wIC -aCA -pdp -pdp +rlY +xXu +xXu kCi nwW btD @@ -99163,16 +99153,16 @@ aaa aaa aaa aaa -okd -lql -okd -nDb -jhc -jhc -jhc -vOV -eAm -eml +oFW +lxO +oFW +jeW +jtS +jtS +jtS +rQP +rNZ +fMB btO aYu aYu @@ -99200,16 +99190,16 @@ aYu aYu aYu btO -tpG -hbA -uky -mLg -mLg -mLg -wAK -efk -bTz -efk +gIK +nvE +efh +sdz +sdz +sdz +uBX +egn +hUr +egn aaa aaa aaa @@ -99272,9 +99262,9 @@ adu adu aHZ akC -pek -rir -pek +soC +xkE +soC vBm hqU gcT @@ -99302,9 +99292,9 @@ yeR aTg nNg wIC -pjz -uTs -pjz +apx +wfd +apx kCi nRR btD @@ -99366,16 +99356,16 @@ aaa aaa aaa aaa -okd -lql -okd -bRt -oGm -hPD -aIy -ekR -gWm -mpV +oFW +lxO +oFW +snC +lWq +mnD +dKS +rqL +wTF +sXJ bvf bdL bvf @@ -99403,16 +99393,16 @@ bvf bvf bdL bvf -srh -gKo -fsf -fuU -cnI -qfq -vjT -efk -bTz -efk +hak +nWZ +mpt +tCv +ueX +pZa +dRV +egn +hUr +egn aaa aaa aaa @@ -99475,9 +99465,9 @@ nIt adu hxG akC -ibP -loE -cmr +sUI +ihF +xLp vBm vBm vBm @@ -99505,9 +99495,9 @@ wIC wIC wIC wIC -hrI -ioM -xCy +pVK +tqG +mGE kCi nNt vqC @@ -99569,16 +99559,16 @@ aaa aaa aaa aaa -fwK -jru -uaG -vaM -lxd -cif -jaz -dyq -lxd -uaG +hEg +lli +iGz +eQq +ecm +wgY +krq +ivY +ecm +iGz vCg bHB xyw @@ -99606,16 +99596,16 @@ xyw xyw bHB osx -rgt -qTu -wlD -gTk -qSI -lwG -uJb -rgt -oCa -hAh +yaS +umn +qLb +bbF +nHl +tLj +pye +yaS +kaw +pPR aaa aaa aaa @@ -99678,10 +99668,10 @@ wmg adu cqQ afT -txy -rbp -cri -euL +gRB +jfn +oyg +rRg hiM hiM qRj @@ -99707,10 +99697,10 @@ xuZ pcj hXm fZq -iFA -sLx -twQ -twQ +kXV +wbT +xJK +xJK bpd bqT vZv @@ -99772,16 +99762,16 @@ aaa aaa aaa aaa -fwK -cZB -uaG -uaG -uaG -uaG -uaG -uaG -hte -lma +hEg +rPc +iGz +iGz +iGz +iGz +iGz +iGz +coQ +jhN xyw bHB xyw @@ -99810,15 +99800,15 @@ xyw bHB xyw bcm -hOV -hOV -hOV -hOV -hOV -hOV -hOV -vVZ -hAh +vAw +vAw +vAw +vAw +vAw +vAw +vAw +xsc +pPR aaa aaa aaa @@ -99881,10 +99871,10 @@ pvP adu frF akC -oUt -cmr -iPq -aMf +skO +xLp +lAX +tCi vka vka mPj @@ -99906,14 +99896,14 @@ awz vSN mPj rWs -inh +hIh ewr lPC mgy -qoN -tVx -feG -pPy +hCv +asV +cxi +hLD kCi nRR btM @@ -99975,16 +99965,16 @@ aaa aaa aaa aaa -sGw -nmp -eWs -usq -rQw -pOH -sbt -smU -nZR -lpl +wZa +lqd +nqC +wcx +nhU +ybq +mch +fGG +wBl +sbb xyw bHB gjm @@ -100013,15 +100003,15 @@ bcb bHB btO bcm -sCW -nvX -tTC -jdu -tWd -aPe -hOV -ygv -kyP +sBP +eVY +nrD +xUb +spn +sWy +vAw +fgA +sNF aaa aaa aaa @@ -100085,10 +100075,10 @@ tyK iKI akC akC -aMf -hSv -xoB -xoB +tCi +fwT +hAd +hAd kzy wIQ jHh @@ -100112,11 +100102,11 @@ vka jHh lnt ckP -xTx -xTx -cyv -eKZ -xTx +izT +izT +aWY +uFb +izT kCi cfk uws @@ -100178,16 +100168,16 @@ aaa aaa aaa aaa -sGw -klT -eWs -njO -riC -eqd -goY -fqJ -nOX -xcV +wZa +uJT +nqC +kWG +hDA +qvl +bQF +gqy +jWn +yeO xyw bHB wqh @@ -100216,15 +100206,15 @@ bcc bHB aYt bcm -xsQ -tTC -tTC -tTC -tTC -tTC -iho -uKH -kyP +aFx +nrD +nrD +nrD +nrD +nrD +vUs +cUf +sNF aaa aaa aaa @@ -100287,12 +100277,12 @@ akC akC akC akC -ehM -cmr -iPq -oQJ -xoB -xoB +paN +xLp +lAX +qEa +hAd +hAd vSN jHh lnt @@ -100314,12 +100304,12 @@ sTo wIQ jHh jUY -xTx -xTx -hrI -tVx -feG -bxY +izT +izT +pVK +asV +cxi +sCs kCi kCi kCi @@ -100381,16 +100371,16 @@ aaa aaa aaa aaa -sGw -xzB -bfs -bYW -bYW -bYW -bYW -kNf -vpT -xcV +wZa +jca +ezR +veX +veX +veX +veX +duX +dCb +yeO xyw bHB sXB @@ -100419,15 +100409,15 @@ fVz bHB bBN bcm -uPQ -tTC -tTC -tTC -tTC -gzN -hOV -uXm -kyP +vUW +nrD +nrD +nrD +nrD +voo +vAw +qip +sNF aaa aaa aaa @@ -100487,15 +100477,15 @@ adG adG adG adG -ltw -cmr -oRm -cmr -cmr -iPq -oQJ -pcc -xoB +pbd +xLp +bUJ +xLp +xLp +lAX +qEa +rXM +hAd xDn uwN wiN @@ -100517,15 +100507,15 @@ awz oWg uwN jUY -xTx -lym -hrI -lIQ -noy -rcG -lwY -feG -kfB +izT +hTj +pVK +mSG +ois +xnG +vef +cxi +tkX tuA tuA tuA @@ -100584,16 +100574,16 @@ aaa aaa aaa aaa -sGw -xzB -bfs -qfQ -cJm -jwi -bYW -phw -xMG -xcV +wZa +jca +ezR +fKv +mot +ndc +veX +cIl +dej +yeO xyw bHB aZO @@ -100622,15 +100612,15 @@ bGF bHB aYt bcm -vKI -tTC -hhd -ybm -ffq -rsV -hOV -mLN -kyP +oMp +nrD +rRP +tqs +ciO +hAu +vAw +wXb +sNF aaa aaa aaa @@ -100689,16 +100679,16 @@ aag aag aag aag -cZe -cmr -lSX -uaA -snx -snx -fLt -cmr -fYr -xoB +btL +xLp +rTj +uNd +cET +cET +hyj +xLp +oTN +hAd pNa iCu awz @@ -100720,16 +100710,16 @@ awz ceE eMP faX -xTx -tIX -ioM -abn -ioM -lIQ -qOY -xZH -mSr -nLp +izT +reF +tqG +bjH +tqG +mSG +lGW +pep +bBp +teI aag aag aag @@ -100787,16 +100777,16 @@ aaa aaa aaa aaa -sGw -xzB -bfs -wVN -qxI -qmM -bYW -wFN -wFN -tGH +wZa +jca +ezR +xwU +sIw +bVk +veX +djW +djW +lmy hmy bHB aZP @@ -100825,15 +100815,15 @@ bGG bHB btO bcm -kQr -tTC -tTC -tTC -tTC -tTC -hOV -uKH -kyP +odT +nrD +nrD +nrD +nrD +nrD +vAw +cUf +sNF aaa aaa aaa @@ -100892,9 +100882,9 @@ aag aag aag aag -cZe -cCL -vDz +btL +lZD +vIE kcH kcH kcH @@ -100930,9 +100920,9 @@ aES aES aES aES -lIQ -xZH -nLp +mSG +pep +teI aag aag aag @@ -100990,16 +100980,16 @@ aaa aaa aaa aaa -sGw -onv -bfs -pjh -qxI -qxI -iXm -qxI -qxI -vvX +wZa +tXA +ezR +fiz +sIw +sIw +cWt +sIw +sIw +iny xyw bHB aZQ @@ -101028,15 +101018,15 @@ bGH bHB btO bcm -qhG -krJ -jOt -tTC -tTC -tTC -hOV -uKH -kyP +lim +bOb +hvP +nrD +nrD +nrD +vAw +cUf +sNF aaa aaa aaa @@ -101092,12 +101082,12 @@ aaa aad aag aag -cZe -cZe -cZe -cZe -iPq -cmr +btL +btL +btL +btL +lAX +xLp kcH kcH kcH @@ -101133,12 +101123,12 @@ tKr uNg cLN aES -hrI -tVx -nLp -nLp -nLp -nLp +pVK +asV +teI +teI +teI +teI aag aag ajZ @@ -101193,16 +101183,16 @@ aaa aaa aaa aaa -sGw -xzB -bfs -wes -qxI -dKO -ykv -jPu -qKl -pPd +wZa +jca +ezR +kGh +sIw +aDG +lnG +bCI +whX +qHZ xyw bHB aZR @@ -101231,15 +101221,15 @@ bGI bHB xyw bcm -gOk -tTC -tTC -tTC -tTC -bjg -hOV -siT -kyP +vyZ +nrD +nrD +nrD +nrD +cOy +vAw +raT +sNF aaa aaa aaa @@ -101295,12 +101285,12 @@ aaa aad aag aag -cZe -ivu -gSy -ltw -iPq -cmr +btL +fyq +pcR +pbd +lAX +xLp kcH rlf soq @@ -101336,12 +101326,12 @@ iTD vCO vCO jxB -hrI -tVx -hrI -hrI -hrI -nLp +pVK +asV +pVK +pVK +pVK +teI aag aag ajZ @@ -101396,16 +101386,16 @@ aaa aaa aaa aaa -sGw -dvD -bfs -bfs -sir -bfs -bfs -eWs -eWs -eWs +wZa +gtF +ezR +ezR +ngc +ezR +ezR +nqC +nqC +nqC xyw bHB aZO @@ -101433,16 +101423,16 @@ baI bGF bHB eEc -hOV -hOV -tTC -tSm -tcd -tTC -rsV -hOV -siT -kyP +vAw +vAw +nrD +wkP +ade +nrD +hAu +vAw +raT +sNF aaa aaa aaa @@ -101498,12 +101488,12 @@ aaa aad aag aag -cZe -nHu -sit -snx -oVY -cGA +btL +hpa +lyL +cET +yak +eAa kcH rBa nPs @@ -101539,12 +101529,12 @@ vCO vCO vCO jxB -gUu -dWc -lVW -kcs -rDH -nLp +cBz +tgh +kfV +qyw +tcn +teI aag aag ajZ @@ -101599,16 +101589,16 @@ aaa aaa aaa aaa -sGw -fea -eWs -rsS -xzB -mKs -sCT -rXU -rEt -eWs +wZa +rIG +nqC +xWI +jca +kXe +vJO +uKl +jsj +nqC wlb bHB aZP @@ -101636,16 +101626,16 @@ baI bGG bHB bGK -rrh -xKG -gyH -rSx -dCz -tTC -lDA -hOV -siT -kyP +qny +kYb +nGz +cSl +nMN +nrD +sGm +vAw +raT +sNF aaa aaa aaa @@ -101701,18 +101691,18 @@ aaa aad aag aag -cZe -lSX -nRE -cmr -cmr -sWw +btL +rTj +kCo +xLp +xLp +jcs kcH rIW oGx wvU yiX -nrb +vLX hyQ aic aov @@ -101742,12 +101732,12 @@ wmT jhW mWD jxB -xBK -moc -pYQ -tVx -hrI -nLp +rgL +dNy +koa +asV +pVK +teI aag aag ajZ @@ -101802,16 +101792,16 @@ aaa aaa aaa aaa -sGw -dvD -kWI -xzB -dvD -ipk -dvD -xzB -dvD -meT +wZa +gtF +vkQ +jca +gtF +jyU +gtF +jca +gtF +jUK wqh bHB aZQ @@ -101839,16 +101829,16 @@ baI bGH bHB cuy -rrh -iNR -uCR -tTC -tTC -tTC -fca -vjS -xee -kyP +qny +slu +kXq +nrD +nrD +nrD +wIg +tcY +tVl +sNF aaa aaa aaa @@ -101902,12 +101892,12 @@ aaa aaa aaa aad -cZe -cZe -cZe -vfS -cmr -cmr +btL +btL +btL +ouy +xLp +xLp agj agj agj @@ -101947,12 +101937,12 @@ aES aES aES aES -nVn -cZO -hrI -nLp -nLp -nLp +qFr +fqP +pVK +teI +teI +teI ajZ aaa aaa @@ -102005,16 +101995,16 @@ aaa aac aaf aaf -sGw -xzB -eWs -omx -xzB -rAw -qNK -rEt -sCT -eWs +wZa +jca +nqC +oqW +jca +jwa +uIZ +jsj +vJO +nqC pyC bHB aZR @@ -102042,16 +102032,16 @@ baI bGI bHB kwQ -rrh -iNR -uCR -rDR -tTC -wyz -gzN -hOV -uKH -kyP +qny +slu +kXq +dvN +nrD +wJT +voo +vAw +cUf +sNF aaf aaf ajY @@ -102105,11 +102095,11 @@ aaa aaa aaa aad -tvt -fRg -peM -jUV -cmr +huD +gRq +cmb +yai +xLp agj agj jbN @@ -102146,16 +102136,16 @@ aVU aRq bHG ceK -sxD +aWj bhJ bHG aES aES -fMU -hrI -dPd -rLH -rwZ +jLB +pVK +exx +nrg +vYk ajZ aaa aaa @@ -102207,17 +102197,17 @@ aaa aaa aad aag -sGw -sGw -xzB -eWs -eWs -sOr -eWs -eWs -eWs -eWs -eWs +wZa +wZa +jca +nqC +nqC +nvA +nqC +nqC +nqC +nqC +nqC cCE bHB aZO @@ -102245,17 +102235,17 @@ baI bGF bHB iAw -hOV -hOV -tTC -tTC -tTC -jRp -rsV -hOV -kzs -kyP -kyP +vAw +vAw +nrD +nrD +nrD +xun +hAu +vAw +rLi +sNF +sNF aag ajZ aaa @@ -102308,11 +102298,11 @@ aaa aaa aaa aad -tvt -jhR -fix -pfL -cmr +huD +esl +wBy +nRC +xLp agj kyR agc @@ -102354,11 +102344,11 @@ bpe brS rOs aES -dWA -hrI -hrI -dPO -rwZ +cGC +pVK +pVK +bxw +vYk ajZ aaa aaa @@ -102410,17 +102400,17 @@ aaa aaa aad aag -sGw -dvD -xzB -eWs -kRU -dON -oJj -vLp -oYA -gWt -jHt +wZa +gtF +jca +nqC +kbh +uwj +ede +hHz +iGf +wqs +iBk amo bHB aZP @@ -102449,16 +102439,16 @@ bGG bHB btO xjW -uTk -tTC -tTC -tTC -cyR -tTC -hOV -qpV -hSb -kyP +rDC +nrD +nrD +nrD +kCN +nrD +vAw +iDD +rhf +sNF aag ajZ aaa @@ -102511,11 +102501,11 @@ aaa aaa aaa aad -tvt -oyX -vBC -rhm -she +huD +fcl +dXm +thK +bTL agj ogK qgr @@ -102557,11 +102547,11 @@ aES aES aES aES -tPc -jwq -vwU -uew -rwZ +vMw +htB +fII +fpj +vYk ajZ aaa aaa @@ -102613,17 +102603,17 @@ aaa aaa aad aag -sGw -dvD -xzB -eWs -irJ -bKk -kil -vnY -fCG -gYg -jHt +wZa +gtF +jca +nqC +oVc +lad +kTF +hzp +qZj +qWG +iBk gRP bHB aZQ @@ -102652,16 +102642,16 @@ bGH bHB btO bcm -gBU -tTC -tTC -efJ -tTC -sHe -hOV -uKH -vyr -kyP +gnI +nrD +nrD +uqW +nrD +dkv +vAw +cUf +lHU +sNF aag ajZ aaa @@ -102714,11 +102704,11 @@ aaa aaa aaa aad -cZe -kwg -cmr -cmr -jkq +btL +wEp +xLp +xLp +jQa agj nCx tYM @@ -102755,16 +102745,16 @@ ceK lcy iTw ceK -sxD +aWj bhJ bHG nis aES -xGF -tVx -jne -rDH -nLp +cMk +asV +taM +tcn +teI ajZ aaa aaa @@ -102816,22 +102806,22 @@ aaa aaa aad aag -sGw -fzx -dWJ -eWs -yko -qlL -oxz -gnB -vnY -mRH -jHt +wZa +ptr +pvv +nqC +mWl +vdB +xEI +mTK +hzp +nkJ +iBk xjK bHB btO bdU -aog +hPf bdU bfV baM @@ -102855,16 +102845,16 @@ bcb bHB aYt bcm -ohI -tTC -tTC -tTC -tTC -tml -hOV -uKH -hZZ -kyP +uDT +nrD +nrD +nrD +nrD +lRV +vAw +cUf +uTS +sNF aag ajZ aaa @@ -102917,11 +102907,11 @@ bdH aaa aaa aad -tvt -gJf -cmr -hYE -vAz +huD +szs +xLp +riI +nPF agj nXO hvH @@ -102963,11 +102953,11 @@ bpe brS cpj aES -hro -tVx -tNB -ioM -rwZ +jLa +asV +whv +tqG +vYk ajZ aaa aaa @@ -103019,17 +103009,17 @@ aaa aaa aad aag -sGw -dvD -nsd -eWs -kqm -vnY -wjL -oGF -gKK -dBR -jHt +wZa +gtF +lmW +nqC +pgx +hzp +tnT +kov +iBD +dmz +iBk bwl bHB xyw @@ -103058,16 +103048,16 @@ bcc bHB xyw bcm -grT -tTC -tTC -ove -tTC -rsV -hOV -siT -bUQ -kyP +prS +nrD +nrD +jJl +nrD +hAu +vAw +raT +vtL +sNF aag ajZ aaa @@ -103120,11 +103110,11 @@ bdH aaa aaa aad -tvt -hsu -cmr -pFq -iPq +huD +dlW +xLp +xxr +lAX agj dyj fnv @@ -103166,11 +103156,11 @@ aES aES aES aES -uhh -cZO -ppG -ioM -rwZ +uyK +fqP +psl +tqG +vYk ajZ aaa aaa @@ -103222,17 +103212,17 @@ aaa aaa aad aag -sGw -dvD -kFU -eWs -oUz -mqZ -mqZ -lVZ -ctQ -wer -pKW +wZa +gtF +ykB +nqC +ncb +jYu +jYu +tnS +kQP +lcz +itD wqh bHB vpW @@ -103261,16 +103251,16 @@ fVz bHB vpW bcm -cKm -tTC -cOh -tTC -tTC -dPq -hOV -siT -xFt -kyP +gTi +nrD +iLv +nrD +nrD +lju +vAw +raT +oPu +sNF aag ajZ aaa @@ -103323,11 +103313,11 @@ bdH aaa aaa aad -tvt -hJD -cmr -fFQ -pMH +huD +gSq +xLp +nYu +hYw agj mXj mXj @@ -103364,16 +103354,16 @@ ceK wVB psa ceK -sxD +aWj bhJ bHG brS aES -jrI -tVx -raO -ioM -rwZ +cuk +asV +bwM +tqG +vYk ajZ aaa aaa @@ -103425,22 +103415,22 @@ aaa aaa aad aag -sGw -xzB -xer -eWs -uES -xrT -gYj -vnY -ctQ -wer -pKW +wZa +jca +kog +nqC +ciV +jIM +xml +hzp +kQP +lcz +itD wqh bHB xyw aho -vWc +vFS geg aEj aho @@ -103464,16 +103454,16 @@ jSo bHB xyw bcm -qKb -tTC -xQj -tTC -tTC -uTk -hOV -siT -xFt -kyP +xHr +nrD +xsy +nrD +nrD +rDC +vAw +raT +oPu +sNF aag ajZ aaa @@ -103526,11 +103516,11 @@ aaa aaa aaa aad -cZe -bLc -fOK -pWd -iPq +btL +rXs +qKT +bOz +lAX agj mXj pjR @@ -103572,11 +103562,11 @@ tJi ivf bpe aES -pok -tVx -kzc -gen -nLp +gvj +asV +rDp +rkF +teI ajZ aaa aaa @@ -103628,22 +103618,22 @@ aaa aaa aad aag -sGw -nkj -dvD -eWs -rVt -tVZ -bkS -vnY -ctQ -wer -pKW +wZa +tYh +gtF +nqC +lNz +kNr +pzl +hzp +kQP +lcz +itD wqh bHB ezQ eXq -fAa +mdT oYp oZp eXq @@ -103667,16 +103657,16 @@ xyw bHB aYt bcm -jNG -tTC -vMb -xYE -iuI -lDA -hOV -siT -fFU -kyP +iVQ +nrD +oqn +era +uRh +sGm +vAw +raT +tdN +sNF aag ajZ aaa @@ -103729,11 +103719,11 @@ aaa bdH aaa aad -tvt -nCM -cmr -wKb -pri +huD +wcs +xLp +meQ +eAK agj qlI cdB @@ -103775,11 +103765,11 @@ aES aES aES aES -gBd -tVx -fjz -hPu -rwZ +vaH +asV +lUr +vGV +vYk ajZ aaa aaa @@ -103831,21 +103821,21 @@ aac aaf aag aag -sGw -vEI -dvD -eWs -nCe -tVZ -bkS -bfO -tWL -aLx -jHt +wZa +pau +gtF +nqC +heM +kNr +pzl +bEe +dBW +qsJ +iBk mVE rgy baN -anU +iGO gEg imy gEg @@ -103874,12 +103864,12 @@ bcm bcm bcm bcm -hOV -pIC -hOV -qpV -nGk -kyP +vAw +xkZ +vAw +iDD +vrb +sNF aag aag aaf @@ -103932,11 +103922,11 @@ bdH bdH aaa aad -tvt -mPw -cmr -wGa -bAy +huD +nWx +xLp +wvt +rLl agj eBE hvH @@ -103973,16 +103963,16 @@ bFC jUb qjz ceK -sxD +aWj bhJ bHG gCP aES -imt -noE -dcT -hrI -rwZ +kqI +rJf +kkg +pVK +vYk ajZ aaa aaa @@ -104034,22 +104024,22 @@ aad aag aag aag -sGw -oGf -dvD -eWs -jkY -ktI -xPn -xyQ -ixT -hBG -ngK +wZa +ctW +gtF +nqC +dWk +nCA +pJV +cTm +bKi +tST +aWB sqa hBF hCt eXq -qYN +cIq lsD lkf eXq @@ -104077,12 +104067,12 @@ lRX rux sEt bcm -qyG -bUQ -bUQ -siT -bUQ -kyP +uhS +vtL +vtL +raT +vtL +sNF aag aag aag @@ -104135,11 +104125,11 @@ bdH bdH bdH aad -tvt -qwY -cmr -cmr -mVA +huD +ruD +xLp +xLp +wax agj kSH hvH @@ -104181,11 +104171,11 @@ mhm brS bpe aES -ioM -cZO -pfD -pfD -rwZ +tqG +fqP +oHy +oHy +vYk ajZ aaa aaa @@ -104237,22 +104227,22 @@ aad aag aag aag -sGw -fzT -dvD -eWs -qmh -qmh -jHt -wSQ -rOv -wer -pKW +wZa +dDQ +gtF +nqC +nSC +nSC +iBk +qNw +vKV +lcz +itD wqh bHB xyw aho -dkj +xWV siz gYt aho @@ -104280,12 +104270,12 @@ myo dtH eyR bcm -rQs -xFt -bUQ -uKH -gsp -kyP +wEA +oPu +vtL +cUf +mkk +sNF aag aag aag @@ -104338,11 +104328,11 @@ bdH bdH bdH aad -cZe -cZe -cZe -tiX -vcI +btL +btL +btL +guv +dYM agj ikQ hvH @@ -104384,11 +104374,11 @@ aES aES aES aES -ied -cZO -nLp -nLp -nLp +mOw +fqP +teI +teI +teI ajZ aaa aaa @@ -104440,17 +104430,17 @@ aad aag aag aag -sGw -iPf -klT -eWs -vHp -gJp -qmh -wSQ -rOv -wer -pKW +wZa +bqM +uJT +nqC +gAC +pgE +nSC +qNw +vKV +lcz +itD wqh bHB vpW @@ -104483,12 +104473,12 @@ mhd aYt tuN fPn -xFt -xFt -bUQ -uKH -eLC -kyP +oPu +oPu +vtL +cUf +vRF +sNF aag aag aag @@ -104543,9 +104533,9 @@ aaa aad aag aag -cZe -cmr -iNk +btL +xLp +udH agj muV hvH @@ -104582,14 +104572,14 @@ aWq aXb aGr ceK -sxD +aWj bhJ bHG cWy aES -hrI -tVx -nLp +pVK +asV +teI aag aag ajZ @@ -104643,17 +104633,17 @@ aad aag aag aag -sGw -cqp -xzB -smH -vnY -asE -qmh -wSQ -vop -tgy -jHt +wZa +rgC +jca +qlt +hzp +kDZ +nSC +qNw +enz +vZX +iBk vPM bHB xyw @@ -104686,12 +104676,12 @@ omP aYt bOC bcm -bUQ -xFt -bUQ -uKH -rVc -kyP +vtL +oPu +vtL +cUf +mod +sNF aag aag aag @@ -104746,9 +104736,9 @@ aaa aad aag aag -cZe -huD -vAz +btL +qyj +nPF agj mXj fnv @@ -104756,7 +104746,7 @@ hvH hvH iNY hvH -hmV +ofp mXj agj aic @@ -104790,9 +104780,9 @@ eBd brS cpj aES -luE -wgO -nLp +eqh +hwQ +teI aag aag ajZ @@ -104846,22 +104836,22 @@ aad aag aag aag -sGw -jOq -xzB -eWs -nso -jdZ -pqM -bZS -rlD -uUf -jHt +wZa +vLO +jca +nqC +rbd +yiJ +kkV +vCW +ykL +hLF +iBk kCm bHB btO bea -aoN +jzb bea bfZ baS @@ -104889,12 +104879,12 @@ ivg llO kSv bcm -emC -dZZ -xmn -uKH -xFt -kyP +oyJ +ter +tVJ +cUf +oPu +sNF aag aag aag @@ -104949,9 +104939,9 @@ aaa aad aag aag -cZe -pcf -vAz +btL +cZw +nPF agj agj agj @@ -104993,9 +104983,9 @@ aES aES aES aES -hXD -tYV -nLp +fDT +eKi +teI aag aag ajZ @@ -105049,10 +105039,10 @@ aad aag aag aag -sGw -dvD -qig -eWs +wZa +gtF +kil +nqC eXq adR eXq @@ -105093,11 +105083,11 @@ wXT cdA bcm bcm -emC -emC -mTL -xFt -kyP +oyJ +oyJ +kjE +oPu +sNF aag aag aag @@ -105152,9 +105142,9 @@ aaa aad aag aag -cZe -uTE -fZy +btL +egW +kUr gpY uBi wYA @@ -105196,9 +105186,9 @@ baw oaK nUn pgD -tVx -hrI -nLp +asV +pVK +teI aag aag ajZ @@ -105252,10 +105242,10 @@ aad aag aag aag -sGw -dvD -dvD -eWs +wZa +gtF +gtF +nqC abG aeh afy @@ -105297,10 +105287,10 @@ aYt aYt lrX bcm -jGQ -siT -fFU -kyP +oin +raT +tdN +sNF aag aag aag @@ -105355,9 +105345,9 @@ bdH aad aag aag -cZe -cmr -vAz +btL +xLp +nPF gpY uac vFw @@ -105399,9 +105389,9 @@ aZz wUP lrF pgD -cZO -hrI -nLp +fqP +pVK +teI aag aag ajZ @@ -105455,10 +105445,10 @@ aad aag aag aag -sGw -dvD -klT -eWs +wZa +gtF +uJT +nqC abH aer agf @@ -105500,10 +105490,10 @@ btO btO uII fPn -htq -siT -nGk -kyP +uwi +raT +vrb +sNF aag aag aag @@ -105558,9 +105548,9 @@ abs abs abs abs -cZe -aMf -wby +btL +tCi +elF gpY mto acW @@ -105602,9 +105592,9 @@ baw sgU baw pgD -cyv -eKZ -nLp +aWY +uFb +teI tQV tQV tQV @@ -105658,10 +105648,10 @@ aag aag aag aag -sGw -dvD -sZc -dGP +wZa +gtF +fgv +loQ acq aeJ azl @@ -105703,10 +105693,10 @@ aYt puI iWx bcm -ymg -uKH -bUQ -kyP +oYP +cUf +vtL +sNF aag aag aag @@ -105861,10 +105851,10 @@ aag aag aag aag -sGw -dvD -iQJ -eWs +wZa +gtF +pTD +nqC acu aeh afF @@ -105906,10 +105896,10 @@ cdA bcm bcm bcm -emC -wuh -fgU -kyP +oyJ +khh +mPW +sNF aag aag aag @@ -106064,10 +106054,10 @@ aag aag aag aag -sGw -nHX -cEA -eWs +wZa +cpG +mcs +nqC acM aer agf @@ -106107,12 +106097,12 @@ apE icp fER bcm -emC -hVL -bUQ -uKH -hSb -kyP +oyJ +ceI +vtL +cUf +rhf +sNF aag aag aag @@ -106189,9 +106179,9 @@ awY kOB awZ aiX -opN -bDi -vIr +fys +wLe +nWK awF aEM aGV @@ -106267,10 +106257,10 @@ aag aag aag aag -sGw -xzB -hRA -eWs +wZa +jca +kGZ +nqC acZ aeN azl @@ -106310,12 +106300,12 @@ uiT aYt jyR bcm -fUZ -xFt -bUQ -uKH -eyM -kyP +aPd +oPu +vtL +cUf +iBs +sNF aag aag aag @@ -106392,9 +106382,9 @@ pXx jrm evg aiX -dCb -dDc -rdo +eSt +jPD +jee awF aFg aGY @@ -106470,10 +106460,10 @@ aag aag aag aag -sGw -xzB -ghA -eWs +wZa +jca +fCZ +nqC vhw khD azw @@ -106513,12 +106503,12 @@ apL aYt iKb bcm -umk -xFt -bUQ -siT -qBl -kyP +dUA +oPu +vtL +raT +gKl +sNF aag aag aag @@ -106595,9 +106585,9 @@ wWC auZ aiX aiX -mJp -bNT -cbK +kuj +tje +pQh awF hRk aGY @@ -106673,10 +106663,10 @@ aag aag aag aag -sGw -nkj -rjF -eWs +wZa +tYh +bQd +nqC eXq eXq eXq @@ -106716,12 +106706,12 @@ uiT aYt xNj bcm -hSb -xFt -bUQ -uKH -pTX -kyP +rhf +oPu +vtL +cUf +eAP +sNF aag aag aag @@ -106798,9 +106788,9 @@ pQV apq ana aiX -glc -bNT -rmB +oFZ +tje +vGt awF xTL lmA @@ -106876,10 +106866,10 @@ aag aag aag aag -sGw -xzB -oes -eWs +wZa +jca +gzx +nqC aRu aRu aRu @@ -106919,12 +106909,12 @@ fpW llO vml bcm -emC -rVc -rVc -uKH -nBF -kyP +oyJ +mod +mod +cUf +rwh +sNF aag aag aag @@ -107001,9 +106991,9 @@ xQg wWC szO aiX -nLM -bNT -iPU +gyR +tje +ilW awF awF aEW @@ -107079,10 +107069,10 @@ aag aag aag aag -sGw -dvD -oes -eWs +wZa +gtF +gzx +nqC aRu aRu aRu @@ -107118,16 +107108,16 @@ bGO bHB uAb bcm -emC -hvx -emC -emC -emC -emC -emC -qpV -bUQ -kyP +oyJ +riv +oyJ +oyJ +oyJ +oyJ +oyJ +iDD +vtL +sNF aag aag aag @@ -107204,10 +107194,10 @@ yjM qbO aqw hnI -kGS -bNT -gFN -bMi +eBy +tje +oQL +jGY awF nvG vGI @@ -107282,10 +107272,10 @@ aag aag aag aag -sGw -dvD -iQJ -eWs +wZa +gtF +pTD +nqC aRu aRu aRu @@ -107321,16 +107311,16 @@ bcp bHB xAY aYz -emC -bUQ -wDP -mHF -hhg -emC -qBl -uKH -bUQ -kyP +oyJ +vtL +wwV +epq +xBT +oyJ +gKl +cUf +vtL +sNF aag aag aag @@ -107407,10 +107397,10 @@ aqy nBE pOD bZa -nIF -duR -gFN -mqd +pIX +wnK +oQL +euB awF aHn szU @@ -107485,10 +107475,10 @@ aag aag aag aag -sGw -xzB -oes -eWs +wZa +jca +gzx +nqC aRu aRu aRu @@ -107524,16 +107514,16 @@ bcc bHB xAY aYz -emC -vFI -xFt -xFt -bUQ -wdG -xFt -siT -nGk -kyP +oyJ +dSC +oPu +oPu +vtL +ltw +oPu +raT +vrb +sNF aag aag aag @@ -107610,15 +107600,15 @@ aiX aiX aiX aiX -eFI -bNT -sQu -tsr -tsr -tsr -tsr -tsr -tsr +mKO +tje +geR +nPh +nPh +nPh +nPh +nPh +nPh aRE qVC qVC @@ -107688,10 +107678,10 @@ aag aag aag aag -sGw -fzx -cEA -eWs +wZa +ptr +mcs +nqC aRu aRu aRu @@ -107727,16 +107717,16 @@ fVz bHB uII ruz -emC -jev -aML -xFt -oFn -emC -jaI -siT -xFt -kyP +oyJ +vnj +xDy +oPu +epp +oyJ +oUM +raT +oPu +sNF aag aag aag @@ -107813,15 +107803,15 @@ aiX aKG amb aiX -eWN -bNT -rmB -tsr -sOL -jIC -lFr -wTu -tsr +dyG +tje +vGt +nPh +ipF +aJB +osQ +eVP +nPh aSq aTE aTE @@ -107891,10 +107881,10 @@ aag aag aag aag -sGw -xzB -rsP -eWs +wZa +jca +jLY +nqC aRu aRu aRu @@ -107930,16 +107920,16 @@ xyw bHB uII wrT -emC -fqb -ury -dFW -mvi -emC -daF -siT -fFU -kyP +oyJ +krm +hiU +bkB +kel +oyJ +ygo +raT +tdN +sNF aag aag aag @@ -108016,15 +108006,15 @@ aqz aKH and aiX -umD -bNT -kGS -fyT -xIV -xIV -edV -reM -tsr +aDf +tje +eBy +jSF +uZb +uZb +uwk +nnT +nPh aSt aTE aTE @@ -108088,16 +108078,16 @@ aaa bdH aaY aad -sGw -sGw -sGw -sGw -sGw -sGw -sGw -dvD -iOX -eWs +wZa +wZa +wZa +wZa +wZa +wZa +wZa +gtF +oiR +nqC aRu aRu aRu @@ -108139,16 +108129,16 @@ lFp lFp lFp lFp -ljm -siT -xFt -kyP -kyP -kyP -kyP -kyP -kyP -kyP +pFx +raT +oPu +sNF +sNF +sNF +sNF +sNF +sNF +sNF ajZ aaY bdH @@ -108219,15 +108209,15 @@ aiX aiX aiX aiX -cwi -bNT -fBA -tsr -iPN -dbX -rGL -cyL -tsr +jtX +tje +hIm +nPh +tHA +mkb +iKB +fdD +nPh aSx aTE aTG @@ -108291,16 +108281,16 @@ aaa bdH aaY aad -sGw -lrH -dvD -xzB -xzB -xzB -dvD -dvD -wsz -eWs +wZa +iJA +gtF +jca +jca +jca +gtF +gtF +qXg +nqC aRu aRu aRu @@ -108342,16 +108332,16 @@ kjD gHl qoL lFp -hSb -siT -xFt -bUQ -bUQ -gQQ -bUQ -cOt -uSU -kyP +rhf +raT +oPu +vtL +vtL +rYK +vtL +gew +mPB +sNF ajZ aaY bdH @@ -108422,22 +108412,22 @@ aqz mBe atT aiX -fXf -bNT -hCF -tsr -tsr -vOY -tsr -tsr -tsr -lIj -mVF -lIj -lIj -lIj -lIj -lIj +ghn +tje +dFr +nPh +nPh +jpX +nPh +nPh +nPh +mSu +tms +mSu +mSu +mSu +mSu +mSu pgD nUv aJU @@ -108494,16 +108484,16 @@ aaa bdH aaY aad -sGw -xzB -xzB -dvD -dvD -sZc -abj -mUE -coo -eWs +wZa +jca +jca +gtF +gtF +fgv +ful +eSZ +gHx +nqC aRu aRu aRu @@ -108545,16 +108535,16 @@ aId aId poA lFp -hSb -uGU -kGi -kGi -khI -kGi -kGi -kow -qBl -kyP +rhf +lJb +oPx +oPx +xHC +oPx +oPx +pSK +gKl +sNF ajZ aaY bdH @@ -108625,22 +108615,22 @@ aiX asf atT aiX -cKW -mqR -xZf -lIj -tBY -gkE -cTM -rqD -pcY -srO -srO -lWO -wjQ -uag -uag -jnh +yks +gmL +miG +mSu +hIT +upv +wxn +xtI +cJz +vOb +vOb +tEo +ikL +alY +alY +eFg pgD lza gZw @@ -108697,15 +108687,15 @@ aaa bdH aaa aad -sGw -dvD -dvD -eWs -jri -iOX -kIl -jmz -hsK +wZa +gtF +gtF +nqC +oFv +oiR +gEk +nVC +rye wfE wfE wfE @@ -108714,9 +108704,9 @@ wfE wfE wfE wfE -yap -bqg -eIO +iwp +uvh +pJY bkA eFG bej @@ -108732,15 +108722,15 @@ qjN qjN oWf gfW -xgJ +tKu fdZ bnS fdZ -tzx +tbd gfW -rZt -qyP -tuC +jaT +gKs +nQq lFp lGg aId @@ -108755,9 +108745,9 @@ nmY nmY nmY nmY -siT -bUQ -kyP +raT +vtL +sNF ajZ aaa bdH @@ -108828,22 +108818,22 @@ aiX aiX aiX aiX -dRo -fsu -enz -lIj -lIj -dvZ -lIj -lIj -lIj -lIj -lIj -lIj -lIj -lIj -lIj -tWF +oYG +nNz +fnV +mSu +mSu +aux +mSu +mSu +mSu +mSu +mSu +mSu +mSu +mSu +mSu +gRz pgD nUv aJU @@ -108900,9 +108890,9 @@ aaa bdH aaa aad -sGw -dvD -dvD +wZa +gtF +gtF wfE wfE rXv @@ -108917,9 +108907,9 @@ bqm bsD btr wfE -kLE -lIu -kLE +viV +dRy +viV bkA bcC bej @@ -108935,15 +108925,15 @@ ham qjN oDY omo -fvJ +epW fdZ ixj fdZ -bET +kmZ gfW -kSA -tpB -kSA +ctV +fSN +ctV lFp xDF eRS @@ -108954,13 +108944,13 @@ nmY ouw jDP aId -xHS +ctX tEd vjW nmY -siT -bUQ -kyP +raT +vtL +sNF ajZ aaa bdH @@ -109006,12 +108996,12 @@ adq aei aka aWn -njn -njn -njn -njn -njn -njn +uIw +uIw +uIw +uIw +uIw +uIw oGC awW acW @@ -109020,31 +109010,31 @@ awW awW fSm hiy -ddp -fCP -fCP -stk -fCP -kGS -kGS -sVA -fCP -vUO -fCP -fCP -wzL -fCP -fCP -vUO -pwd -sVA -fCP -fCP -fCP -fCP -stk -fCP -uVg +mxa +eyZ +eyZ +tgP +eyZ +eBy +eBy +neu +eyZ +ipT +eyZ +eyZ +kdx +eyZ +eyZ +ipT +kMk +neu +eyZ +eyZ +eyZ +eyZ +tgP +eyZ +pIM pEY jsP baw @@ -109053,12 +109043,12 @@ baw sgU baw baw -nIN -nIN -nIN -nIN -nIN -nIN +ykg +ykg +ykg +ykg +ykg +ykg hXV yhI rRz @@ -109103,9 +109093,9 @@ aaa bdH aaa aad -sGw -dvD -dvD +wZa +gtF +gtF wfE mcL jOo @@ -109120,9 +109110,9 @@ wFR wFR xbk aWw -cJK -oGL -hOu +kmA +oiZ +gdO bkA eUn bcD @@ -109140,13 +109130,13 @@ qyD omo blZ bqN -nTo +gtA bqN bwR gfW -oJL -jMa -cVt +iAA +hbH +vpK sHm ddM hZe @@ -109161,9 +109151,9 @@ dKK dKK xry nmY -siT -bUQ -kyP +raT +vtL +sNF ajZ aaa bdH @@ -109209,12 +109199,12 @@ adq apr apr aoV -njn -rWz -rWz -rWz -tWM -njn +uIw +qZx +qZx +qZx +omL +uIw aea oGC xjD @@ -109223,31 +109213,31 @@ ajf ajf oAO pIZ -qwf -jRm -gDQ -gDQ -gDQ -rUN -gDQ -gDQ -dFd -rDm -rDm -gDQ -saT -gDQ -rUN -rUN -bxt -tPz -tPz -tiZ -tPz -tPz -tPz -jRm -rHn +rHg +vor +hJt +hJt +hJt +pcp +hJt +hJt +efN +onq +onq +hJt +mjw +hJt +pcp +pcp +aSg +gma +gma +xSX +gma +gma +gma +vor +wZH tFW dGC aZz @@ -109256,12 +109246,12 @@ aZz nsc baw cxk -nIN -rgL -rgL -rgL -nTc -nIN +ykg +iSe +iSe +iSe +wWD +ykg wTy wTy wTy @@ -109306,9 +109296,9 @@ aaa bdH aaa aad -sGw -xiH -xzB +wZa +pxO +jca wfE dgl jOo @@ -109323,9 +109313,9 @@ esM uUi xbk aWw -gtD -uRD -wru +gLm +rTX +jul bkA nvM bgG @@ -109347,10 +109337,10 @@ gfW uFo omo gfW -eWx -lLO -juo -otq +mpV +vpf +hmD +sDv gJO pwG aId @@ -109364,9 +109354,9 @@ vXf qGw uZV nmY -uKH -bUQ -kyP +cUf +vtL +sNF ajZ aaa bdH @@ -109412,12 +109402,12 @@ adq aub akc euO -njn -rWz -rWz -rWz -rWz -njn +uIw +qZx +qZx +qZx +qZx +uIw oGC sHp oGC @@ -109426,31 +109416,31 @@ awW awW aSJ isI -dgP -jao -uIa -qxK -rYG -qxK -qxK -iRi -qxK -qxK -qxK -qxK -xcY -qxK -iRi -qxK -qxK -qxK -qxK -qxK -rYG -qxK -bTD -jao -uQi +gNl +pEH +cQO +dsq +eoU +dsq +dsq +sgI +dsq +dsq +dsq +dsq +qkb +dsq +sgI +dsq +dsq +dsq +dsq +dsq +eoU +dsq +lwv +pEH +qyd dCD aXe baw @@ -109459,12 +109449,12 @@ baw mnA baw baw -nIN -rgL -rgL -rgL -rgL -nIN +ykg +iSe +iSe +iSe +iSe +ykg crh csI nqG @@ -109509,9 +109499,9 @@ aaa bdH aaa aad -sGw -jOq -xzB +wZa +vLO +jca wfE krp jOo @@ -109526,9 +109516,9 @@ wFR soA xbk wfE -xos -uRD -qPk +mwO +rTX +fVq bCd iey baf @@ -109550,10 +109540,10 @@ bPk bsj byb bCd -knm -lLO -knm -yfy +mjE +vpf +mjE +lxq ruL qUZ aId @@ -109567,9 +109557,9 @@ kyh dKK xry nmY -qpV -hNh -kyP +iDD +sZQ +sNF ajZ aaa bdH @@ -109616,22 +109606,22 @@ avd akt awW qHq -rWz -rWz -rWz -rWz -njn -vzO -njn -njn -njn -njn -njn -njn -njn -dgP -jao -uQi +qZx +qZx +qZx +qZx +uIw +ukk +uIw +uIw +uIw +uIw +uIw +uIw +uIw +gNl +pEH +qyd aoe aoe aoe @@ -109651,22 +109641,22 @@ aoe aoe aoe aoe -maF -jao -mOw -nIN -nIN -nIN -nIN -nIN -nIN -rBD -nIN -nIN -rgL -rgL -rgL -rgL +wLs +pEH +fas +ykg +ykg +ykg +ykg +ykg +ykg +iUS +ykg +ykg +iSe +iSe +iSe +iSe eOM baw sMM @@ -109712,9 +109702,9 @@ aaa bdH aaa aad -sGw -eoE -xzB +wZa +pkx +jca wfE eiP qOp @@ -109729,9 +109719,9 @@ qtv xFZ btx naV -pij -kJh -qPk +oKz +nfQ +fVq bCd tmg qjN @@ -109753,10 +109743,10 @@ qjN tzP wYK bCd -knm -lLO -knm -yfy +mjE +vpf +mjE +lxq ruL gsd aId @@ -109770,9 +109760,9 @@ hgD pSQ dOe nmY -rEK -bba -kyP +bFf +hlm +sNF ajZ aaa bdH @@ -109818,23 +109808,23 @@ adq aGP aka aWu -njn -rWz -rWz -rWz -rWz -njn -gur -osn -vDt -puJ -deA -olC -ujf -njn -xky -jao -uQi +uIw +qZx +qZx +qZx +qZx +uIw +oOh +juV +veN +ljl +iSr +vGw +fKL +uIw +kOF +pEH +qyd aoe aoh jHQ @@ -109854,23 +109844,23 @@ cnV isN cnZ aoe -dgP -jao -uQi -nIN -cHn -cHn -gNo -aZv -gNo -xzh -dcZ -nIN -rgL -rgL -rgL -rgL -nIN +gNl +pEH +qyd +ykg +qcM +qcM +gxS +dvx +gxS +iov +nGH +ykg +iSe +iSe +iSe +iSe +ykg hWB yhI qSX @@ -109915,9 +109905,9 @@ aaa bdH aaa aad -sGw -jIJ -xzB +wZa +fSj +jca wfE fHz opD @@ -109932,9 +109922,9 @@ esM jpt xbk aWw -qPk -hKe -uJM +fVq +mjz +cXX baZ bep qjN @@ -109956,10 +109946,10 @@ qjN qjN imo baZ -sbE -lLO -knm -yfy +iaf +vpf +mjE +lxq ruL xPq aId @@ -109973,9 +109963,9 @@ smW prP xXl nmY -idL -gnM -kyP +idV +aca +sNF ajZ aaa bdH @@ -110021,23 +110011,23 @@ adq aGQ akc apg -njn -rWz -rWz -rWz -rWz -njn -jsA -cGR -tey -urL -tey -cGR -jsA -tQA -kGS -lOn -uQi +uIw +qZx +qZx +qZx +qZx +uIw +xHx +nel +tqt +wuP +tqt +nel +xHx +sWb +eBy +oXo +qyd aoe vbS arb @@ -110057,23 +110047,23 @@ cnW aEi coa aoe -tWf -lOn -kGS -aZv -gNo -xzh -xzh -nIN -gJY -gNo -gNo -nIN -rgL -rgL -rgL -rgL -nIN +iyL +oXo +eBy +dvx +gxS +iov +iov +ykg +tEk +gxS +gxS +ykg +iSe +iSe +iSe +iSe +ykg wvj csI iPH @@ -110118,9 +110108,9 @@ aaa bdH aaa aad -sGw -xzB -dvD +wZa +jca +gtF wfE iYx opD @@ -110135,9 +110125,9 @@ nEF tXi pcE aWw -qPk -hKe -qPk +fVq +mjz +fVq hqW qjN qjN @@ -110159,10 +110149,10 @@ hDX qjN qjN jpp -knm -lLO -knm -hnP +mjE +vpf +mjE +cHp lFp xlO aId @@ -110176,9 +110166,9 @@ oqt oEy qmY tUN -siT -lZb -kyP +raT +urD +sNF ajZ aaa bdH @@ -110224,23 +110214,23 @@ aee avd akt qWI -njn -njn -njn -njn -njn -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -tWf -lOn -uQi +uIw +uIw +uIw +uIw +uIw +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +iyL +oXo +qyd aoe qQc fXg @@ -110260,23 +110250,23 @@ jBy aEi fFh aoe -dgP -lOn -uQi -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -nIN -nIN -nIN -nIN -nIN +gNl +oXo +qyd +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +ykg +ykg +ykg +ykg +ykg ehj irS ilJ @@ -110321,9 +110311,9 @@ aaa bdH aaa aad -sGw -xzB -dvD +wZa +jca +gtF wfE gww opD @@ -110338,9 +110328,9 @@ ljf maL uKe aWw -qPk -ckh -gyn +fVq +nsO +oPb vcq qPS qPS @@ -110362,10 +110352,10 @@ iaF bqL bqL ocf -wwE -sAD -cIO -tAb +goS +etU +qaT +pfu vpe dxT olN @@ -110379,9 +110369,9 @@ uxX oZy orN nmY -lQf -tHk -kyP +aNz +eDF +sNF ajZ aaa bdH @@ -110427,23 +110417,23 @@ adq aWm aka kyY -njn -mfR -sqP -tVs -tVs -gxm -tPB -tPB -tPB +uIw +dDR +kEJ +qBE +qBE +uWv +uoM +uoM +uoM dkO aps aps aps -gxm -xtO -jao -uQi +uWv +flD +pEH +qyd aoe vbS koB @@ -110463,23 +110453,23 @@ aoe hFF aoe aoe -dgP -jao -uQi -gxm +gNl +pEH +qyd +uWv aiJ aiJ aiJ qYr -cJV -cJV -cJV -gxm -ear -aGm -xzh -ear -nIN +pEf +pEf +pEf +uWv +cNJ +xfu +iov +cNJ +ykg rQW yhI tmI @@ -110524,26 +110514,26 @@ aaa bdH aaa aad -sGw -nkj -dvD +wZa +tYh +gtF wfE rYi opD wFR wFR -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -qPk -hKe -uJM +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +fVq +mjz +cXX baZ eyQ qjN @@ -110565,26 +110555,26 @@ qjN qjN xtM baZ -sbE -jZe -cbL -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr +iaf +pZk +hoT +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA iZE oqt oZy qhD nmY -siT -xFt -kyP +raT +oPu +sNF ajZ aaa bdH @@ -110630,23 +110620,23 @@ adq apr apr apr -njn -hzl -vdT -jsA -jsA -gxm -tPB -tPB -tPB +uIw +ory +vGC +xHx +xHx +uWv +uoM +uoM +uoM vQe aps aps aps -gxm -hGo -lOn -uQi +uWv +oAw +oXo +qyd aoe aop koB @@ -110666,23 +110656,23 @@ uRt aQz aRJ ajl -dgP -lOn -uQi -gxm +gNl +oXo +qyd +uWv aiJ aiJ aiJ str -cJV -cJV -cJV -gxm -aGm -xzh -xzh -moq -nIN +pEf +pEf +pEf +uWv +xfu +iov +iov +rxm +ykg wTy wTy wTy @@ -110727,26 +110717,26 @@ aaa bdH aaa aad -sGw -xzB -dvD +wZa +jca +gtF wfE cVK opD oRO ren -wDr +wdA aeL aeL aeL -oLj -wNG -wNG -wNG -wDr -qZT -pSF -eZC +jFl +bDz +bDz +bDz +wdA +uNO +dAn +sDE bCd mlH bqR @@ -110756,7 +110746,7 @@ tlA nyj vVW vhX -unU +lia rlZ twq vhX @@ -110768,26 +110758,26 @@ cle bCe sdO bCd -hBW -dxJ -rdT -wDr -mQx -mQx -mQx -jsa +uBI +tsc +obX +wdA +wQH +wQH +wQH +mYT azy azy azy -wDr +wdA kJH oqt qlm kRD nmY -uKH -xFt -kyP +cUf +oPu +sNF ajZ aaa bdH @@ -110833,23 +110823,23 @@ aet afB akW apu -njn -njn -lBB -cGR -mOR -gxm -gHX -gHX -gHX +uIw +uIw +lGH +nel +evF +uWv +vqT +vqT +vqT vQe aps aps aps -gxm -dgP -hBy -dlT +uWv +gNl +dhB +bxO hSI pMp gzK @@ -110869,23 +110859,23 @@ akw aQz aRK ajl -kUs -lOn -uQi -gxm +gqD +oXo +qyd +uWv aiJ aiJ aiJ str -oAY -oAY -oAY -gxm -rTe -xzh -gNo -nIN -nIN +ceS +ceS +ceS +uWv +maU +iov +gxS +ykg +ykg crh csI qhb @@ -110930,26 +110920,26 @@ aaa bdH aaa aad -sGw -xzB -esm +wZa +jca +kmL wfE wfE viJ wfE wfE -wDr +wdA aeL aeL aeL -uZm -wNG -wNG -wNG -wDr -qPk -hKe -qPk +emZ +bDz +bDz +bDz +wdA +fVq +mjz +fVq bCd bmn knH @@ -110960,7 +110950,7 @@ rHo kan kan kan -jXf +phx kan kan kan @@ -110971,26 +110961,26 @@ kan iXW iLs bCd -knm -jZe -knm -wDr -mQx -mQx -mQx -guK +mjE +pZk +mjE +wdA +wQH +wQH +wQH +sEs azy azy azy -wDr +wdA euW rOI aId hQP nmY -qpV -bUQ -kyP +iDD +vtL +sNF ajZ aaa bdH @@ -111037,22 +111027,22 @@ boL akY boL aiH -hbl -cGR -fwP -mOR -gxm -tpj -tpj -tpj -gxm +ixB +nel +gWj +evF +uWv +huW +huW +huW +uWv asm asm asm -gxm -dgP -mxg -mnV +uWv +gNl +xJr +cEL aoe pjF wUd @@ -111072,22 +111062,22 @@ akw fOL aRS ajl -hGo -jao -uQi -gxm +oAw +pEH +qyd +uWv alW alW alW -gxm -nVA -nVA -nVA -gxm -aGm -ear -gNo -aZv +uWv +ugq +ugq +ugq +uWv +xfu +cNJ +gxS +dvx aJU baw sMM @@ -111134,25 +111124,25 @@ aKR aKR aKR aKR -dvD -xzB -pIo -xzB -xzB -fQy -nAm -wDr +gtF +jca +hkN +jca +jca +fMZ +kkm +wdA aeL aeL aeL -uZm -kaq -kaq -kaq -wDr -qPk -hKe -qqf +emZ +gCj +gCj +gCj +wdA +fVq +mjz +hqM kan kan kan @@ -111174,25 +111164,25 @@ kan kan kan kan -tzw -sPY -knm -wDr -wQu -wQu -wQu -guK +oRh +nMa +mjE +wdA +iwC +iwC +iwC +sEs azy azy azy -wDr +wdA sJI aId aId hQP nmY -uKH -bUQ +cUf +vtL bVU bVU bVU @@ -111239,23 +111229,23 @@ aez boL akY wrQ -njn -njn -njn -njn -njn -gxm -tpj -tpj -tpj -gxm +uIw +uIw +uIw +uIw +uIw +uWv +huW +huW +huW +uWv asm asm asm -gxm -dgP -lOn -tQO +uWv +gNl +oXo +oOb sqf sqf sqf @@ -111275,23 +111265,23 @@ upM akw alD vEx -kGS -lOn -uQi -gxm +eBy +oXo +qyd +uWv alW alW alW -gxm -nVA -nVA -nVA -gxm -nIN -nIN -nIN -nIN -nIN +uWv +ugq +ugq +ugq +uWv +ykg +ykg +ykg +ykg +ykg nTH sMM baw @@ -111337,30 +111327,30 @@ aKS aKU aKS aLL -vtJ -stP -eWs -hKO -eoE -lrH -kdo -wDr +cXy +xXG +nqC +fKj +pkx +iJA +gUo +wdA aiR aiR aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -qPk +wdA +pWp +pWp +pWp +wdA +fVq +mjz +fVq kan -qWS -oDJ -vaQ -iIH +rmB +vKG +qFm +iYR rlZ buu rlZ @@ -111377,25 +111367,25 @@ kan psO gjK kan -knm -sPY -knm -wDr -ydA -ydA -ydA -wDr +mjE +nMa +mjE +wdA +pKs +pKs +pKs +wdA azD azD azD -wDr +wdA ePN aId aId hQP nmY -xUY -wGe +jVM +imt bSf bWe bWn @@ -111442,23 +111432,23 @@ aet agS aiP aYq -njn -rWz -rWz -rWz -tWM -gxm -tpj -tpj -tpj -gxm +uIw +qZx +qZx +qZx +omL +uWv +huW +huW +huW +uWv asm asm asm -gxm -dgP -lOn -uQi +uWv +gNl +oXo +qyd sqf anp wjz @@ -111466,8 +111456,8 @@ fnA jZY jZY sqf -wpu -cGp +jTb +iDe ajl ajl ajl @@ -111478,23 +111468,23 @@ ajl onQ alD ajl -bNI -lOn -uQi -gxm +flS +oXo +qyd +uWv alW alW alW -gxm -nVA -nVA -nVA -gxm -rgL -rgL -rgL -nTc -nIN +uWv +ugq +ugq +ugq +uWv +iSe +iSe +iSe +wWD +ykg gnv yhI tTu @@ -111547,23 +111537,23 @@ aLL aLL aLL aLL -wDr +wdA aiR aiR aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -qPk +wdA +pWp +pWp +pWp +wdA +fVq +mjz +fVq kan -kAp -dYU +cpU +xbG kan -cWm +jJu soK gDW rlZ @@ -111576,22 +111566,22 @@ rlZ gYl frl wFb -wzZ +hEQ tdI vbV kan -knm -jZe -knm -wDr -ydA -ydA -ydA -wDr +mjE +pZk +mjE +wdA +pKs +pKs +pKs +wdA azD azD azD -wDr +wdA bSf bSf auW @@ -111645,23 +111635,23 @@ aet agB akW aYs -njn -rWz -rWz -rWz -rWz -gxm -lbc -tpj -tpj -gxm +uIw +qZx +qZx +qZx +qZx +uWv +lyc +huW +huW +uWv asm asm asm -gxm -dgP -jao -uQi +uWv +gNl +pEH +qyd sqf sOZ oNJ @@ -111669,8 +111659,8 @@ eDo eDo eDo sqf -vXv -wub +dfE +mHv gXl ajl wqW @@ -111681,23 +111671,23 @@ ajl aCp alD ajl -kiq -jao -uQi -gxm +oPr +pEH +qyd +uWv alW alW alW -gxm -nVA -nVA -wZk -gxm -rgL -rgL -rgL -rgL -nIN +uWv +ugq +ugq +uQg +uWv +iSe +iSe +iSe +iSe +ykg vpn csI goL @@ -111750,18 +111740,18 @@ coT fgh rZP gmj -wDr +wdA aiR aiR aiR -wDr -hwH -hwH -hwH -wDr -iGi -pSF -eZC +wdA +pWp +pWp +pWp +wdA +nOH +dAn +sDE bst bst bst @@ -111783,18 +111773,18 @@ biA biA biA biA -hBW -ltv -uYM -wDr -ydA -ydA -ydA -wDr +uBI +naO +wDW +wdA +pKs +pKs +pKs +wdA azD azD azD -wDr +wdA wcN nGi bVd @@ -111849,22 +111839,22 @@ boL akY boL avJ -rWz -rWz -rWz -rWz -gxm -tpj -tpj -tpj -gxm +qZx +qZx +qZx +qZx +uWv +huW +huW +huW +uWv asm asm asm -gxm -dgP -mxg -mOw +uWv +gNl +xJr +fas sqf anq awn @@ -111872,8 +111862,8 @@ xsz jTj jTj sqf -lmi -xgP +fYV +uJP dwA wJo cyU @@ -111884,22 +111874,22 @@ fQu akx alD gWG -dgP -jao -uQi -gxm +gNl +pEH +qyd +uWv alW alW alW -gxm -nVA -nVA -nVA -gxm -rgL -rgL -rgL -rgL +uWv +ugq +ugq +ugq +uWv +iSe +iSe +iSe +iSe qxz baw sMM @@ -111953,18 +111943,18 @@ uUt aLW aLW guS -wDr +wdA aiR aiR aiR -wDr -hwH -hwH -srR -wDr -cvg -hKe -qPk +wdA +pWp +pWp +nLf +wdA +tNE +mjz +fVq bst bui bvz @@ -111975,7 +111965,7 @@ bJw rlZ hBc hzs -bHg +kDj hzs aZK rlZ @@ -111986,18 +111976,18 @@ bsQ bmj caS biA -knm -sPY -jxu -wDr -oVk -ydA -ydA -wDr +mjE +nMa +dcS +wdA +kAW +pKs +pKs +wdA azD azD azD -wDr +wdA wgR bTO bTO @@ -112051,23 +112041,23 @@ aez boL akY aqk -njn -rWz -rWz -rWz -rWz -gxm -tpj -tpj -tpj -gxm +uIw +qZx +qZx +qZx +qZx +uWv +huW +huW +huW +uWv asm asm asm -gxm -dgP -jao -uQi +uWv +gNl +pEH +qyd sqf anr awn @@ -112087,23 +112077,23 @@ fQu akx alD gWG -dgP -jao -uQi -gxm +gNl +pEH +qyd +uWv alW alW alW -gxm -nVA -nVA -nVA -gxm -rgL -rgL -rgL -rgL -nIN +uWv +ugq +ugq +ugq +uWv +iSe +iSe +iSe +iSe +ykg xuY sMM baw @@ -112156,18 +112146,18 @@ bbS xka uLn uoA -wDr +wdA aiR aiR aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -qPk +wdA +pWp +pWp +pWp +wdA +fVq +mjz +fVq bst bcR bev @@ -112189,18 +112179,18 @@ bCl bsz caT biA -knm -sPY -knm -wDr -ydA -ydA -ydA -wDr +mjE +nMa +mjE +wdA +pKs +pKs +pKs +wdA azD azD azD -wDr +wdA hkB bTO qSm @@ -112254,23 +112244,23 @@ aet agS aiP aYq -njn -rWz -rWz -rWz -rWz -gxm -tpj -tpj -tpj -gxm +uIw +qZx +qZx +qZx +qZx +uWv +huW +huW +huW +uWv asm asm asm -gxm -maF -jao -uQi +uWv +wLs +pEH +qyd sqf sqf awp @@ -112290,23 +112280,23 @@ ajl hVz alD ajl -tWf -jao -uQi -gxm +iyL +pEH +qyd +uWv alW alW alW -gxm -nVA -nVA -nVA -gxm -rgL -rgL -rgL -rgL -nIN +uWv +ugq +ugq +ugq +uWv +iSe +iSe +iSe +iSe +ykg gnv yhI tTu @@ -112359,18 +112349,18 @@ rlh aLW aLW gxh -wDr +wdA aiR aiR aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -tON +wdA +pWp +pWp +pWp +wdA +fVq +mjz +mcz bst bcS bag @@ -112392,18 +112382,18 @@ bCm bsP hgZ biA -knm -sPY -knm -wDr -ydA -ydA -ydA -wDr +mjE +nMa +mjE +wdA +pKs +pKs +pKs +wdA azD azD azD -wDr +wdA wjC bTO xMf @@ -112457,23 +112447,23 @@ aet afB akW biT -njn -njn -njn -njn -njn -gxm -hWV -hWV -hWV -gxm -gxm -gxm -gxm -gxm -mYd -lOn -xwU +uIw +uIw +uIw +uIw +uIw +uWv +vSh +vSh +vSh +uWv +uWv +uWv +uWv +uWv +aaZ +oXo +lEI ajl qhx akw @@ -112493,23 +112483,23 @@ ajl nMV vIf ajl -maF -lOn -nwu -gxm -gxm -gxm -gxm -gxm -hWV -hWV -hWV -gxm -nIN -nIN -nIN -nIN -nIN +wLs +oXo +wFL +uWv +uWv +uWv +uWv +uWv +vSh +vSh +vSh +uWv +ykg +ykg +ykg +ykg +ykg crh csI qhb @@ -112562,18 +112552,18 @@ djQ nFs aLW gFa -wDr +wdA aiR aiR aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -qPk +wdA +pWp +pWp +pWp +wdA +fVq +mjz +fVq bst buj bev @@ -112595,18 +112585,18 @@ bCn bsz hMN biA -knm -sPY -knm -wDr -ydA -ydA -ydA -wDr +mjE +nMa +mjE +wdA +pKs +pKs +pKs +wdA azD azD azD -wDr +wdA xad roG mZr @@ -112665,18 +112655,18 @@ cWv cWv cWv cWv -omp -kmx -xog -xog -vFy -ltt -fCP -vUO -fCP -xRn -lOn -kGS +dnh +rOa +fIh +fIh +rKX +sdF +eyZ +ipT +eyZ +obA +oXo +eBy bVE aos akw @@ -112696,23 +112686,23 @@ ans aos alE bVE -kGS -lOn -mnC -vUO -qRx -fCP -ltt -cuI -ocX -ocX -sYj -fvj -fCP -fCP -kGS -fCP -oiB +eBy +oXo +lOj +ipT +gry +eyZ +sdF +rCX +pDl +pDl +fVL +lgo +eyZ +eyZ +eBy +eyZ +wPX baw baw qYC @@ -112765,18 +112755,18 @@ aLL aLL aLL hrF -wDr -wDr -wDr -wDr -wDr -jXR -enK -enK -wDr -kgt -hKe -qPk +wdA +wdA +wdA +wdA +wdA +tdU +cie +cie +wdA +gst +mjz +fVq bst aYQ bbd @@ -112798,18 +112788,18 @@ bnT btX byc biA -knm -sPY -qPU -wDr -sai -sai -wrN -wDr -wDr -wDr -wDr -wDr +mjE +nMa +uPB +wdA +hKL +hKL +mwY +wdA +wdA +wdA +wdA +wdA bSf bSf auX @@ -112868,18 +112858,18 @@ boL boL boL boL -fGD -bfb -qEc -qEc -qEc -ltt -gfv -gfv -gfv -gfv -aPC -tzF +dNw +iQP +eQV +eQV +eQV +sdF +uaR +uaR +uaR +uaR +fDZ +eQJ aEe akA akA @@ -112899,23 +112889,23 @@ akA oap aSb aEe -tzF -lzF -gfv -gfv -gfv -gfv -ltt -qEc -qEc -qEc -rWP -fGD -acQ -acQ -acQ -acQ -uQi +eQJ +adS +uaR +uaR +uaR +uaR +sdF +eQV +eQV +eQV +xRG +dNw +oao +oao +oao +oao +qyd baw vbB ley @@ -112961,25 +112951,25 @@ aKS aKV aKS aLL -qVE -iGc -bwG -hCk -nRN -mzI -olQ -oCK -eob -gMk -qRb -axY -xrC -oWF -xrC -toQ -exl -qyX -qPk +jBI +sro +pAH +nqL +ecf +eNq +mLr +gnh +pWg +cOu +vNE +hXq +wmr +aeD +wmr +fqp +jUc +wdG +fVq bst bst bst @@ -112989,7 +112979,7 @@ bst cjW rlZ rlZ -hrJ +tZO kan biy boX @@ -113001,25 +112991,25 @@ biA biA biA biA -wHn -rDO -cIO -rEd -fml -fqU -bIO -rSA -cIm -emw -bvD -gZW -lUA -bwv -hDU -iNH -cDx -ndl -iDk +xeY +dIs +qaT +vRp +gct +oyd +gKN +icS +kkd +kgg +cAY +wkR +nsx +hhG +sre +qhR +vOK +hVl +fkF bSf bWe bWp @@ -113071,18 +113061,18 @@ dux iYr dux ado -ltt -uVZ -qxK -qxK -rYG -ltt -qxK -qxK -qxK -bTD -mxg -uQi +sdF +xxj +dsq +dsq +eoU +sdF +dsq +dsq +dsq +lwv +xJr +qyd vOy vOy vOy @@ -113102,23 +113092,23 @@ vOy wMO wky sqf -bNI -mxg -uIa -qxK -qxK -qxK -ltt -rYG -qxK -qxK -fdf -ltt -qxK -kGS -ftZ -qxK -fdf +flS +xJr +cQO +dsq +dsq +dsq +sdF +eoU +dsq +dsq +qcr +sdF +dsq +eBy +lcj +dsq +qcr baw dBp gVA @@ -113164,25 +113154,25 @@ aKR aKR aKR aKR -deq -lfx -jgK -lfx -lfx -yih -kgD -deq -bwG -vVy -gtD -vEv -cvI -cvI -cvI -aza -qPk -wKN -qPk +xnn +wli +mfc +wli +wli +ijw +kYj +xnn +pAH +hxU +gLm +kni +xpq +xpq +xpq +mCj +fVq +jYZ +fVq kan ihw beW @@ -113192,7 +113182,7 @@ vhX akQ rlZ rlZ -pnC +jAl dBH bky ryt @@ -113204,25 +113194,25 @@ tAU xmT tAU kan -knm -sPY -knm -qEM -wzy -wzy -wzy -qEM -juo -seL -siC -jNw -xuy -juo -vqz -vMU -mJO -vDN -xbg +mjE +nMa +mjE +kTB +uVi +uVi +uVi +kTB +hmD +myN +lAR +exY +huZ +hmD +hqX +oSf +rng +hIq +cER bVU bVU bVU @@ -113283,9 +113273,9 @@ abE abE abE abE -bff -rnd -fdf +wyV +bMh +qcr vOy nos fcy @@ -113305,27 +113295,27 @@ ayX kXw pxo sqf -uVZ -rnd -fdf -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -oiq -mRU -mRU -mRU -mRU -mRU -mRU -woU +xxj +bMh +qcr +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +vhb +lYm +lYm +lYm +lYm +lYm +lYm +ckw aaa aaa aaa @@ -113366,26 +113356,26 @@ aaa aaa bdH aad -kyw -deq -lfx -bwG +nnw +xnn +wli +pAH aQF aQF aQF aQF szE aQF -ihW -qOS -vEv -xkN -dwj -xkN -aza -qPk -hKe -qPk +mCg +sSu +kni +xtg +wKf +xtg +mCj +fVq +mjz +fVq kan iMI rlZ @@ -113407,26 +113397,26 @@ wJb wJb bPu kan -knm -sPY -knm -qEM -hEg -ewc -lLl -qEM -jvD -cBV -mJO -mJO -mJO +mjE +nMa +mjE +kTB +fjv +wXD +pEh +kTB +cwC +ydw +rng +rng +rng bTq -mJO -mJO -mJO -mgb -xbg -lyW +rng +rng +rng +jbS +cER +qbs ajZ bdH aaa @@ -113486,9 +113476,9 @@ gwo aed aeG abE -umI -fsu -umI +tCM +nNz +tCM vOy oNp aSn @@ -113508,27 +113498,27 @@ niL kXw pxo sqf -umI -uch -umI -mRU -qSw -qSw -qSw -qSw -fHM +tCM +kGa +tCM +lYm +wqU +wqU +wqU +wqU +sLJ pBG rLp ttX -mRU -vpf -mRU -vor -qnA -vkI -gNN -lyz -woU +lYm +dhe +lYm +kDP +eYw +lEz +jsn +kyQ +ckw aaa aaa aaa @@ -113569,10 +113559,10 @@ aaa aaa bdH aad -kyw -xwd -lfx -bwG +nnw +sMe +wli +pAH weR aPE weR @@ -113586,9 +113576,9 @@ aQF aQF aQF aQF -mNG -pSF -eZC +rnu +dAn +sDE kan avW bZn @@ -113598,7 +113588,7 @@ vhX gDW rlZ rlZ -wYr +jmm dBH bky ryt @@ -113610,9 +113600,9 @@ xIk cLA xIk kan -hBW -ltv -qEz +uBI +naO +uJr bJt bJt bJt @@ -113620,16 +113610,16 @@ bJt bJt bJt bJt -mJO -plv -plv -plv -plv -mvg -mJO -mgb -mgb -lyW +rng +kks +kks +kks +kks +owS +rng +jbS +jbS +qbs ajZ bdH aaa @@ -113689,9 +113679,9 @@ adF aef dWw agA -okx -hgA -xfo +xQl +xwT +vaA vOy anz vgx @@ -113711,27 +113701,27 @@ aCC kXw pxo asn -okx -cFH -xfo -mRU -qSw -qSw -qSw -qSw -qSw +xQl +sNu +vaA +lYm +wqU +wqU +wqU +wqU +wqU pBG jZU jAe -mRU -jtU -mRU -tNw -ebI -ukC -jtU -fCi -woU +lYm +iTV +lYm +oDh +xXD +vbJ +iTV +vLd +ckw aaa aaa aaa @@ -113772,14 +113762,14 @@ aaa aaa bdH aad -kyw -deq -cGY -bwG -rUq -rUq -sab -sab +nnw +xnn +eSH +pAH +xtr +xtr +jXC +jXC izk aWD cWr @@ -113789,9 +113779,9 @@ eKT wan cTC aQF -syj -wKN -qqf +aof +jYZ +hqM xMs xMs xMs @@ -113801,7 +113791,7 @@ xMs cjW rlZ rlZ -jbO +bvm kan quv rZB @@ -113813,9 +113803,9 @@ vMo vMo vMo vMo -tzw -sPY -hkC +oRh +nMa +mHt bJt xOL gGI @@ -113823,16 +113813,16 @@ eeu gfq eFP gAz -mJO -plv -plv -plv -plv -plv -mJO -xbg -pgJ -lyW +rng +kks +kks +kks +kks +kks +rng +cER +rzK +qbs ajZ bdH aaa @@ -113892,9 +113882,9 @@ adF aef aef uZZ -kGS -bNT -rmB +eBy +tje +vGt vOy awQ oLU @@ -113914,27 +113904,27 @@ edv kXw pxo asn -eWN -lOn -rmB -mRU -qSw -qSw -qSw -qSw -qSw +dyG +oXo +vGt +lYm +wqU +wqU +wqU +wqU +wqU pBG cVq nOb -mRU -vpI -mRU -mRU -mRU -gBs -mRU -mRU -woU +lYm +uCU +lYm +lYm +lYm +hdf +lYm +lYm +ckw aaa aaa aaa @@ -113975,12 +113965,12 @@ aaa aaa bdH aad -kyw -deq -veq -bwG -pKh -sab +nnw +xnn +dle +pAH +hys +jXC rDv bmW jWu @@ -113992,9 +113982,9 @@ aRy aRy nIj aQF -rWv -hKe -qPk +iSC +mjz +fVq xMs aSO feY @@ -114016,9 +114006,9 @@ wZE iGn byd vMo -knm -sPY -knm +mjE +nMa +mjE lhB pOY bDs @@ -114026,16 +114016,16 @@ jge bDs bDs hLC -mJO -plv -plv -plv -plv -plv -mJO -xbg -mgb -lyW +rng +kks +kks +kks +kks +kks +rng +cER +jbS +qbs ajZ bdH aaa @@ -114095,9 +114085,9 @@ adF bls aeH agq -nIF -ijn -rmB +pIX +nSE +vGt vOy hng dnC @@ -114117,27 +114107,27 @@ aCt kXw pxo asn -eWN -jao -hCF -mRU -qSw -qSw -qSw -qSw -qSw +dyG +pEH +dFr +lYm +wqU +wqU +wqU +wqU +wqU pBG dzp ngV -mRU -jtU -jtU -uBx -fLi -vpf -prf -vpf -woU +lYm +iTV +iTV +qHK +uPD +dhe +rkS +dhe +ckw aaa aac aaf @@ -114178,10 +114168,10 @@ aaa aaa bdH aad -kyw -deq -deF -bwG +nnw +xnn +wbm +pAH mTi lJK kYV @@ -114195,9 +114185,9 @@ bQU bQU bjD dqE -htl -vaq -vTX +bRl +eMK +eNL xMs lOH dUS @@ -114219,9 +114209,9 @@ bof vit dxu vMo -knm -sPY -knm +mjE +nMa +mjE lhB xCb bDs @@ -114229,16 +114219,16 @@ bIJ bDs bDs qJS -mJO -plv -plv -plv -plv -plv -mJO -xbg -xbg -lyW +rng +kks +kks +kks +kks +kks +rng +cER +cER +qbs ajZ aaa avo @@ -114298,9 +114288,9 @@ adF aef kqN agA -eWN -mxg -hCF +dyG +xJr +dFr vOy xyt wiW @@ -114320,10 +114310,10 @@ vOy mFq vqW sqf -jMP -jao -rmB -mRU +wal +pEH +vGt +lYm pBG pBG pBG @@ -114332,15 +114322,15 @@ pBG pBG saL pBG -mRU -mRU -mRU -mRU -mRU -mRU -jtU -vpf -woU +lYm +lYm +lYm +lYm +lYm +lYm +iTV +dhe +ckw aaa aad aag @@ -114381,15 +114371,15 @@ aaa aaa bdH aad -kyw -deq -oWq -bwG +nnw +xnn +dpD +pAH aQF aQF aPH xIQ -tmX +mrm aWD rrK aRy @@ -114398,9 +114388,9 @@ brb cpp buv aWF -qPk -hKe -qPk +fVq +mjz +fVq xMs akE qGF @@ -114422,9 +114412,9 @@ ggz dka bye vMo -knm -sPY -knm +mjE +nMa +mjE lhB aQW bDs @@ -114439,9 +114429,9 @@ bJt bJt bJt bJt -xbg -otW -lyW +cER +keN +qbs ajZ avo avo @@ -114501,9 +114491,9 @@ aef aef tRD abE -ciI -mxg -rmB +jtr +xJr +vGt vOy iYf bIM @@ -114523,12 +114513,12 @@ hPe sdu btC vLj -nIF -ijn -rmB -dyJ +pIX +nSE +vGt +jHw pBG -gqQ +hqJ cHG nQA wph @@ -114540,10 +114530,10 @@ gel gel gel fkX -mRU -jtU -tMU -woU +lYm +iTV +enA +ckw aaf aag aag @@ -114584,10 +114574,10 @@ bdH bdH bdH aad -kyw -xwd -lfx -bwG +nnw +sMe +wli +pAH weR aPE izk @@ -114601,9 +114591,9 @@ aTY iCF gJP aQF -uNf -hKe -qPk +fwm +mjz +fVq xMs aYR dUS @@ -114625,9 +114615,9 @@ jZd vit bzo vMo -knm -sPY -knm +mjE +nMa +mjE lhB pxD bDs @@ -114642,9 +114632,9 @@ iIl bDs ujV bJt -xbg -xbg -lyW +cER +cER +qbs ajZ avo avs @@ -114704,9 +114694,9 @@ adF aef afs agA -eWN -lOn -rmB +dyG +oXo +vGt vOy mTp wiW @@ -114726,10 +114716,10 @@ lON dVu oDR vOP -kGS -fAW -vlR -qPv +eBy +gkl +aHV +eqV qvL wmP wmP @@ -114743,10 +114733,10 @@ cXF rLU dKp cHu -mRU -jtU -vpf -woU +lYm +iTV +dhe +ckw aag aag aag @@ -114787,12 +114777,12 @@ bdH bdH bdH aad -kyw -deq -sJa -bwG -pGG -sab +nnw +xnn +cnP +pAH +weW +jXC izk hds aQF @@ -114804,9 +114794,9 @@ qZH bsN buB aWD -qPk -hKe -qPk +fVq +mjz +fVq xMs bXw eiw @@ -114828,9 +114818,9 @@ boh qDP wbP vMo -knm -sPY -cbL +mjE +nMa +hoT bJt qom bDs @@ -114845,8 +114835,8 @@ idx hAz gHj bJt -oqI -xbg +ygb +cER avo avo avo @@ -114907,9 +114897,9 @@ adD sOw afs agA -eWN -lOn -rmB +dyG +oXo +vGt vOy axn dRh @@ -114929,10 +114919,10 @@ vOy aRd aIo vOy -gyb -lOn -rmB -aRl +vdI +oXo +vGt +bUH pBG lvb eAN @@ -114946,10 +114936,10 @@ bHk vZw bHk cHu -mRU -vpf -mRU -woU +lYm +dhe +lYm +ckw aag aag aag @@ -114990,10 +114980,10 @@ bdH bdH bdH aad -kyw -lfx -deq -jgK +nnw +wli +xnn +mfc aNs aNs hyw @@ -115007,9 +114997,9 @@ fHF bml buB aWD -eZC -pSF -eZC +sDE +dAn +sDE xMs xMs xMs @@ -115031,9 +115021,9 @@ vMo vMo vMo vMo -hBW -ltv -kGw +uBI +naO +fRF bJt bJt nFI @@ -115048,8 +115038,8 @@ gSk bDs bpI bJt -jLH -xbg +rrp +cER lpy avC avC @@ -115110,9 +115100,9 @@ adF aef afs agA -eWN -lOn -rmB +dyG +oXo +vGt vOy aAr pGK @@ -115132,9 +115122,9 @@ aCD hFC qmy vOy -eWN -lOn -rmB +dyG +oXo +vGt pBG pBG hEl @@ -115149,10 +115139,10 @@ vzp vZw erd cHu -mRU -vzB -mRU -woU +lYm +eLq +lYm +ckw aag aag aag @@ -115193,10 +115183,10 @@ bdH bdH bdH aad -kyw -txp -iGc -bwG +nnw +dDd +sro +pAH vMr vMr izk @@ -115210,9 +115200,9 @@ htL aUL buB aWD -qPk -hKe -qPk +fVq +mjz +fVq nyw iXU hDw @@ -115234,9 +115224,9 @@ vEH uFH tQd nyw -knm -sPY -knm +mjE +nMa +mjE yfS sEi dck @@ -115251,8 +115241,8 @@ gSk reL wiI bJt -tqV -dSm +kbz +meM avo avo avo @@ -115313,9 +115303,9 @@ aef aef pHG abE -ciI -jao -rmB +jtr +pEH +vGt vOy aID gLc @@ -115335,9 +115325,9 @@ aoM aoM vgB kgs -eWN -jao -rmB +dyG +pEH +vGt bvX ojQ eAN @@ -115352,10 +115342,10 @@ bHk vZw bHk cHu -mRU -vpf -mRU -woU +lYm +dhe +lYm +ckw aah aag aag @@ -115396,10 +115386,10 @@ bdH bdH bdH aad -kyw -cme -whm -bwG +nnw +kQZ +ohw +pAH mTi lJK izk @@ -115413,9 +115403,9 @@ aTZ aUM gJP aQF -rmz -wKN -qPk +bHU +jYZ +fVq nyw beH dcd @@ -115437,9 +115427,9 @@ beH beH beH nyw -knm -sPY -knm +mjE +nMa +mjE yfS hgL swt @@ -115454,9 +115444,9 @@ gSk bDs vwI bJt -lAa -mgb -lyW +qxb +jbS +qbs ajZ avo avs @@ -115516,9 +115506,9 @@ adF aef aGS agA -eWN -jao -rmB +dyG +pEH +vGt vOy aMd pGK @@ -115538,9 +115528,9 @@ prx fpT eVT kgs -eWN -jao -rmB +dyG +pEH +vGt bvX kVV vQR @@ -115555,10 +115545,10 @@ pRy wwW mRW cHu -mRU -jtU -vpf -woU +lYm +iTV +dhe +ckw aaa aad aag @@ -115599,15 +115589,15 @@ bdH bdH bdH aad -kyw -cGY -ipn -bwG +nnw +eSH +hWV +pAH aQF aQF sPc xIQ -sab +jXC aWD olM aRy @@ -115616,9 +115606,9 @@ eXr iFH buv aWE -qPk -ckh -htl +fVq +nsO +bRl aum emr emr @@ -115640,9 +115630,9 @@ rCO rCO rCO eVv -wwE -mDZ -knm +goS +dHS +mjE ykj rlQ ven @@ -115657,9 +115647,9 @@ gSk bDs fUB bJt -mgb -nhw -lyW +jbS +fLl +qbs ajZ avo avo @@ -115719,9 +115709,9 @@ adF aef nIS uZZ -kGS -jao -rmB +eBy +pEH +vGt vOy aMg aSo @@ -115741,16 +115731,16 @@ ger aoM aFf mmN -eWN -jao -rmB +dyG +pEH +vGt bvX maO lPm iZV fdx cuq -eQJ +edn fVF pBG qWR @@ -115758,10 +115748,10 @@ wJH wJH wJH sNR -mRU -jtU -vpf -woU +lYm +iTV +dhe +ckw aaa aae aah @@ -115802,10 +115792,10 @@ bdH bdH bdH aad -kyw -oif -deq -bwG +nnw +jtG +xnn +pAH weR aPE izk @@ -115819,9 +115809,9 @@ pOi pOi nVF aWF -qPk -wKN -qPk +fVq +jYZ +fVq nyw eGZ ieX @@ -115843,9 +115833,9 @@ bhq dcd eTd nyw -knm -rDO -hqp +mjE +dIs +rDM kKk rDt gpI @@ -115860,9 +115850,9 @@ gSk bDs nqO bJt -nQo -pgJ -lyW +lBj +rzK +qbs ajZ aaa avo @@ -115922,9 +115912,9 @@ adF aef nIS eWF -kGS -jao -rmB +eBy +pEH +vGt vOy aQZ bkT @@ -115942,11 +115932,11 @@ ggl jjS qMP kBP -aSl +qIB vOy -ciI -jao -hCF +jtr +pEH +dFr pBG pBG pBG @@ -115957,14 +115947,14 @@ pBG pBG pBG pBG -mRU -mRU -mRU -mRU -mRU -jtU -tMU -woU +lYm +lYm +lYm +lYm +lYm +iTV +enA +ckw bdH bdH bdH @@ -116005,12 +115995,12 @@ bdH bdH bdH aad -kyw -byt -lfx -bwG -iWQ -iWQ +nnw +pDZ +wli +pAH +esV +esV uFd mUq qwt @@ -116022,9 +116012,9 @@ tou tou jhy aQF -eZC -hMk -mkw +sDE +dPO +ojn bdd bdd bdd @@ -116046,9 +116036,9 @@ bdd bdd bdd bdd -xwm -ltv -hBW +uHi +naO +uBI yfS ape ven @@ -116063,9 +116053,9 @@ cnu bDs knK bJt -xbg -oUZ -lyW +cER +wRn +qbs ajZ bdH bdH @@ -116125,9 +116115,9 @@ adF aef kqN agA -eWN -lOn -rmB +dyG +oXo +vGt vOy dVd lea @@ -116147,27 +116137,27 @@ vti vti aEZ vOy -eWN -lOn -rmB +dyG +oXo +vGt fKh gQk trU oNY fdx pBG -pVF +eNw ppF fiE pBG -jtU -jtU -uBx -ycM -vpf -jtU -vpf -woU +iTV +iTV +qHK +qsr +dhe +iTV +dhe +ckw bdH bdH bdH @@ -116208,13 +116198,13 @@ bdH bdH bdH aad -kyw -jNo -lfx -bwG -iWQ -iWQ -sab +nnw +vEQ +wli +pAH +esV +esV +jXC aNr pQY aWD @@ -116225,9 +116215,9 @@ dVO bsR aQr aQF -qPk -wKN -qPk +fVq +jYZ +fVq tda ngI dkq @@ -116249,9 +116239,9 @@ qby btY bAJ huU -knm -sPY -knm +mjE +nMa +mjE yfS ape ven @@ -116266,9 +116256,9 @@ gSk ljG tSp bJt -xbg -ssk -lyW +cER +meC +qbs ajZ bdH bdH @@ -116328,9 +116318,9 @@ fcE aef uNN abE -iGZ -lOn -rmB +wOm +oXo +vGt vOy vOy vOy @@ -116350,9 +116340,9 @@ nPE oqZ uaI vOy -eFI -lOn -rmB +mKO +oXo +vGt fKh iuG sOv @@ -116363,14 +116353,14 @@ dzp rMT dzp pBG -jtU -mRU -mRU -mRU -mRU -vpf -mRU -woU +iTV +lYm +lYm +lYm +lYm +dhe +lYm +ckw bdH bdH bdH @@ -116411,10 +116401,10 @@ bdH bdH bdH aad -kyw -deq -lfx -bwG +nnw +xnn +wli +pAH mTi lJK mTi @@ -116428,9 +116418,9 @@ aQF aQF aQF aQF -ldb -rYI -fzc +dvK +rAc +kQm bdg vyg bni @@ -116452,9 +116442,9 @@ snb xbd bAU bdg -jlD -pYN -raE +vze +lyP +sZW bJt wbC lHu @@ -116469,9 +116459,9 @@ gSk oDE bJt bJt -xbg -mgb -lyW +cER +jbS +qbs ajZ bdH bdH @@ -116531,11 +116521,11 @@ aeI eva xzf abE -ciI -jao -uZI -cSM -xfo +jtr +pEH +puV +rvt +vaA vOy vOy vOy @@ -116553,9 +116543,9 @@ vOy vOy vOy vOy -czJ -jao -rmB +wZt +pEH +vGt fKh ubI nQA @@ -116566,14 +116556,14 @@ nTR gDp rwq pBG -jtU -mRU -oyO -nve -mRU -vzB -mRU -woU +iTV +lYm +fhb +vlj +lYm +eLq +lYm +ckw bdH bdH bdH @@ -116614,10 +116604,10 @@ bdH bdH bdH aad -kyw -xbI -lfx -bwG +nnw +dwU +wli +pAH aQF aQF aQF @@ -116627,13 +116617,13 @@ aQF aQF aQF aQF -wYG -yhR -gHi -bwG -pzj -uhq -pzj +beA +hmM +gFc +pAH +dJs +rTr +dJs bdg apz dyd @@ -116655,9 +116645,9 @@ vPw bvr bBQ bdg -sgL -aRL -sgL +nre +hyu +nre rde vjC iMm @@ -116671,10 +116661,10 @@ bDs gSk luS bJt -uCw -xbg -mgb -lyW +ebL +cER +jbS +qbs ajZ bdH bdH @@ -116716,11 +116706,11 @@ aaa aaa aaa aaa -vHn -cGd -moK -cGd -cGd +qdy +rOR +jZD +rOR +rOR aNi aNi bWr @@ -116734,11 +116724,11 @@ aNi aNi aNi aNi -eFI -jao -gfv -gfv -rmB +mKO +pEH +uaR +uaR +vGt vOy elR xXh @@ -116756,9 +116746,9 @@ dMK vOy vOy vOy -eWN -jao -rmB +dyG +pEH +vGt pBG mGT nQA @@ -116769,14 +116759,14 @@ pBG pBG pBG pBG -jtU -rXF -jtU -vzB -mRU -kuK -mRU -woU +iTV +pmS +iTV +eLq +lYm +jDh +lYm +ckw aaa aaa aaa @@ -116817,26 +116807,26 @@ bdH aaa bdH aad -kyw -deq -deq -bwG -tEu -mUY -vOw -ouU -dro -bwG -gSH -xJp -qxJ -hCk -deq -nRN -bwG -wsS -vxY -wsS +nnw +xnn +xnn +pAH +uBS +vDZ +inq +sVv +jVi +pAH +cTc +cVZ +qvG +nqL +xnn +ecf +pAH +yep +dgL +yep bdg auj bbf @@ -116858,9 +116848,9 @@ bpv tMW bBY bCh -mPM -esd -mPM +oUo +xXC +oUo ejw xML iMm @@ -116874,10 +116864,10 @@ bDs gSk vSp lHG -kOJ -mgb -mgb -lyW +rHA +jbS +jbS +qbs ajZ bdH bdH @@ -116919,11 +116909,11 @@ aaf aaf aaf aaf -vHn -ejV -hoT -hoT -vyh +qdy +qTv +oKB +oKB +nSm aNi cYT aNm @@ -116937,11 +116927,11 @@ bhx vif aOR bsw -eWN -uSZ -rDm -ldq -rmB +dyG +rYs +onq +xAC +vGt vOy wWz vHO @@ -116957,29 +116947,29 @@ ruc xOY wTM vOy -qqb -cSM -fvE -jao -hCF +tKv +rvt +iif +pEH +dFr pBG -tGT +bfO nQA nQA jDO pBG aYH cHG -cOY +cgd pBG -mSM -mRU -gRc -oOp -mRU -jtU -vpf -woU +gck +lYm +cep +caL +lYm +iTV +dhe +ckw aaf aaf aaf @@ -117013,33 +117003,33 @@ bdH bdH bdH aac -kyw -kyw -kyw -kyw -kyw -kyw -kyw -kyw -deq -caq -bwG -igb -cpz -ooA -kpj -sBY -wyG -qjL -kpj -rAo -lka -kpj -kpj -mQY -ygp -tdi -fZE +nnw +nnw +nnw +nnw +nnw +nnw +nnw +nnw +xnn +jkb +pAH +xhp +vVD +ftr +kmu +vdc +oTR +waY +kmu +byD +oBQ +kmu +kmu +dZT +fUz +oFs +owO tda mng wTm @@ -117061,9 +117051,9 @@ mng wTm wCI tda -oSM -ter -oSM +npi +vJx +npi bJt swE wpI @@ -117077,17 +117067,17 @@ qxE rui vSp bJt -uXU -xbg -nhw -lyW -lyW -lyW -lyW -lyW -lyW -lyW -lyW +ogj +cER +fLl +qbs +qbs +qbs +qbs +qbs +qbs +qbs +qbs ajY aaa aaa @@ -117122,11 +117112,11 @@ aag aag aag aag -vHn -dGg -tob -hoT -tob +qdy +bEj +nxJ +oKB +nxJ aNi aZe aNm @@ -117140,11 +117130,11 @@ aco aco dYu bsw -cKW -xNl -dpS -jao -hCF +yks +fqX +nTU +pEH +dFr vOy wWz anw @@ -117160,11 +117150,11 @@ wLy eiE wTM vOy -eWN -gFL -gDQ -xgE -rmB +dyG +sfv +hJt +xVd +vGt fKh eYn nQA @@ -117175,14 +117165,14 @@ eAN eAN eAN pBG -vpf -mRU -mRU -mRU -mRU -vpI -vpf -woU +dhe +lYm +lYm +lYm +lYm +uCU +dhe +ckw aag aag aag @@ -117215,22 +117205,22 @@ bdH bdH bdH bdH -kyw -kyw -hCk -maK -lfx -lfx -lfx -deq -deq -deq -lfx -eYp -lfx -vmq -cqH -tjO +nnw +nnw +nqL +mQQ +wli +wli +wli +xnn +xnn +xnn +wli +ddN +wli +oPY +oPs +sbA bdd bdd bdd @@ -117240,9 +117230,9 @@ bdd bdd bdd bdd -nhE -naa -nVQ +cnx +kCH +czH bdd vuA vuA @@ -117264,9 +117254,9 @@ vuA vuA vuA bdd -fvV -ter -gvK +kko +vJx +raq bdd bdd bdd @@ -117281,17 +117271,17 @@ cDC vuF bJt bJt -xbg -mgb -mgb -mgb -gLm -ttD -mgb -mgb -mgb -lyW -lyW +cER +jbS +jbS +jbS +aTu +iPm +jbS +jbS +jbS +qbs +qbs aaa aaa aaa @@ -117325,11 +117315,11 @@ aag aag aag aag -vHn -oSG -tob -tob -tob +qdy +xIp +nxJ +nxJ +nxJ aNi aZr aNm @@ -117345,9 +117335,9 @@ cCa aNi aNi aNi -jMP -mxg -rmB +wal +xJr +vGt vOy wWz ovG @@ -117363,11 +117353,11 @@ gxP aOe wTM vOy -nLM -lOn -acQ -acQ -rmB +gyR +oXo +oao +oao +vGt fKh wvo nQA @@ -117378,14 +117368,14 @@ skR oxc nBi pBG -vzB -mRU -pGh -xEs -mRU -jtU -tMU -woU +eLq +lYm +mre +flK +lYm +iTV +enA +ckw aag aag aag @@ -117418,22 +117408,22 @@ bdH bdH bdH bdH -kyw -xJp -lfx -deq -yih -deq -deq -lfx -lfx -lfx -rHq -bwG -nPO -cGB -ugj -fbC +nnw +cVZ +wli +xnn +ijw +xnn +xnn +wli +wli +wli +qkc +pAH +jEj +bTr +gVP +xiZ bdd uvU xZk @@ -117443,9 +117433,9 @@ eYj aSp mho bdg -fZE -iLm -fZE +owO +daA +owO bdg bqZ bqZ @@ -117467,9 +117457,9 @@ bqZ bqZ bqZ bdg -oSM -xub -oSM +npi +cbo +npi bdg lCE oZD @@ -117484,17 +117474,17 @@ feq loY aDU bJt -vAx -mgb -xbg -mgb -xpL -mgb -mgb -xbg -xbg -mgb -lyW +mHj +jbS +cER +jbS +kus +jbS +jbS +cER +cER +jbS +qbs aaa aaa aaa @@ -117528,11 +117518,11 @@ aag aag aag aag -vHn -oeH -tob -hoT -tob +qdy +pPq +nxJ +oKB +nxJ aNi aZs aNm @@ -117548,9 +117538,9 @@ qiy ahR ahR egt -tzF -gIN -rmB +eQJ +nmj +vGt vOy woh vgO @@ -117566,13 +117556,13 @@ qxm vgO xAe vOy -oxg -jao -iUV -xNl -xZf +wYQ +pEH +bfG +fqX +miG fKh -lDa +sSP eAN eAN vEG @@ -117581,14 +117571,14 @@ pBG pBG pBG pBG -vpf -tra -vpf -vzB -mRU -iJT -vpf -woU +dhe +whr +dhe +eLq +lYm +iQR +dhe +ckw aag aag aag @@ -117621,9 +117611,9 @@ bdH bdH bdH bdH -kyw -deq -lfx +nnw +xnn +wli nsY nsY pRT @@ -117633,10 +117623,10 @@ nsY nsY nsY nsY -bwG -bwG -msC -bwG +pAH +pAH +vwU +pAH bdd xwE dAQ @@ -117646,9 +117636,9 @@ tGG bpA mho bdg -fZE -naa -fZE +owO +kCH +owO bdg bqZ beH @@ -117670,9 +117660,9 @@ beH beH bqZ bdg -oSM -ter -oSM +npi +vJx +npi bdg lCE uek @@ -117695,9 +117685,9 @@ nsY nsY nsY nsY -kqb -mgb -lyW +ogM +jbS +qbs aaa aaa aaa @@ -117731,11 +117721,11 @@ aag aag aag aag -vHn -mId -hoT -hoT -hoT +qdy +brD +oKB +oKB +oKB aNi jWr aNm @@ -117751,9 +117741,9 @@ hpY aOR aOR bgK -kGS -mxg -rmB +eBy +xJr +vGt vOy vOy vOy @@ -117769,29 +117759,29 @@ aoK vOy vOy vOy -glc -jao -rmB -mRU -mRU +oFZ +pEH +vGt +lYm +lYm pBG aGs eAN eAN vEG vrJ -xOs +tQM kOH hIs pBG -mSM -mRU -tCd -vpf -tra -vpf -mRU -woU +gck +lYm +kqu +dhe +whr +dhe +lYm +ckw aag aag aag @@ -117824,9 +117814,9 @@ aaa aaa aaa aaa -kyw -lfx -deq +nnw +wli +xnn nsY xWT kxd @@ -117836,10 +117826,10 @@ rSG rur oqS nsY -hsh -cPP -deq -eLH +hnK +niy +xnn +fLI bdd eUZ lCr @@ -117849,9 +117839,9 @@ tGG lJD mho bdg -fZE -naa -fZE +owO +kCH +owO bdg bqZ beH @@ -117873,9 +117863,9 @@ gBo beH bqZ bdg -oSM -ter -oSM +npi +vJx +npi bdg lCE fMe @@ -117898,9 +117888,9 @@ rSG qkP oqS nsY -mgb -mgb -lyW +jbS +jbS +qbs aaa aaa aaa @@ -117934,11 +117924,11 @@ aag aag aag aag -vHn -eDq -jFI -cGd -moK +qdy +rMG +fra +rOR +jZD aNi aNi aNi @@ -117954,9 +117944,9 @@ aOR aOR agr aNi -eWN -bNT -rmB +dyG +tje +vGt vOy vOy vOy @@ -117972,11 +117962,11 @@ vOy vOy vOy vOy -kbT -bNT -rmB -mRU -vpf +mba +tje +vGt +lYm +dhe pBG xiU xUa @@ -117987,14 +117977,14 @@ pZH nnL lgt pBG -vpI -mRU -bhV -jtU -mRU -vzB -mRU -woU +uCU +lYm +aHx +iTV +lYm +eLq +lYm +ckw aag aag aag @@ -118027,9 +118017,9 @@ aaa aaa aaa aaa -kyw -lfx -deq +nnw +wli +xnn nsY xWT kxd @@ -118039,10 +118029,10 @@ iIP kxd dDt nsY -exb -deq -deq -qLY +krA +xnn +xnn +uoF bdd ljW bDP @@ -118052,9 +118042,9 @@ lCr mpn pZR bdd -atH -iEM -atH +mqu +tvc +mqu bCx bqZ beH @@ -118076,9 +118066,9 @@ bgO beH bqZ bCx -oSM -ter -oSM +npi +vJx +npi bdd tSF lsn @@ -118101,9 +118091,9 @@ dmR kxd dDt nsY -mgb -xbg -lyW +jbS +cER +qbs aaa aaa aaa @@ -118137,15 +118127,15 @@ aag aag aag aag -vHn -cGd -cGd -cGd -iTQ -lWt -eDq -eDq -eDq +qdy +rOR +rOR +rOR +rLQ +rJF +rMG +rMG +rMG aNi aNi aNi @@ -118157,9 +118147,9 @@ aNi aNi aNi aNi -glc -bNT -rmB +oFZ +tje +vGt bPF aqG ata @@ -118172,14 +118162,14 @@ vYz awR uoi vOy -jyJ -niF +pOR +vlf bPF -ciI -lOn -rmB -mRU -vpf +jtr +oXo +vGt +lYm +dhe pBG pBG pBG @@ -118190,14 +118180,14 @@ pBG pBG pBG pBG -jtU -mRU -mRU -mRU -mRU -vpf -mRU -woU +iTV +lYm +lYm +lYm +lYm +dhe +lYm +ckw aag aag aag @@ -118230,9 +118220,9 @@ aaa aaa aaa aaa -kyw -lfx -deq +nnw +wli +xnn nsY gsg vHq @@ -118242,10 +118232,10 @@ rNb bxC jiU nsY -jvt -hiu -deq -vSr +dXU +tIN +xnn +vgY bdd asr asr @@ -118255,9 +118245,9 @@ nYp fZG phd pmv -mzv -yfg -fZE +kcR +vXV +owO nyw bqZ beH @@ -118279,9 +118269,9 @@ tmB eBg vKe eVv -cVZ -xdf -cVZ +rqn +onn +rqn hLS vKe vKe @@ -118304,9 +118294,9 @@ iSm bxC jiU nsY -mgb -xbg -lyW +jbS +cER +qbs aaa aaa aaa @@ -118330,39 +118320,39 @@ aaa aaa aaa aaa -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -hoT -tob -tob -hoT -tob -tob -hqm -hoT -tob -tob -tob -tob -hoT -vyh -hoT -tob -tob -fkK -kGS -bNT -kGS +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +oKB +nxJ +nxJ +oKB +nxJ +nxJ +mvu +oKB +nxJ +nxJ +nxJ +nxJ +oKB +nSm +oKB +nxJ +nxJ +cLx +eBy +tje +eBy cbg aqG atb @@ -118375,42 +118365,42 @@ paa sXd gVq vOy -sLk -niF +dan +vlf cbg -kGS -lOn -kGS -rXF -jtU -jtU -vpf -ycM -tne -jtU -jtU -vpf -ycM -vpf -jtU -jtU -jtU -uBx -fLi -jtU -vpf -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm +eBy +oXo +eBy +pmS +iTV +iTV +dhe +qsr +leZ +iTV +iTV +dhe +qsr +dhe +iTV +iTV +iTV +qHK +uPD +iTV +dhe +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv aaa aaa aaa @@ -118433,9 +118423,9 @@ aaa aac aaf aaf -kyw -lfx -deq +nnw +wli +xnn nsY nsY qxC @@ -118445,10 +118435,10 @@ nsY ntx nsY nsY -qWL -kIk -eXD -kMr +biv +oSy +waS +pJE bdd bdd bdd @@ -118458,9 +118448,9 @@ bdd bdd bdd bdd -fZE -iLm -fZE +owO +daA +owO bdg bqZ beH @@ -118482,9 +118472,9 @@ bgO beH bqZ bdg -oSM -xub -oSM +npi +cbo +npi bdd bdd bdd @@ -118507,9 +118497,9 @@ nsY gLZ nsY nsY -mgb -nhw -lyW +jbS +fLl +qbs aaf aaf ajY @@ -118533,7 +118523,7 @@ aaa aaa aaa aaa -gxm +uWv dxF dxF aaH @@ -118544,28 +118534,28 @@ aam aam aam aam -gxm -hgk -tob -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd +uWv +dRE +nxJ +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR aej aej aej aej -jZW -bNT -rZC +lLl +tje +toe vOy vOy vOy @@ -118581,28 +118571,28 @@ vOy vOy vOy vOy -bxV -lOn -uAi -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -jtU -vpf -gxm +iIJ +oXo +kKf +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +iTV +dhe +uWv aeT aeT aeT @@ -118613,7 +118603,7 @@ aeT nnD aZF aZF -gxm +uWv aaa aaa aaa @@ -118634,11 +118624,11 @@ aaa aaa aaa aad -kyw -kyw -kyw -deq -caq +nnw +nnw +nnw +xnn +jkb nsY tUS bNh @@ -118648,10 +118638,10 @@ fPp lqN vlO nsY -xxG -smA -ktR -lfx +kkj +mIX +lls +wli bdd dJI jaf @@ -118661,9 +118651,9 @@ mPR osU vKe dYX -mzv -xhW -fZE +kcR +hFU +owO bdg bqZ beH @@ -118685,9 +118675,9 @@ bgO beH bqZ bdg -oSM -iOo -cVZ +npi +mEr +rqn iUk cIx fUC @@ -118710,11 +118700,11 @@ iQt uZo xmJ nsY -xbg -mgb -lyW -lyW -lyW +cER +jbS +qbs +qbs +qbs ajZ aaa aaa @@ -118736,7 +118726,7 @@ aaa aaa aaa aaa -gxm +uWv dxF dxF aaH @@ -118747,28 +118737,28 @@ aam aam aam aam -gxm -bLf -tob -cGd -vVY -vVY -vVY -vVY -kLB -vVY -vVY -vVY -vVY -kLB +uWv +tvm +nxJ +rOR +ivy +ivy +ivy +ivy +lYS +ivy +ivy +ivy +ivy +lYS aej aeO afG ags aej -eWN -bNT -rmB +dyG +tje +vGt vOy elR xXh @@ -118784,28 +118774,28 @@ xXh xXh dMK vOy -eWN -lOn -rmB -mRU -bnF -lBw -bnF -mRU -qSw -qSw -qSw -qSw -urg -qSw -qSw -qSw -qSw -urg -mRU -jtU -nVE -gxm +dyG +oXo +vGt +lYm +vWb +fDC +vWb +lYm +wqU +wqU +wqU +wqU +tJa +wqU +wqU +wqU +wqU +tJa +lYm +iTV +kFL +uWv aeT aeT aeT @@ -118816,7 +118806,7 @@ aeT nnD aZF aZF -gxm +uWv aaa aaa aaa @@ -118836,12 +118826,12 @@ aaa aaa aaa aaa -kyw -kyw -veq -deq -deq -lfx +nnw +nnw +dle +xnn +xnn +wli nsY kio sJY @@ -118851,10 +118841,10 @@ xTW oGP cnM nsY -kqB -txH -txH -deq +foa +chi +chi +xnn bdd fva lkL @@ -118864,9 +118854,9 @@ cHB hDV vmP bdd -fZE -iLm -fZE +owO +daA +owO bdg bqZ bqZ @@ -118888,9 +118878,9 @@ bgO bqZ bqZ bdg -oSM -xub -oSM +npi +cbo +npi bdd oNP tge @@ -118913,12 +118903,12 @@ pyc uMn ivz nsY -xbg -mgb -xbg -xbg -lyW -lyW +cER +jbS +cER +cER +qbs +qbs aaa aaa aaa @@ -118939,7 +118929,7 @@ aaa aaa aaa aaa -gxm +uWv dxF dxF aaH @@ -118950,28 +118940,28 @@ aam aam aam aam -gxm -rGz -tob -cGd -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY +uWv +qXe +nxJ +rOR +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy aej aeP agI aia yaz -kGS -mxg -rmB +eBy +xJr +vGt vOy wWz vHO @@ -118987,28 +118977,28 @@ uXj rdt wTM vOy -eWN -jao -rmB -eyI -jtU -jaW -vkV -mRU -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -mRU -jtU -bWg -gxm +dyG +pEH +vGt +uai +iTV +tzZ +lOt +lYm +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +lYm +iTV +wlQ +uWv aeT aeT aeT @@ -119019,7 +119009,7 @@ aeT nnD aZF aZF -gxm +uWv aaa aaa aaa @@ -119039,12 +119029,12 @@ aaa aaa aaa aaa -kyw -lHB -lfx -lfx -lfx -lfx +nnw +cXh +wli +wli +wli +wli heK kam axc @@ -119054,10 +119044,10 @@ vHh pvh sZs nsY -bwG -erL -scX -caq +pAH +mtR +vmZ +jkb bdd cDH cHB @@ -119067,9 +119057,9 @@ wmz rhy rec bdg -fZE -naa -onn +owO +kCH +sVp bdd bdd bDQ @@ -119091,9 +119081,9 @@ bgO cab bdd bdd -tmE -ter -oSM +alu +vJx +npi bdg jLS xdP @@ -119116,12 +119106,12 @@ xuQ uPW kYv oDx -sAS -sAS -sAS -rCh -xbg -lyW +lTL +lTL +lTL +tzC +cER +qbs aaa aaa aaa @@ -119142,39 +119132,39 @@ aaa aaa aaa aaa -gxm +uWv adj apk apk -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -hqb -vsd -cGd -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +euu +yma +rOR +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy aej aeQ agK agu eup -kGS -mxg -rmB +eBy +xJr +vGt vOy wWz uwZ @@ -119190,39 +119180,39 @@ coZ sNz wTM vOy -eWN -jao -rmB -eyI -yfL -sjw -xHD -mRU -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -mRU -jZo -hQK -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm +dyG +pEH +vGt +uai +sbU +fWj +kdX +lYm +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +lYm +dDo +lqL +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv asM asM mwR -gxm +uWv aaa aaa aaa @@ -119242,12 +119232,12 @@ aaa aaa aaa aaa -kyw -eqm -lfx -vvH -bwG -bwG +nnw +hpO +wli +pzi +pAH +pAH nsY wpz oEX @@ -119257,10 +119247,10 @@ xxm qSK ieu nsY -mZc -lfx -neH -deq +aSV +wli +eKE +xnn bdd xXW gVu @@ -119270,10 +119260,10 @@ wmz vbI rec bdg -atH -iEM -atH -ppV +mqu +tvc +mqu +nxg bdd bqZ bgO @@ -119293,10 +119283,10 @@ gAj bgO bqZ bdd -eoy -brq -jnc -brq +eXc +iIQ +uYP +iIQ bdg jLS frb @@ -119319,12 +119309,12 @@ mzV pML ivz nsY -iZd -mgb -xbg -jPx -xQd -lyW +gcu +jbS +cER +fKC +dvD +qbs aaa aaa aaa @@ -119345,7 +119335,7 @@ aaa aaa aaa aaa -gxm +uWv ojH ojH taV @@ -119359,25 +119349,25 @@ ouf aLc wBI hGG -cGd -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY +rOR +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy aej aeR agK agu aej -ftb -mqR -djd +upz +gmL +aVw vOy wWz pEJ @@ -119393,25 +119383,25 @@ xQm tfH wTM vOy -ddx -pFf -xZf -eyI -byH -jtU -nvd -mRU -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -mRU +sTX +xXm +miG +uai +jEm +iTV +ety +lYm +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +lYm vmJ elv vRR @@ -119425,7 +119415,7 @@ qXS hXX xDe xDe -gxm +uWv aaa aaa aaa @@ -119445,12 +119435,12 @@ aaa aaa aaa aaa -kyw -htg -deq -deq -qCH -cXm +nnw +slx +xnn +xnn +mSc +wgw nsY hUz dbn @@ -119460,10 +119450,10 @@ uRM ipe ehR nsY -xEe -lfx -tdH -igw +sEE +wli +tLD +rMk bdd sgm kEg @@ -119473,10 +119463,10 @@ xgN vgn xgN bdg -fZE -naa -fZE -fZE +owO +kCH +owO +owO bdg bqZ qMR @@ -119496,10 +119486,10 @@ tXb fOk bqZ bdg -oSM -oSM -ter -oSM +npi +npi +vJx +npi bdg vLg loy @@ -119522,12 +119512,12 @@ sZH rjV ivz nsY -qZy -jfS -bUH -ciB -soT -lyW +eCZ +rEF +vDk +woQ +kHx +qbs aaa aaa aaa @@ -119548,7 +119538,7 @@ aaa aaa aaa aaa -gxm +uWv ojH ojH taV @@ -119562,25 +119552,25 @@ ouf sdf cRL hGG -cGd -cGd -cGd +rOR +rOR +rOR ahi -cGd -cGd -cGd -cGd +rOR +rOR +rOR +rOR uux -cGd -cGd +rOR +rOR aej aej agO aid aej -umI -fsu -umI +tCM +nNz +tCM vOy wWz uwZ @@ -119596,25 +119586,25 @@ vfP sNz wTM vOy -umI -fsu -umI -mRU -mRU -veW -mRU -mRU -mRU -mRU +tCM +nNz +tCM +lYm +lYm +yjf +lYm +lYm +lYm +lYm nNX -mRU -mRU -mRU -mRU +lYm +lYm +lYm +lYm ayo -mRU -mRU -mRU +lYm +lYm +lYm cna nzD xDV @@ -119628,7 +119618,7 @@ qXS hXX xDe xDe -gxm +uWv aaa aaa aaa @@ -119648,12 +119638,12 @@ aaa aaa aaa aaa -kyw -lfx -lfx -yih -qCH -spT +nnw +wli +wli +ijw +mSc +hYE nsY nsY nsY @@ -119663,10 +119653,10 @@ nsY nsY nsY nsY -bwG -bwG -bwG -bwG +pAH +pAH +pAH +pAH bdd bdd bdd @@ -119676,10 +119666,10 @@ bdd bdd bdd bdd -tvl -naa -meQ -fZE +cwe +kCH +laC +owO bdg bqZ beH @@ -119699,10 +119689,10 @@ gAj beH bqZ bdg -oSM -awE -ter -gvK +npi +jEv +vJx +raq bdd bdd bdd @@ -119725,12 +119715,12 @@ nsY nsY nsY nsY -ecj -bZf -lZI -faR -wxu -lyW +fXy +leL +kIr +nZp +ffL +qbs aaa aaa aaa @@ -119751,7 +119741,7 @@ aaa aaa aaa aaa -gxm +uWv ojH ojH taV @@ -119776,14 +119766,14 @@ cuN cQW lQa wjE -vuE -bkb -kGS -kGS -pvi -bgh -spW -pjQ +cgj +mcY +eBy +eBy +wvN +hAb +waH +bVW vOy wWz qxP @@ -119799,14 +119789,14 @@ gxP nMe wTM vOy -bgh -spW -pjQ -eJg -bkb -kGS -rRf -pOC +hAb +waH +bVW +bnO +mcY +eBy +jHs +mse qtj fpA qUx @@ -119831,7 +119821,7 @@ qXS hXX xDe xDe -gxm +uWv aaa aaa aaa @@ -119851,38 +119841,38 @@ aaa aaa aaa aaa -kyw -lfx -deq -bwG -bwG -bwG -bwG -bwG -bwG -kUI -bFB -iPt -atH -sCg -hgs -sCg -osX -uCt -sCg -atH -eUf -pwx -eUf -eUf -rIP -eUf -atH -fZE -fZE -naa -meQ -fZE +nnw +wli +xnn +pAH +pAH +pAH +pAH +pAH +pAH +woW +gwW +fCd +mqu +xVi +cqX +xVi +qAc +xYg +xVi +mqu +aCy +oZC +aCy +aCy +rJE +aCy +mqu +owO +owO +kCH +laC +owO bdg bqZ beH @@ -119902,38 +119892,38 @@ beH beH bqZ bdg -oSM -awE -ter -oSM -oSM -brq -mdC -qWK -lyq -lyq -lyq -lyq -brq -eMI -eMI -gjg -bom -kiy -eMI -brq -cSP -cSH -svt -mJO -mJO -mJO -mJO -mJO -mJO -jPx -mgb -lyW +npi +jEv +vJx +npi +npi +iIQ +pWT +lnE +nlt +nlt +nlt +nlt +iIQ +jzu +jzu +gnV +gtT +eUj +jzu +iIQ +xdt +ckO +mZg +rng +rng +rng +rng +rng +rng +fKC +jbS +qbs aaa aaa aaa @@ -119954,17 +119944,17 @@ aaa aaa aaa aaa -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv dho wVt wVt @@ -119979,14 +119969,14 @@ jlc kbv dTn ngE -acQ -acQ -acQ -acQ -xdl -klr -bNT -dOW +oao +oao +oao +oao +nJJ +deW +tje +fqN vOy woh vgO @@ -120002,14 +119992,14 @@ vgO vgO xAe vOy -gTV -mGk -xFW -lrd -kkI -kkI -kkI -kkI +jkp +hlP +eYx +rzC +oSP +oSP +oSP +oSP usL gsC cMz @@ -120024,17 +120014,17 @@ qLg iup ryY cnn -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv aaa aaa aaa @@ -120054,38 +120044,38 @@ aaa aaa aaa aaa -kyw -lfx -deq -bwG -ycl -ycl -ycl -jCg -bwG -eNL -pVr -oHs -osQ -tpR -tpR -tpR -tpR -tpR -tpR -osQ -tpR -tpR -tpR -tpR -tpR -tpR -osQ -wxp -tpR -baW -meQ -fZE +nnw +wli +xnn +pAH +pCe +pCe +pCe +vbk +pAH +gSG +kHb +usF +eYd +gKn +gKn +gKn +gKn +gKn +gKn +eYd +gKn +gKn +gKn +gKn +gKn +gKn +eYd +ndb +gKn +iTf +laC +owO bdg bqZ beH @@ -120105,38 +120095,38 @@ beH beH bqZ bdg -oSM -awE -jas -jhA -cVZ -qWx -jhA -jhA -jhA -jhA -jhA -jhA -qWx -jhA -jhA -jhA -jhA -jhA -jhA -qWx -ldW -mkx -eWv -mJO -plv -plv -plv -mbR -mJO -eBG -nhw -lyW +npi +jEv +hWi +grT +rqn +kAC +grT +grT +grT +grT +grT +grT +kAC +grT +grT +grT +grT +grT +grT +kAC +hPF +fed +mNB +rng +kks +kks +kks +xOb +rng +vKU +fLl +qbs aaa aaa aaa @@ -120164,10 +120154,10 @@ aag aag aag aag -vHn -fbe -hoT -rpG +qdy +xEq +oKB +oFg bGa dVn vwC @@ -120182,14 +120172,14 @@ sdv xMO wDg vHA -waV -iGE -kGS -kGS -pjY -gqv -hKJ -nww +myx +mMC +eBy +eBy +wtW +stm +wXf +cBq vOy vOy vOy @@ -120205,14 +120195,14 @@ vOy vOy vOy vOy -xvO -peu -nww -vcO -ssF -kGS -bij -hux +kYs +lZt +cBq +jeN +vsK +eBy +vJd +vMt kfo rCl ePM @@ -120227,10 +120217,10 @@ dbc cNM ofU njk -rXF -jtU -vzB -woU +pmS +iTV +eLq +ckw aag aag aag @@ -120257,38 +120247,38 @@ aaa aaa aaa aaa -kyw -lfx -deq -bwG -ycl -ycl -ycl -ycl -bwG -xgk -oUi -tLZ -atH -xSx -xSx -fBi -tXo -mBa -pYh -atH -wMl -aAU -dkP -dsY -rwj -xZR -atH -fZE -meQ -iEM -meQ -onn +nnw +wli +xnn +pAH +pCe +pCe +pCe +pCe +pAH +iaZ +uIX +xEs +mqu +nyF +nyF +uFK +oXn +cGi +twL +mqu +lPo +cek +bEV +pzR +dvH +oTv +mqu +owO +laC +tvc +laC +sVp bdd bDQ mng @@ -120308,38 +120298,38 @@ vUe kuw cab bdd -tmE -awE -jnc -awE -oSM -brq -gOS -gOS -sLX -bIj -jtZ -eLu -brq -xpl -exc -jCx -mqt -vno -vno -brq -wDG -ihI -fnc -mJO -plv -plv -plv -plv -mJO -jPx -enQ -lyW +alu +jEv +uYP +jEv +npi +iIQ +oFL +oFL +xAv +dKO +lEX +knN +iIQ +jHy +dpP +ihK +gqh +diG +diG +iIQ +vQo +eeH +tJn +rng +kks +kks +kks +kks +rng +fKC +rOD +qbs aaa aaa aaa @@ -120367,73 +120357,73 @@ aag aag aag aag -vHn -ggD -tob -cGd -cGd -cGd -cGd -cGd -cGd -cGd +qdy +gLo +nxJ +rOR +rOR +rOR +rOR +rOR +rOR +rOR hZE sVV oON -cGd -cGd -cva -cGd -cGd +rOR +rOR +leQ +rOR +rOR ael ael agQ aih ael -htF -bNT -jvz -ltt -pPU -pPU -ecz -pPU -pPU -pPU -pPU -pPU -pPU -pPU -ecz -pPU -pPU -ltt -riK -bNT -hmB -mRU -mRU -gBs -mRU -mRU -mRU -gBs -mRU -mRU -mRU +hlW +tje +kTp +sdF +jed +jed +xoX +jed +jed +jed +jed +jed +jed +jed +xoX +jed +jed +sdF +bxQ +tje +kru +lYm +lYm +hdf +lYm +lYm +lYm +hdf +lYm +lYm +lYm mKi sfT hGV -mRU -mRU -mRU -mRU -mRU -mRU -mRU -vpf -tMU -woU +lYm +lYm +lYm +lYm +lYm +lYm +lYm +dhe +enA +ckw aag aag aag @@ -120460,18 +120450,18 @@ aaa aaa aaa aaa -kyw -lfx -deq -bwG -ycl -ycl -ycl -ycl +nnw +wli +xnn +pAH +pCe +pCe +pCe +pCe jUx -fZE -bBR -tup +owO +eWf +vES jeb jeb jeb @@ -120487,11 +120477,11 @@ mWy jeb jeb jeb -fZE -meQ -iEM -meQ -fZE +owO +laC +tvc +laC +owO bdg bqZ udi @@ -120511,11 +120501,11 @@ veu mDW bqZ bdg -oSM -awE -jnc -awE -oSM +npi +jEv +uYP +jEv +npi vra vra vra @@ -120531,18 +120521,18 @@ rJx vra vra vra -uGf -mkx -oSM +ndl +fed +npi vfo -plv -plv -plv -plv -mJO -nEl -bhy -lyW +kks +kks +kks +kks +rng +xIB +xcC +qbs aaa aaa aaa @@ -120570,73 +120560,73 @@ aag aag aag aag -vHn -hgk -hoT -hoT -cGd -vVY -vVY -vVY -tvS -cGd +qdy +dRE +oKB +oKB +rOR +ivy +ivy +ivy +pJa +rOR xVe sVV mbx -cGd -orq -rRb -qjT -kRk +rOR +bJK +tsI +hkF +mEL ael afE agT agT ael -oPT -lOn -acQ -ltt -acQ -gfv -gfv -gfv -acQ -gfv -gfv -gfv -acQ -gfv -gfv -gfv -jRg -ltt -acQ -bNT -oNa -mRU -tih -vpf -tih -mRU -jwM -jtU -jtU -jHX -mRU +nyR +oXo +oao +sdF +oao +uaR +uaR +uaR +oao +uaR +uaR +uaR +oao +uaR +uaR +uaR +eDW +sdF +oao +tje +qXW +lYm +eSp +dhe +eSp +lYm +jnl +iTV +iTV +gOf +lYm aDS sfT hGV -mRU -qSw -qSw -qSw -vMQ -mRU -upS -jtU -jtU -woU +lYm +wqU +wqU +wqU +axT +lYm +pzA +iTV +iTV +ckw aag aag aag @@ -120663,18 +120653,18 @@ aac aaf aaf aaf -kyw -deq -lfx -bwG -ycl -ycl -ycl -ycl -bwG -hiP -meQ -czN +nnw +xnn +wli +pAH +pCe +pCe +pCe +pCe +pAH +hKX +laC +vfc jeb vlX aNx @@ -120690,11 +120680,11 @@ xHp hmF vlX jeb -bMf -meQ -iEM -meQ -fZE +jJF +laC +tvc +laC +owO bdg bqZ udi @@ -120714,11 +120704,11 @@ fIZ mDW bqZ bdg -oSM -awE -jnc -awE -eOx +npi +jEv +uYP +jEv +fcv vra asX chf @@ -120734,18 +120724,18 @@ lpt mgF asX vra -pHh -mkx -hNv -mJO -plv -plv -plv -plv -mJO -nEl -rxe -lyW +vHL +fed +wFk +rng +kks +kks +kks +kks +rng +xIB +nuH +qbs aaf aaf aaf @@ -120773,73 +120763,73 @@ aag aag aag aag -vHn -vHn -tob -tob -cGd -vVY -vVY -vVY -vVY -cGd +qdy +qdy +nxJ +nxJ +rOR +ivy +ivy +ivy +ivy +rOR hHe gxn ioH -cGd -mNS -tob -hvq -pCQ +rOR +wLM +nxJ +vhM +qFp ael afH agV ain ael -bMV -jao -tbF -ltt -dZP -tbF -dZP -eQh -mTo -tCD -tCD -tCD -mTo -wyE -dZP -dKD -dZP -ltt -dKD -bNT -enF -mRU -mRU -jtU -wlB -mRU -bBc -vpf -jtU -bBc -mRU +fxX +pEH +nNN +sdF +tpB +nNN +tpB +vtg +ulD +iAM +iAM +iAM +ulD +iBT +tpB +oYD +tpB +sdF +oYD +tje +yiL +lYm +lYm +iTV +ajq +lYm +yaa +dhe +iTV +yaa +lYm uRY pMA waJ -mRU -qSw -qSw -qSw -qSw -mRU -oNM -vpf -woU -woU +lYm +wqU +wqU +wqU +wqU +lYm +lcL +dhe +ckw +ckw aag aag aag @@ -120866,18 +120856,18 @@ aad aag aag aag -kyw -xkb -dAA -bwG -ycl -ycl -ycl -ycl -bwG -cVf -meQ -jTt +nnw +pDq +uxx +pAH +pCe +pCe +pCe +pCe +pAH +pMh +laC +ePV jeb obE tdE @@ -120893,11 +120883,11 @@ xHp xwl rHf jeb -rrU -meQ -iEM -meQ -fZE +rUq +laC +tvc +laC +owO bdg bqZ ngI @@ -120917,11 +120907,11 @@ xAt nNH bqZ bdg -oSM -awE -jnc -awE -uNp +npi +jEv +uYP +jEv +sGJ vra bMq qUq @@ -120937,18 +120927,18 @@ lpt qYQ ptj vra -opV -mkx -xVY -mJO -plv -plv -plv -plv -mJO -jPx -mgb -lyW +fgO +fed +spN +rng +kks +kks +kks +kks +rng +fKC +jbS +qbs aag aag aag @@ -120977,31 +120967,31 @@ aag aag aag aag -vHn -hoT -hoT -cGd -vVY -vVY -vVY -vVY +qdy +oKB +oKB +rOR +ivy +ivy +ivy +ivy aba aGA kbv fZo -cGd -nnH -hoT -hoT -eJj +rOR +oJX +oKB +oKB +oxo ael afI agY oxi xfm -jux -gIN -jvz +eRX +nmj +kTp mOi mOi mOi @@ -121017,31 +121007,31 @@ aHq aHq aHq aHq -klr -mxg -qGZ -bMi -mRU -jtU -vpf -rXF -jtU -jtU -jtU -vpf -mRU +deW +xJr +dER +jGY +lYm +iTV +dhe +pmS +iTV +iTV +iTV +dhe +lYm mzs aPT xyB ceD -qSw -qSw -qSw -qSw -mRU -isq -vpf -woU +wqU +wqU +wqU +wqU +lYm +qUT +dhe +ckw aag aag aag @@ -121069,18 +121059,18 @@ aad aag aag aag -kyw -deq -qZK -bwG -bwG -bwG -bwG -bwG -bwG -dTd -dTd -div +nnw +xnn +lpH +pAH +pAH +pAH +pAH +pAH +pAH +niz +niz +vbq jeb vlX thA @@ -121096,11 +121086,11 @@ gAA fFD vlX jeb -wEK -meQ -iEM -meQ -fZE +oue +laC +tvc +laC +owO bdg bqZ beH @@ -121120,11 +121110,11 @@ beH beH bqZ bdg -oSM -awE -jnc -awE -dNW +npi +jEv +uYP +jEv +mBa vra asX drj @@ -121140,18 +121130,18 @@ cgo hQc asX vra -crc -goo -hAA -mJO -mJO -mJO -mJO -mJO -mJO -jPx -pgJ -lyW +xWi +tJw +kfa +rng +rng +rng +rng +rng +rng +fKC +rzK +qbs aag aag aag @@ -121180,31 +121170,31 @@ aag aag aag aag -vHn -hoT -tob -cGd -vVY -vVY -vVY -vVY -cGd +qdy +oKB +nxJ +rOR +ivy +ivy +ivy +ivy +rOR mAF ilq pjj -cGd -dkt -tob -hoT -xfW +rOR +dzS +nxJ +oKB +cNn ael afJ agY aiq ajJ -dpS -mxg -iUV +nTU +xJr +bfG mOi rCw rCw @@ -121220,31 +121210,31 @@ dgg xRk bti aHq -rwf -mxg -qGZ -mqd -mRU -jtU -vzB -mRU -bBc -vpf -jtU -vpf -mRU +vsB +xJr +dER +euB +lYm +iTV +eLq +lYm +yaa +dhe +iTV +dhe +lYm gfN efj sxE -mRU -qSw -qSw -qSw -qSw -mRU -vpI -jtU -woU +lYm +wqU +wqU +wqU +wqU +lYm +uCU +iTV +ckw aag aag aag @@ -121272,18 +121262,18 @@ aad aag aag aag -kyw -xwd -lfx -bwG -ycl -ycl -ycl -jCg -bwG -wBw -bZo -vsf +nnw +sMe +wli +pAH +pCe +pCe +pCe +vbk +pAH +tFH +jot +sZN jeb vlX tdE @@ -121299,11 +121289,11 @@ xHp xwl vlX jeb -dQV -meQ -iEM -meQ -onn +idv +laC +tvc +laC +sVp bdd bDQ lnm @@ -121323,11 +121313,11 @@ sCA bVw cab bdd -tmE -awE -jnc -awE -gvK +alu +jEv +uYP +jEv +raq vra asX qUq @@ -121343,18 +121333,18 @@ lpt qYQ asX vra -lDk -dEK -oWN -mJO -plv -plv -plv -mbR -mJO -jPx -mgb -lyW +nQS +qfp +xdv +rng +kks +kks +kks +xOb +rng +fKC +jbS +qbs aag aag aag @@ -121383,31 +121373,31 @@ aag aag aag aag -vHn -tob -xLu -cGd -vVY -vVY -vVY -vVY -cGd +qdy +nxJ +wTe +rOR +ivy +ivy +ivy +ivy +rOR hZE kbv mbx -cGd -gMJ -tob -hoT -xfW +rOR +uUD +nxJ +oKB +cNn ael afK ahc air ael -nBo -mxg -uZI +fUT +xJr +puV mOi wCT sIf @@ -121423,31 +121413,31 @@ oqv iqd rUy cnS -klr -mxg -pSN -mRU -mRU -jtU -oNM -mRU -tih -ycM -jtU -vpf -mRU +deW +xJr +lAg +lYm +lYm +iTV +lcL +lYm +eSp +qsr +iTV +dhe +lYm aDS aPT hGV -mRU -qSw -qSw -qSw -qSw -mRU -jtU -vpf -woU +lYm +wqU +wqU +wqU +wqU +lYm +iTV +dhe +ckw aag aag aag @@ -121475,18 +121465,18 @@ aad aag aag aag -kyw -deq -lfx -bwG -ycl -ycl -ycl -ycl -bwG -tQe -meQ -ktl +nnw +xnn +wli +pAH +pCe +pCe +pCe +pCe +pAH +rgs +laC +aaG jeb obE thA @@ -121502,11 +121492,11 @@ xHp diJ rHf jeb -fZE -meQ -iEM -meQ -fZE +owO +laC +tvc +laC +owO bCx bqZ cNf @@ -121526,11 +121516,11 @@ nuK dVe bqZ bCx -oSM -awE -vOZ -awE -oSM +npi +jEv +fBW +jEv +npi vra bMq drj @@ -121546,18 +121536,18 @@ lpt eBV ptj vra -xzI -mkx -hdV -mJO -plv -plv -plv -plv -mJO -nEl -xbg -lyW +oDd +fed +fGR +rng +kks +kks +kks +kks +rng +xIB +cER +qbs aag aag aag @@ -121586,31 +121576,31 @@ aag aag aag aag -vHn -tob -hUb -cGd -cGd -cGd -cGd -cGd -cGd +qdy +nxJ +ujc +rOR +rOR +rOR +rOR +rOR +rOR laM kbv nkH -cGd -eJZ -rRb -cXd -xew +rOR +cFb +tsI +sYe +eOY ael afL ahe aij ael -acQ -lOn -acQ +oao +oXo +oao mOi kbH kbH @@ -121626,31 +121616,31 @@ wDy aGN dxv cnS -riK -mxg -kGS -rXF -vpf -vpf -aBQ -mRU -mRU -mRU -gBs -mRU -mRU +bxQ +xJr +eBy +pmS +dhe +dhe +tXX +lYm +lYm +lYm +hdf +lYm +lYm oIa aPT bqY -mRU -mRU -mRU -mRU -mRU -mRU -vpf -vpf -woU +lYm +lYm +lYm +lYm +lYm +lYm +dhe +dhe +ckw aag aag aag @@ -121673,23 +121663,23 @@ aKQ aaa aaa aab -kyw -kyw -kyw -kyw -kyw -kyw -deq -iGc -bwG -ycl -ycl -ycl -ycl +nnw +nnw +nnw +nnw +nnw +nnw +xnn +sro +pAH +pCe +pCe +pCe +pCe cmC -fZE -meQ -hvz +owO +laC +vgN jeb vlX tdE @@ -121705,11 +121695,11 @@ xHp xwl vlX jeb -fZE -meQ -cmL -czR -jzT +owO +laC +vLe +jrx +jtH bCy bDS cNf @@ -121729,11 +121719,11 @@ qnC dVe cac bCy -hQf -sTU -xLX -awE -hCf +icd +qsK +rNT +jEv +eVf vra asX qUq @@ -121749,23 +121739,23 @@ lpt qYQ asX vra -wcD -mkx -oSM +ueq +fed +npi cnd -plv -plv -plv -plv -mJO -kLm -xbg -lyW -lyW -lyW -lyW -lyW -lyW +kks +kks +kks +kks +rng +faC +cER +qbs +qbs +qbs +qbs +qbs +qbs aaa aab aaa @@ -121789,31 +121779,31 @@ aag aag aag aag -vHn -tJq -bLf -cGd -vVY -vVY -vVY -tvS -cGd +qdy +wGa +tvm +rOR +ivy +ivy +ivy +pJa +rOR hZE kbv mbx -cGd -cva -cGd -cGd -cGd +rOR +leQ +rOR +rOR +rOR adO adO adO adO adO -frI -lOn -oNa +yjQ +oXo +qXW mOi mOi mOi @@ -121829,31 +121819,31 @@ nTs pje pje cnT -meS -gUk -naj -mRU -mRU -mRU -mRU -mRU -jwM -oZn -jtU -lPW -mRU +mRC +nWf +pfU +lYm +lYm +lYm +lYm +lYm +jnl +wzC +iTV +bDN +lYm aDS aPT hGV -mRU -qSw -qSw -qSw -vMQ -mRU -wUJ -vpf -woU +lYm +wqU +wqU +wqU +axT +lYm +vJq +dhe +ckw aag aag aag @@ -121876,23 +121866,23 @@ aKQ aaa aaa aab -kyw -ety -deq -deq -deq -deq -deq -xJp -bwG -ycl -ycl -ycl -ycl -bwG -lFL -sNL -ygB +nnw +eNf +xnn +xnn +xnn +xnn +xnn +cVZ +pAH +pCe +pCe +pCe +pCe +pAH +mTa +kId +sEJ jeb jeb hfa @@ -121908,11 +121898,11 @@ xWd oSL jeb jeb -fZE -meQ -dAm -fEF -otC +owO +laC +uQE +cDd +ycb bdd bDT tHv @@ -121932,11 +121922,11 @@ iXb pzV cad bdd -vMA -oYi -sIR -awE -oSM +vij +xPU +qay +jEv +npi vra vra eUh @@ -121952,23 +121942,23 @@ mSU wVy vra vra -siy -wIX -aCu -mJO -plv -plv -plv -plv -mJO -nEl -xbg -jPU -mgb -cgU -oqI -iDk -lyW +vtV +jYz +roK +rng +kks +kks +kks +kks +rng +xIB +cER +wuR +jbS +pga +ygb +fkF +qbs aaa aab aaa @@ -121992,31 +121982,31 @@ aag aag aag aag -vHn -hoT -rGz -cGd -vVY -vVY -vVY -vVY -cGd +qdy +oKB +qXe +rOR +ivy +ivy +ivy +ivy +rOR hHe gxn gKd -cGd -hoT -hoT -svV -rIE +rOR +oKB +oKB +far +ssF adO afM fpR ahf adO -dni -jao -acQ +qEw +pEH +oao aqU sdl mLE @@ -122032,31 +122022,31 @@ rsO aGN rbB cnS -dKD -mxg -jvz +oYD +xJr +kTp aUH aXx jKI aXx -mRU -tih -vpf -jtU -vpf -mRU +lYm +eSp +dhe +iTV +dhe +lYm lCL pMA gcm -mRU -qSw -qSw -qSw -qSw -mRU -uNz -jtU -woU +lYm +wqU +wqU +wqU +wqU +lYm +bEW +iTV +ckw aag aag aag @@ -122079,23 +122069,23 @@ aKQ aaa aaa aab -kyw -byt -lfx -lfx -lfx -lfx -txp -veq -bwG -ycl -ycl -ycl -ycl -bwG -bwP -bwP -bwP +nnw +pDZ +wli +wli +wli +wli +dDd +dle +pAH +pCe +pCe +pCe +pCe +pAH +tOp +tOp +tOp jeb tkN qHg @@ -122111,11 +122101,11 @@ gAA cGV tkN jeb -hjQ -meQ -fNd -oUi -qdV +rSI +laC +dYa +uIX +lRL bdd bDU bqZ @@ -122135,11 +122125,11 @@ bqZ bqZ cae bdd -huP -nbu -kcg -awE -oSM +sUA +unm +bJN +jEv +npi vra gNq hXb @@ -122155,23 +122145,23 @@ cgo skF gNq vra -fqA -fqA -fqA -mJO -plv -plv -plv -plv -mJO -rxq -sAS -cXX -sAS -sAS -nHG -xbg -lyW +sde +sde +sde +rng +kks +kks +kks +kks +rng +ncw +lTL +kyH +lTL +lTL +onr +cER +qbs aaa aab aaa @@ -122195,31 +122185,31 @@ aag aag aag aag -vHn -tob -alh -cGd -vVY -vVY -vVY -vVY +qdy +nxJ +sen +rOR +ivy +ivy +ivy +ivy bWh hmj kbv fZo -cGd -ykY -hoT -hoT -tjz +rOR +cWP +oKB +oKB +vyS adO afN ahh aiw ahG -kGS -mxg -acQ +eBy +xJr +oao aqU xbN gfE @@ -122235,31 +122225,31 @@ liJ pTj cnq cnS -klr -jao -acQ +deW +pEH +oao aUH oyE mMP mMP -mRU -jtU -vpf -jtU -vpf -mRU +lYm +iTV +dhe +iTV +dhe +lYm mzs aPT xyB cix -qSw -qSw -qSw -qSw -mRU -bWg -jtU -woU +wqU +wqU +wqU +wqU +lYm +wlQ +iTV +ckw aag aag aag @@ -122282,23 +122272,23 @@ aKQ aaa aaa aab -kyw -deq -lfx -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -txE -bwP -bwP +nnw +xnn +wli +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +gRW +tOp +tOp jeb aMx qHg @@ -122314,11 +122304,11 @@ xHp cGV nBa jeb -atH -atH -dAm -aCX -suH +mqu +mqu +uQE +sEz +unA bdd beQ beQ @@ -122338,11 +122328,11 @@ beQ beQ beQ bdd -oCb -wwv -sIR -brq -brq +uxy +kGz +qay +iIQ +iIQ vra bMu hXb @@ -122358,23 +122348,23 @@ lpt skF pQF vra -fqA -fqA -gzM -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -nEl -mgb -lyW +sde +sde +frT +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +xIB +jbS +qbs aaa aab aaa @@ -122398,31 +122388,31 @@ aag aag aag aag -vHn -btV -hoT -cGd -vVY -vVY -vVY -vVY -cGd +qdy +xeV +oKB +rOR +ivy +ivy +ivy +ivy +rOR mAF ilq pjj -cGd -boU -nNI -hoT -veO +rOR +eKk +jEB +oKB +pqU adO afO ahh aiw adO -mQF -yaR -mQF +sGP +rqa +sGP lmK lmK lmK @@ -122438,31 +122428,31 @@ cnH kzk cnR aHq -mQF -yaR -mQF +sGP +rqa +sGP aUH sIA gSj aXA -mRU -jtU -vpf -jtU -bBc -mRU +lYm +iTV +dhe +iTV +yaa +lYm gfN efj sxE -mRU -qSw -qSw -qSw -qSw -mRU -kUL -tMU -woU +lYm +wqU +wqU +wqU +wqU +lYm +uyb +enA +ckw aag aag aag @@ -122485,23 +122475,23 @@ aKQ aaa aaa aab -kyw -deq -iGc -wDr -mFL -mFL -iFp -wNz -wNz -wNz -oWE -wNz -wNz -suU -bwP -bwP -bwP +nnw +xnn +sro +wdA +jIS +jIS +cvt +jgW +jgW +jgW +pFO +jgW +jgW +syo +tOp +tOp +tOp jeb iow aMO @@ -122517,11 +122507,11 @@ xHp aUi iow jeb -fZE -meQ -rTA -tAW -stR +owO +laC +jgu +ehZ +jjE bCz bDV bGw @@ -122541,18 +122531,18 @@ bGw bGw bGw bCz -oSM -oYi -sIR -awE -dnP +npi +xPU +qay +jEv +lGI vra wTw bNE wDJ ivs nyQ -dXH +ipY vWB bSK nyQ @@ -122561,23 +122551,23 @@ bUi bUT wTw vra -fqA -fqA -fqA -dBg -aqL -aqL -buY -aqL -aqL -aqL -uWm -nRA -nRA -wDr -jPx -wdW -lyW +sde +sde +sde +ltn +dTl +dTl +aEU +dTl +dTl +dTl +hEZ +uqY +uqY +wdA +fKC +lyV +qbs aaa aab aaa @@ -122601,31 +122591,31 @@ aag aag aag aag -vHn -tob -tob -cGd -vVY -vVY -vVY -vVY -cGd +qdy +nxJ +nxJ +rOR +ivy +ivy +ivy +ivy +rOR xXT sVV tkR -cGd -ipr -pUL -tob -eQd +rOR +ulG +lrD +nxJ +kiY adO jkj ahh aiw adO -ebV -mbu -kCo +gEj +xKy +ksH ioU pvK qPE @@ -122641,31 +122631,31 @@ liJ hgB cbn aHq -ebV -qGP -pym +gEj +nhI +aPc aUd ckK iKM aHM -mRU -jtU -vpf -lPW -vwJ -mRU +lYm +iTV +dhe +bDN +dRf +lYm nme sfT vAH -mRU -qSw -qSw -qSw -qSw -mRU -edG -vpf -woU +lYm +wqU +wqU +wqU +wqU +lYm +wQM +dhe +ckw aag aag aag @@ -122688,23 +122678,23 @@ aKQ aaa aaa aab -kyw -lfx -gSH -wDr -mFL -mFL -iFp -wNz -wNz -wNz -wNz -wNz -wNz -suU -bwP -bwP -bwP +nnw +wli +cTc +wdA +jIS +jIS +cvt +jgW +jgW +jgW +jgW +jgW +jgW +syo +tOp +tOp +tOp aLT aLT aLT @@ -122720,11 +122710,11 @@ aQL aQL aQL aQL -dQV -meQ -dAm -fEF -fZE +idv +laC +uQE +cDd +owO bCA bCA bdj @@ -122744,11 +122734,11 @@ bCA bdj bCA bCA -oSM -oYi -sIR -awE -gvK +npi +xPU +qay +jEv +raq bJC bJC bJC @@ -122764,23 +122754,23 @@ bSJ bSJ bSJ bSJ -fqA -fqA -fqA -dBg -aqL -aqL -aqL -aqL -aqL -aqL -uWm -nRA -nRA -wDr -nEl -mgb -lyW +sde +sde +sde +ltn +dTl +dTl +dTl +dTl +dTl +dTl +hEZ +uqY +uqY +wdA +xIB +jbS +qbs aaa aab aaa @@ -122804,31 +122794,31 @@ aag aag aag aag -vHn -hoT -hoT -cGd -cGd -cGd -cGd -cGd -cGd +qdy +oKB +oKB +rOR +rOR +rOR +rOR +rOR +rOR ehL kyr chb -cGd -cGd -cGd -moK -cGd -cGd +rOR +rOR +rOR +jZD +rOR +rOR lFt ahh aiw adO -qHu -hqx -kCo +jEo +wXx +ksH ioU qyZ wTd @@ -122844,31 +122834,31 @@ liJ qmP uoH aHq -kCo -mbu -kCo +ksH +xKy +ksH aUH dbv lII aWc -mRU -gBs -mRU -mRU -mRU -mRU +lYm +hdf +lYm +lYm +lYm +lYm tCx ncG tZg -mRU -mRU -mRU -mRU -mRU -mRU -jtU -jtU -woU +lYm +lYm +lYm +lYm +lYm +lYm +iTV +iTV +ckw aag aag aag @@ -122891,23 +122881,23 @@ aKQ aaa aaa aab -kyw -oif -nRN -wDr -mFL -mFL -iFp -wNz -wNz -wNz -wNz -wNz -wNz -suU -bwP -bwP -bwP +nnw +jtG +ecf +wdA +jIS +jIS +cvt +jgW +jgW +jgW +jgW +jgW +jgW +syo +tOp +tOp +tOp aLT kaB vVb @@ -122923,11 +122913,11 @@ aQL mJP bSn aQL -hEm -kti -eFa -fEF -exQ +fPk +xdN +qor +cDd +pgg bCB bCB bCB @@ -122947,11 +122937,11 @@ bCB bCB bCB bCB -uuI -oYi -mkx -bIW -eMZ +diu +xPU +fed +slr +xvB bJC jSp lAQ @@ -122967,23 +122957,23 @@ bSJ hII iJS bSJ -fqA -fqA -fqA -dBg -aqL -aqL -aqL -aqL -aqL -aqL -uWm -nRA -nRA -wDr -xgS -svF -lyW +sde +sde +sde +ltn +dTl +dTl +dTl +dTl +dTl +dTl +hEZ +uqY +uqY +wdA +buY +jta +qbs aaa aab aaa @@ -123007,31 +122997,31 @@ aag aag aag aag -vHn -hoT -tob -lso -hoT -tob -tob -hqm -rpG +qdy +oKB +nxJ +cgU +oKB +nxJ +nxJ +mvu +oFg cSa aeA sjz -rpG -hqm -tob -tob -hoT -fkK +oFg +mvu +nxJ +nxJ +oKB +cLx aiw ahh aiw nph -kCo -tSY -kCo +ksH +mns +ksH ioU mSz nIG @@ -123047,31 +123037,31 @@ iKf aGN qrv aHq -hBa -gft -kCo +vZF +tbG +ksH aGz ckd mQC aHM -rXF -jtU -jtU -egQ -ycM -rXF +pmS +iTV +iTV +ivG +qsr +pmS wcm lJY guo -rXF -fLi -vpf -uBx -jtU -jtU -vpf -vpf -woU +pmS +uPD +dhe +qHK +iTV +iTV +dhe +dhe +ckw aag aag aag @@ -123094,21 +123084,21 @@ aKQ aaa aaa aab -kyw -vaV -qxJ -wDr -lFw -wWt -wWt -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr +nnw +oBS +qvG +wdA +cFL +rWm +rWm +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA aLT aLT aLT @@ -123126,11 +123116,11 @@ aTw aUj kLk aQL -npw -vzi -eFa -fEF -rbd +rZb +yaW +qor +cDd +huI bdk bdk bgR @@ -123150,11 +123140,11 @@ myJ eKI bdk bdk -cxF -oYi -mkx -fic -kjW +aXa +xPU +fed +lBO +wVz bJC ojF bNG @@ -123171,22 +123161,22 @@ bUU uDW bSJ bSJ -ljv -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -fCg -fCg -geu -wDr -wtk -mgb -lyW +lij +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +nhb +nhb +dzV +wdA +hLq +jbS +qbs aaa aab aaa @@ -123211,30 +123201,30 @@ aag aag aag abh -cGd -cGd -moK -cGd -cGd -cGd -cGd -cGd +rOR +rOR +jZD +rOR +rOR +rOR +rOR +rOR wYa nBK mzS -cGd -cGd -cGd -cGd -tob -cGd +rOR +rOR +rOR +rOR +nxJ +rOR afP ahh aiw nph -kCo -hqx -kCo +ksH +wXx +ksH ioU ioU ioU @@ -123250,30 +123240,30 @@ aGN aGN pSU aHq -qcL -gft -kCo +iKP +tbG +ksH aGz drk mQC mkG -mRU -vpI -mRU -mRU -mRU -mRU +lYm +uCU +lYm +lYm +lYm +lYm nuM uHr xwX -mRU -mRU -mRU -mRU -mRU -gBs -mRU -mRU +lYm +lYm +lYm +lYm +lYm +hdf +lYm +lYm uOi aag aag @@ -123297,10 +123287,10 @@ aKQ aaa aaa aab -kyw -lfx -gUn -wDr +nnw +wli +egM +wdA bdY bdY bdY @@ -123311,7 +123301,7 @@ aaF aaF aaF aaF -wDr +wdA aLT aLT aLT @@ -123330,10 +123320,10 @@ aQL aQL aQL aQL -uBj -eFa -fEF -wMB +hQs +qor +cDd +rkn bdl bdl bdl @@ -123353,10 +123343,10 @@ bdl bdl bdl bdl -opd -oYi -mkx -jwP +fws +xPU +fed +ndT bJC bJC bJC @@ -123374,8 +123364,8 @@ bSJ bSJ bSJ bSJ -ljv -wDr +lij +wdA anm anm anm @@ -123386,10 +123376,10 @@ anm pfp pfp pfp -wDr -nEl -xbg -lyW +wdA +xIB +cER +qbs aaa aab aaa @@ -123428,16 +123418,16 @@ aeA bbe aeA aeA -cGd -tob -cGd +rOR +nxJ +rOR afQ aiw aiw nph -kCo -hqx -kCo +ksH +wXx +ksH ioU lPO vJg @@ -123453,16 +123443,16 @@ eEo aGN rub aHq -gar -gft -kCo +tSm +tbG +ksH aGz eqB obC hcf -mRU -cpQ -mRU +lYm +dlt +lYm lJY lJY lFK @@ -123500,10 +123490,10 @@ aKQ aaa aaa aab -kyw -oxn -oxn -wDr +nnw +nsh +nsh +wdA bdY bdY bdY @@ -123514,7 +123504,7 @@ aaF aaF aaF aaF -wDr +wdA aLT aLT bbY @@ -123533,17 +123523,17 @@ brn aRT buM aQL -fZE -eFa -fEF -wMB +owO +qor +cDd +rkn bdl bEr bEs bIs bdm rbY -eAG +gwD bOK bPD bYa @@ -123556,10 +123546,10 @@ bYu nmK caf bdl -oDU -oYi -mkx -oSM +eII +xPU +fed +npi bJC cdT cfo @@ -123577,8 +123567,8 @@ clI clg clW bSJ -ljv -wDr +lij +wdA anm anm anm @@ -123589,10 +123579,10 @@ anm pfp pfp pfp -wDr -cZI -xGT -lyW +wdA +xzx +mSm +qbs aaa aab aaa @@ -123631,16 +123621,16 @@ asA amF kmE aeA -cGd -iTQ -cGd +rOR +rLQ +rOR ahJ ahJ ahJ adO -kCo -tSY -kCo +ksH +mns +ksH ioU dnS viN @@ -123656,16 +123646,16 @@ aRi aGN qrv aHq -oUO -gft -kCo +aWC +tbG +ksH aUH aGz aGz aGz -mRU -vzB -mRU +lYm +eLq +lYm lJY qbx dcp @@ -123703,10 +123693,10 @@ aKQ aaa aaa aab -emA -vIg -vIg -wDr +kHq +fhT +fhT +wdA bdY bdY bdY @@ -123717,7 +123707,7 @@ aaF aaF aaF aaF -wDr +wdA aLT aLT bca @@ -123736,10 +123726,10 @@ aQL aUY buN aQL -fZE -eFa -fEF -wMB +owO +qor +cDd +rkn bdl bDX bCA @@ -123759,10 +123749,10 @@ rIH tUh cag bdl -jDz -oYi -mkx -oSM +lYT +xPU +fed +npi bJC cdU bMy @@ -123780,8 +123770,8 @@ bSJ bVo clX bSJ -ljv -wDr +lij +wdA anm anm anm @@ -123792,10 +123782,10 @@ anm pfp pfp pfp -wDr -cOo -rJf -tcO +wdA +hgR +kzd +nhJ aaa aab aaa @@ -123834,16 +123824,16 @@ aeC vOh gUX ily -cGd -moK -cGd -fiH -fiH -fiH -ybk -kCo -tSY -kCo +rOR +jZD +rOR +xJV +xJV +xJV +oaI +ksH +mns +ksH ioU pPM qKz @@ -123859,16 +123849,16 @@ xNv iLO bUa aHq -qHu -mbu -kCo -ybk -fiH -fiH -fiH -mRU -gBs -mRU +jEo +xKy +ksH +oaI +xJV +xJV +xJV +lYm +hdf +lYm cBb xVS lJY @@ -123906,21 +123896,21 @@ aKQ aaa aaa aab -emA -gPS -gPS -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr +kHq +uBE +uBE +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA aLT aLT aLT @@ -123939,10 +123929,10 @@ aQL aQL aQL aQL -dQV -eFa -fEF -fNH +idv +qor +cDd +ghy bdl bDY bCA @@ -123962,10 +123952,10 @@ jac bCA cah bdl -wPi -oYi -mkx -gvK +oKF +xPU +fed +raq bJC bJC bJC @@ -123983,22 +123973,22 @@ bSJ bSJ bSJ bSJ -ljv -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -nGM -hIp -tcO +lij +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +drQ +pGD +nhJ aaa aab aaa @@ -124037,16 +124027,16 @@ aeC aeC ajs aeC -bZq -fiH -rGc -xjI -xjI -fzm -pBg -gmZ -dpN -txd +oaE +xJV +rnP +sXG +sXG +enK +uRe +pMz +slv +mdH alL alL alL @@ -124062,16 +124052,16 @@ jvY alL alL alL -gmZ -onh -wJd -pBg -iOP -xjI -xjI -roY -vXk -jgS +pMz +iaI +ino +uRe +xdr +sXG +sXG +tze +pcK +xLC vcE kUV vcE @@ -124109,22 +124099,22 @@ aKQ aaa aaa aab -emA -jEM -ikT -owU -iTq -ikT -jEM -kjY -riB -fGi -qan -jkN -jUh -tIF -bCk -jkN +kHq +aYf +hsf +lpj +iED +hsf +aYf +iJU +gBP +kSA +twO +pkv +glm +qXm +sNC +pkv aLT bco aMB @@ -124142,10 +124132,10 @@ brr aUZ buO aQL -fZE -eFa -fEF -tLZ +owO +qor +cDd +xEs bdl bDZ bdj @@ -124165,10 +124155,10 @@ jac xxa cai bdl -tkg -oYi -mkx -oSM +cNI +xPU +fed +npi bJC cdV bMx @@ -124186,22 +124176,22 @@ clJ bVn clY bSJ -ljv -dnZ -eHy -eHy -eHy -cyp -oaO -lWY -ljv -jiM -ere -lYg -lYg -sEu -lia -tcO +lij +vCB +oKi +oKi +oKi +tfj +qLO +vRW +lij +xtU +doX +fmZ +fmZ +bYd +fJA +nhJ aaa aab aaa @@ -124240,16 +124230,16 @@ wXh aeC ydz ayb -rrG -gBZ -tGW -rfQ -rfQ -tGW -oOi -szb -rfQ -vnZ +eQP +wQZ +hOb +muc +muc +hOb +opN +fZy +muc +xCQ jvY jvY jvY @@ -124265,16 +124255,16 @@ jvY jvY jvY jvY -urs -eEF -wmH -oOi -rrG -rfQ -rfQ -rrG -sBK -tGW +rro +kuZ +tAH +opN +eQP +muc +muc +eQP +iUU +hOb sSl kkx vcE @@ -124312,22 +124302,22 @@ aKQ aaa aaa aab -emA -kJZ -kjY -fGB -snN -jEM -ikT -jEM -lty -eTD -lty -jEM -ikT -kjY -bCk -heO +kHq +aXd +iJU +kFi +eTJ +aYf +hsf +aYf +gYL +aEE +gYL +aYf +hsf +iJU +sNC +lPP aLT bco bdr @@ -124345,17 +124335,17 @@ brr aRT buO aQL -fZE -eFa -fEF -xpc +owO +qor +cDd +oPG bdl lOr lOr iwI bdl bdl -reH +bEt bNP bmD bNP @@ -124368,10 +124358,10 @@ bYv tiE tiE bdl -fJt -oYi -mkx -oSM +poj +xPU +fed +npi bJC cdV cfo @@ -124389,22 +124379,22 @@ clJ clg clY bSJ -ljv -eaz -lYg -lYg -aqH -oxl -wac -mjy -ljv -ien -xhO -xhO -xhO -cmN -srl -tcO +lij +vHZ +fmZ +fmZ +eyp +moT +dwn +lCT +lij +fNY +aCr +aCr +aCr +ofP +eQa +nhJ aaa aab aaa @@ -124443,16 +124433,16 @@ ngl aeA ajk aeA -iOP -fiH -dwJ -vXk -vXk -jgS -pBg -vkQ -brm -aOw +xdr +xJV +gnT +pcK +pcK +xLC +uRe +sUH +kCG +obc jvY arg atf @@ -124468,16 +124458,16 @@ jvY aMm aOq jvY -biB -uvq -cVT -pBg -bZq -vXk -vXk -siS -aRr -fzm +oZz +rFO +qAa +uRe +oaE +pcK +pcK +tmS +nsk +enK lJY xVS lJY @@ -124515,22 +124505,22 @@ aKQ aaa aaa aab -emA -emA -emA -emA -emA -sEg -ikT -jEM -ahL -bFl -nZW -jEM -ikT -jEM -jEM -bCk +kHq +kHq +kHq +kHq +kHq +pMI +hsf +aYf +nmq +gEM +sRk +aYf +hsf +aYf +aYf +sNC aLT bcZ bdr @@ -124548,16 +124538,16 @@ brs aRT bew aQL -atH -dAm -aCX -atH +mqu +uQE +sEz +mqu mCo iwZ -jFy +lBF bKA -mPK -dmF +sbM +pWA pXV bNP bmD @@ -124571,10 +124561,10 @@ eHa cmo xAB mCo -brq -wwv -sIR -brq +iIQ +kGz +qay +iIQ bJC bKX cfo @@ -124592,22 +124582,22 @@ clK clg bVy bSJ -ljv -ljv -ljv -ljv -tWl -jer -ljv -ljv -ljv -jEA -hCq -tcO -tcO -tcO -tcO -tcO +lij +lij +lij +lij +eYC +crr +lij +lij +lij +myA +lkg +nhJ +nhJ +nhJ +nhJ +nhJ aaa aab aaa @@ -124646,16 +124636,16 @@ nqV aeA ajk ily -taw -mRI -taw -qnf -fiH -wPm -ybk -mQF -mQF -nbW +mBf +rFS +mBf +jpz +xJV +syf +oaI +sGP +sGP +mCS jvY arh atm @@ -124671,16 +124661,16 @@ jvY nSG aOs jvY -mQF -pZq -mQF -ybk -dJF -fiH -dAr -kNq -cWo -kNq +sGP +pGQ +sGP +oaI +fka +xJV +hws +fcW +kAO +fcW cBb xVS lJY @@ -124722,18 +124712,18 @@ aaa aaa aaa aaa -emA -tcm -ikT -jEM -uzv -tYr -uzv -jEM -ikT -hYf -jEM -ikT +kHq +ozP +hsf +aYf +kAN +cSi +kAN +aYf +hsf +gHm +aYf +hsf aLT bco bdr @@ -124751,10 +124741,10 @@ brr aRT buO aQL -jpW -eFa -svw -mzv +jAu +qor +srA +kcR bmv bEg bGU @@ -124774,10 +124764,10 @@ bYw nDM bWL sSa -bRo -dOG -gKw -tgz +enc +cmi +pKd +xpG bJC cdV cfo @@ -124795,18 +124785,18 @@ clJ clg clY bSJ -bXh -lYg -lYg -lYg -sEu -eaz -ere -lYg -lYg -sEu -gEh -tcO +jQK +fmZ +fmZ +fmZ +bYd +vHZ +doX +fmZ +fmZ +bYd +gbz +nhJ aaa aaa aaa @@ -124849,16 +124839,16 @@ wXh aeC ajs qon -taw -obJ +mBf +nUS aep ggQ ggQ aME aep -ivV -jnx -iPK +dRm +leC +xJv jvY ari aoP @@ -124874,16 +124864,16 @@ axo atm aOr jvY -ivV -otE -ivV +dRm +gIe +dRm aep aME ggQ aME aep -hog -kNq +eWV +fcW dHe kUV vcE @@ -124925,18 +124915,18 @@ aaa aaa aaa aaa -emA -hyb -fGB -kjY -yia -ugZ -kcG -fBo -ikT -jEM -jEM -ikT +kHq +enq +kFi +iJU +lSH +bJr +gQz +aRm +hsf +aYf +aYf +hsf aLT bco aMC @@ -124954,10 +124944,10 @@ brr aUY buO aQL -fZE -eFa -fEF -tLZ +owO +qor +cDd +xEs mCo bEh bNQ @@ -124977,10 +124967,10 @@ bKA cXR cal mCo -wcD -oYi -mkx -oSM +ueq +xPU +fed +npi bJC cdV bMy @@ -124998,18 +124988,18 @@ clJ bVo clY bSJ -tgm -xhO -xhO -xhO -xhO -gEh -sOD -gEh -xhO -xhO -tWp -tcO +dOr +aCr +aCr +aCr +aCr +gbz +tNy +gbz +aCr +aCr +nxM +nhJ aaa aaa aaa @@ -125052,16 +125042,16 @@ aeC aeC ajs aeC -taw -oxy +mBf +nHf aep afj afk agM aep -pEd -tbD -fDk +qRq +kTn +jEt jvY arj atm @@ -125077,16 +125067,16 @@ bzD atm aOs jvY -pEd -hqx -xhi +qRq +wXx +usl aep aHS afk sHo aep -vmu -kNq +waa +fcW vcE kUV vcE @@ -125128,18 +125118,18 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -emA -emA -emA -emA -emA -iTq -snN +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +iED +eTJ aLT aLT aLT @@ -125157,10 +125147,10 @@ aQL aQL aQL aQL -fZE -eFa -fEF -bNr +owO +qor +cDd +gQd bdl bEi bZr @@ -125180,10 +125170,10 @@ bKA cir bdl bdl -sXC -oYi -mkx -oSM +kag +xPU +fed +npi bJC bJC bJC @@ -125201,18 +125191,18 @@ bSJ bSJ bSJ bSJ -cZp -xhO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO +oeY +aCr +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -125255,16 +125245,16 @@ aeC aeA ajk aeA -taw -oxy +mBf +nHf aep afk afk afk aep -pEd -tbD -fDk +qRq +kTn +jEt jvY ark atm @@ -125280,16 +125270,16 @@ axo atm thv jvY -pEd -hqx -xhi +qRq +wXx +usl aep afk aHl afk aep -hLt -kNq +tWL +fcW lJY itR kKR @@ -125340,9 +125330,9 @@ aaa aaa aaa aaa -emA -ikT -jEM +kHq +hsf +aYf aLT bcE aMB @@ -125360,10 +125350,10 @@ brt aUZ buS aQL -fZE -eFa -fEF -tLZ +owO +qor +cDd +xEs bdl brp bZr @@ -125382,11 +125372,11 @@ bNQ bNQ bNQ bGz -egD -oQn -oYi -mkx -oSM +mUE +rCP +xPU +fed +npi bJC cdX bMx @@ -125404,9 +125394,9 @@ clL bVn clZ bSJ -tgm -xhO -tcO +dOr +aCr +nhJ aaa aaa aaa @@ -125458,16 +125448,16 @@ asA amF ohL aeA -taw -oQL +mBf +sJo aep aep aep aep aep -pvE -tbD -fDk +qsj +kTn +jEt jvY alL atk @@ -125483,16 +125473,16 @@ jvY aAy alL jvY -pEd -hqx -xhi +qRq +wXx +usl aep aep aep aep aep -ddF -kNq +vKo +fcW lJY ucw dcp @@ -125543,9 +125533,9 @@ aaa aaa aaa aaa -emA -qGC -jEM +kHq +bhe +aYf aLT bcE bdr @@ -125563,10 +125553,10 @@ brt bpC buS aQL -bMf -eFa -fEF -tLZ +jJF +qor +cDd +xEs bdl bEl wup @@ -125585,11 +125575,11 @@ krN krN krN oqY -lde -oSM -oYi -mkx -oSM +wqQ +npi +xPU +fed +npi bJC cdX cfo @@ -125607,9 +125597,9 @@ clL clg clZ bSJ -xMm -pFr -tcO +iLH +tRd +nhJ aaa aaa aaa @@ -125661,16 +125651,16 @@ ntI aeA aeC puO -taw -oxy -eRG +mBf +nHf +nXv aep aep aep aep -pEd -tbD -fDk +qRq +kTn +jEt jvY arl atm @@ -125686,16 +125676,16 @@ alL aMo aOt jvY -pEd -hqx -jhm +qRq +wXx +cGk oIB jgr gGp dMf oIB -vmu -kNq +waa +fcW lJY uxC lJY @@ -125746,9 +125736,9 @@ aaa aaa aaa aaa -emA -ikT -jEM +kHq +hsf +aYf aLT abS bdr @@ -125766,10 +125756,10 @@ brs bpC abT aQL -atH -dAm -aCX -atH +mqu +uQE +sEz +mqu bdl buz bZr @@ -125788,11 +125778,11 @@ ibc uly bNN vbR -eGq -uuI -wwv -sIR -brq +qZh +diu +kGz +qay +iIQ bJC ack cfo @@ -125810,9 +125800,9 @@ clK clg acp bSJ -qKK -gEh -tcO +mAO +gbz +nhJ aaa aaa aaa @@ -125858,22 +125848,22 @@ atr aeC atr aeC -taw -taw -taw -taw -mRI -taw -taw -oxy -hja -taw -taw -taw -taw -pEd -tbD -fDk +mBf +mBf +mBf +mBf +rFS +mBf +mBf +nHf +iIt +mBf +mBf +mBf +mBf +qRq +kTn +jEt jvY abF atm @@ -125889,22 +125879,22 @@ aIT atm aVF jvY -pEd -wZp -amc +qRq +sWn +lTY oIB fXE kaS aiQ oIB -vmu -kNq -kNq -kNq -kNq -qDB -kNq -kNq +waa +fcW +fcW +fcW +fcW +nVz +fcW +fcW vcE bXe vcE @@ -125949,9 +125939,9 @@ aaa aaa aaa aaa -emA -jEM -ikT +kHq +aYf +hsf aLT bcE aMC @@ -125969,10 +125959,10 @@ brt aUY buS aQL -fZE -eFa -fEF -hvz +owO +qor +cDd +vgN bdl bEm bZr @@ -125992,10 +125982,10 @@ uys uys uys uys -bfd -oYi -mkx -oSM +sbV +xPU +fed +npi bJC cdX bMy @@ -126013,9 +126003,9 @@ clL bVo clZ bSJ -hTU -lNk -tcO +cBR +uIF +nhJ aaa aaa aaa @@ -126061,22 +126051,22 @@ atr aeC atr aeC -taw -hEj -cvi -taw -wFX -taw -ncV -oxy -oQL -taw -oQL -oQL -taw -pqv -gqf -fDk +mBf +eHJ +lhS +mBf +mFa +mBf +jYh +nHf +sJo +mBf +sJo +sJo +mBf +ead +qTd +jEt jvY jvY jvY @@ -126092,22 +126082,22 @@ jvY jvY jvY jvY -xeq -hqx -xhi +uhv +wXx +usl oIB wqr bZw xUV oIB -vmu -vDR -kNq -toD -wDq -aPO -sNP -kNq +waa +nUs +fcW +glz +jbl +gGX +bWm +fcW vcE bXe vcE @@ -126152,9 +126142,9 @@ aaa aaa aaa aaa -emA -rIV -dYc +kHq +kin +omi aLT aLT aLT @@ -126172,10 +126162,10 @@ aQL aQL aQL aQL -edn -qRd -gtH -edn +jpy +hUh +urv +jpy bdl bpT bNN @@ -126195,10 +126185,10 @@ dyx eYr bUo uys -kKB -rsL -jts -kKB +qob +rWV +lFZ +qob bJC bJC bJC @@ -126216,9 +126206,9 @@ bSJ bSJ bSJ bSJ -xsv -gEh -tcO +sFO +gbz +nhJ aaa aaa aaa @@ -126264,22 +126254,22 @@ atu azU aeC ldl -taw -oxy -stA -taw -tvA -taw -oTc -nwT -ocI -mfH -nwT -nwT -mfH -pym -gqf -fDk +mBf +nHf +euw +mBf +llF +mBf +pBE +rDk +tcP +nVY +rDk +rDk +nVY +aPc +qTd +jEt alL urM dBG @@ -126295,22 +126285,22 @@ jvY wjv fDG alL -pEd -wZp -pym -qgK +qRq +sWn +aPc +uHZ tEB uBM dXo oIB -xPu -uOE -kNq -swG -jei -aPO -hIX -kNq +ePc +wKe +fcW +wCF +pNu +gGX +ddC +fcW vcE pxJ swM @@ -126355,9 +126345,9 @@ aaa aaa aaa aaa -emA -jEM -kDd +kHq +aYf +dJF aLT bdJ bds @@ -126375,20 +126365,20 @@ aQL bsS mqK aQL -bqc -tcS -mww -sZe +ivi +fEb +gZO +hQo bdl bEp bCA -wlh -cvb -bmC -nwG -lDL -nwG -lMw +iPy +qvd +nAC +hcx +oxt +hcx +lSF jeO nQv ltb @@ -126398,10 +126388,10 @@ dyx hGN pVx uys -wKm -ekM -aVM -wVm +umb +jPA +uTc +hkI bJC cfp cgu @@ -126419,9 +126409,9 @@ bSJ clM clS bSJ -cZp -gEh -tcO +oeY +gbz +nhJ aaa aaa aaa @@ -126461,28 +126451,28 @@ aaa aad aag aag -fTl -taw -taw -taw -mRI -taw -taw -wpT -stA -taw -wTn -taw -nQw -oxy -wjP -taw -oQL -oQL -taw -gbR -tbD -chC +sTT +mBf +mBf +mBf +rFS +mBf +mBf +fWP +euw +mBf +lOa +mBf +iao +nHf +sEC +mBf +sJo +sJo +mBf +dSI +kTn +rBd aqe amw anO @@ -126498,28 +126488,28 @@ arq anO qaV kwd -urs -hqx -tFQ +rro +wXx +fZY oIB wKF hzb ltU oIB -aPO -eDk -kNq -bCR -jei -aPO -fJp -kNq -kNq -kNq -kNq -qDB -kNq -fVe +gGX +xsj +fcW +maG +pNu +gGX +cvp +fcW +fcW +fcW +fcW +nVz +fcW +bMH aag aag afm @@ -126558,9 +126548,9 @@ aaa aaa aaa aaa -emA -jEM -ikT +kHq +aYf +hsf aLT beT bdr @@ -126578,20 +126568,20 @@ ihY bpC dnE aQL -qfI -dpA -ggo -lhs +lRo +xaV +hEE +uLs bdl ycp ycp -tPj +qmb ycp ycp bdl bdl -rtj -agv +vna +vuw bdl bdl bdl @@ -126601,10 +126591,10 @@ uys uys uys uys -gyw -bFX -gyw -hza +kIR +pVF +kIR +bQr bJC bMA cfo @@ -126622,9 +126612,9 @@ clG clg bVq bSJ -ien -dFL -tcO +fNY +fcx +nhJ aaa aaa aaa @@ -126664,28 +126654,28 @@ aaa aaa aad aag -fTl -vrZ -qlu -taw -wTn -kCu -taw -uPN -stA -taw -wFX -taw -lsh -oxy -hja -taw -oQL -hja -taw -bwN -gxR -lCc +sTT +bic +bZu +mBf +lOa +ihI +mBf +oBM +euw +mBf +mFa +mBf +sMC +nHf +iIt +mBf +sJo +iIt +mBf +aXU +cqB +hBS aqg arr atn @@ -126701,28 +126691,28 @@ atn atn aOB aRj -dZR -kWc -cwL +gAL +wmY +rdX oIB phj vEf cNK oIB -aPO -jei -oYr -aPO -aPO -aPO -jei -jei -lYt -jei -jei -aPO -jei -fVe +gGX +pNu +caZ +gGX +gGX +gGX +pNu +pNu +vtZ +pNu +pNu +gGX +pNu +bMH aag ajZ aaa @@ -126761,9 +126751,9 @@ aaa aaa aaa aaa -emA -sEg -ikT +kHq +pMI +hsf aLT aLT aLT @@ -126781,20 +126771,20 @@ aQL aQL aQL aQL -oxe -tcS -mww -sZe +tcq +fEb +gZO +hQo bdl fKT bGy -kOW -snM -iqo +fUL +aZJ +fMK bdl -clV -crD -kLP +rGZ +tLA +lVK gvU cyo bdl @@ -126804,10 +126794,10 @@ sgc xCa bUy bdl -eTx -ekM -cJs -pOW +pgq +jPA +wCN +rPl bJC bJC bJC @@ -126825,9 +126815,9 @@ bSJ bSJ bSJ bSJ -cZp -xhO -tcO +oeY +aCr +nhJ aaa aaa aaa @@ -126867,28 +126857,28 @@ aaa aaa aad aag -fTl -hjT -rWb -taw -oAK -kCu -taw -mRI -taw -taw -tvA -taw -oQL -oxy -oQL -taw -cap -fiN -taw -vkQ -kzR -mXP +sTT +khz +cPy +mBf +kFM +ihI +mBf +rFS +mBf +mBf +llF +mBf +sJo +nHf +sJo +mBf +rsr +uUa +mBf +sUH +klf +dLb kwd amA atq @@ -126904,28 +126894,28 @@ atq atq aoT kwd -vkQ -kzR -oig +sUH +klf +vvH oIB opI dha pxj oIB -aPO -oUx -kNq -fPF -jei -nNT -jwJ -mgX -nZG -nZG -nZG -xGm -jei -fVe +gGX +gRt +fcW +tpQ +pNu +fFN +aYN +uhn +iWD +iWD +iWD +mVY +pNu +bMH aag ajZ aaa @@ -126964,9 +126954,9 @@ aaa aaa aaa aaa -emA -jEM -ikT +kHq +aYf +hsf aLT beT bdr @@ -126984,10 +126974,10 @@ mUx bpC dnE aQL -bqc -tcS -mww -sZe +ivi +fEb +gZO +hQo bdl fgm bdj @@ -127007,10 +126997,10 @@ fYZ vYC noj hpS -gyE -ekM -cJs -pOW +sUk +jPA +wCN +rPl bJC bMA cfo @@ -127028,9 +127018,9 @@ clH oFV bVq bSJ -vUJ -hCq -tcO +vEv +lkg +nhJ aaa aaa aaa @@ -127070,28 +127060,28 @@ aaa aaa aad aag -fTl -qlu -uKl -kiR -oxy -oQL -jsu -oQL -gqt -oxy -oxy -kiR -oxy -oxy -oQL -taw -taw -taw -taw -mQF -rnO -ogd +sTT +bZu +ace +vMv +nHf +sJo +lGV +sJo +iAo +nHf +nHf +vMv +nHf +nHf +sJo +mBf +mBf +mBf +mBf +sGP +mju +yeb alO ars amx @@ -127107,9 +127097,9 @@ amx amx aOC alO -mQF -rnO -mQF +sGP +mju +sGP loP loP loP @@ -127118,17 +127108,17 @@ loP qej loP loP -kNq -fJp -aPO -wXl -dJe -unQ -nxe -tjH -tVn -oUx -fVe +fcW +cvp +gGX +ekz +cBE +crG +xdT +qeO +uAx +gRt +bMH aag ajZ aaa @@ -127167,9 +127157,9 @@ aaa aaa aaa aaa -emA -ikT -jEM +kHq +hsf +aYf aLT beU bdv @@ -127187,13 +127177,13 @@ aQL bsW xvX aQL -bqc -noI -dJG -sZe +ivi +jFn +xkM +hQo bdl ntd -hgO +iVj eqb mLR hdE @@ -127210,10 +127200,10 @@ scH nzO kxL hpS -gyE -nzt -jhs -pOW +sUk +mgN +lLe +rPl bJC cfq cgv @@ -127231,9 +127221,9 @@ bSJ clN clT bSJ -xsv -gEh -tcO +sFO +gbz +nhJ aaa aaa aaa @@ -127273,28 +127263,28 @@ aaa aaa aad aag -fTl -wIu -wXJ -taw -oxy -kMa -qIa -iSB -oxy -oQL -hdy -taw -oQL -oxy -oQL -taw -liF -wPR -taw -cui -fQU -onh +sTT +glC +oCV +mBf +nHf +hYj +mtj +oPS +nHf +sJo +hoC +mBf +sJo +nHf +sJo +mBf +lLx +aoZ +mBf +byZ +iSu +iaI inw amA amx @@ -127310,9 +127300,9 @@ atq amx aoT inw -ivV -fQU -hPr +dRm +iSu +jhJ loP iwB tOC @@ -127321,17 +127311,17 @@ vqL xBY qwo loP -ang -hqu -aPO -wXl -fJp -iCD -iCD -iCD -tVn -jei -fVe +qrS +jzp +gGX +ekz +cvp +nLT +nLT +nLT +uAx +pNu +bMH aag ajZ aaa @@ -127370,9 +127360,9 @@ aaa aaa aaa aaa -emA -qGC -jEM +kHq +bhe +aYf aLT aLT aLT @@ -127390,10 +127380,10 @@ aQL aQL aQL aQL -bqc -ubQ -fpM -bEk +ivi +llQ +tMu +iPL bdl tFS bdj @@ -127413,10 +127403,10 @@ jaR mJa wWP rsK -cBC -feo -ekM -pOW +wOb +iZq +jPA +rPl bJC bJC bJC @@ -127434,9 +127424,9 @@ bSJ bSJ bSJ bSJ -goM -tfQ -tcO +kTt +toh +nhJ aaa aaa aaa @@ -127476,28 +127466,28 @@ aaf aaf aag aag -fTl -taw -taw -taw -wTn -wOv -tuJ -iKV -oxy -oQL -oFr -taw -mUL -oxy -oQL -taw -oQL -oQL -taw -pEd -gBg -bLg +sTT +mBf +mBf +mBf +lOa +wNN +vts +lVv +nHf +sJo +ftE +mBf +kWc +nHf +sJo +mBf +sJo +sJo +mBf +qRq +psT +wYI aqj arw anP @@ -127513,9 +127503,9 @@ atq atq wwJ inw -pEd -tbD -xhi +qRq +kTn +usl loP joG sDu @@ -127524,17 +127514,17 @@ wSn xBY lKa loP -fvo -jei -aPO -wXl -kNq -jcE -jei -lVR -pHD -dhp -fVe +yhx +pNu +gGX +ekz +fcW +qyu +pNu +fXG +xft +riw +bMH aag aag aaf @@ -127569,13 +127559,13 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -ikT -ikT +kHq +kHq +kHq +kHq +kHq +hsf +hsf aLT vZb tnY @@ -127593,10 +127583,10 @@ aUZ uqA bES kcl -bqc -ubQ -uPX -rHr +ivi +llQ +lLs +rwk bdl wIr aQy @@ -127616,10 +127606,10 @@ nPT bdl bdl bdl -jLg -uEO -ekM -pOW +iCf +gMC +jPA +rPl hNw wos bMC @@ -127637,13 +127627,13 @@ hcI hcI vPK bSJ -cZp -gEh -tcO -tcO -tcO -tcO -tcO +oeY +gbz +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -127679,28 +127669,28 @@ aag aag aag aag -fTl -hEr -oQL -kiR -oxy -wOv -qlu -qAG -oxy -kMa -gQu -taw -lsh -oxy -wjP -taw -oQL -oQL -taw -rhX -gBg -fDk +sTT +siP +sJo +vMv +nHf +wNN +bZu +hBR +nHf +hYj +sGD +mBf +sMC +nHf +sEC +mBf +sJo +sJo +mBf +dxH +psT +jEt inw qHM emn @@ -127716,9 +127706,9 @@ amx amx aBs inw -pEd -tbD -xhi +qRq +kTn +usl loP kxo wSn @@ -127727,17 +127717,17 @@ kdi xBY kxo loP -nSk -jei -aPO -wXl -kNq -cke -hqu -oSR -fZI -jei -fVe +pwJ +pNu +gGX +ekz +fcW +wsw +jzp +cua +qJr +pNu +bMH aag aag aag @@ -127772,13 +127762,13 @@ aaa aaa aaa aaa -emA -hyb -kjY -kcG -tIF -jEM -ikT +kHq +enq +iJU +gQz +qXm +aYf +hsf aWT aMH beV @@ -127796,9 +127786,9 @@ aSE aVf bES kcl -bqc -sUk -slo +ivi +nIL +ruC bdl bdl bdl @@ -127808,21 +127798,21 @@ bdl bdl bdl bdl -xWo +voU bdl bdl bdl bdl -reN -dEp -reN -htk -dEp +fqh +qtO +fqh +qgM +qtO bdl bdl -udf -iyC -pOW +idg +nQb +rPl hNw sZq jZv @@ -127840,13 +127830,13 @@ aMI wGE erG ewO -sEu -xhO -ffx -jhK -srl -lWY -tcO +bYd +aCr +uFE +eMt +eQa +vRW +nhJ aaa aaa aaa @@ -127882,28 +127872,28 @@ aag aag aag aag -fTl -hEr -xBS -taw -tTG -wOv -wIu -ydf -oxy -wOv -ixu -taw -wXJ -oxy -oxy -kiR -oxy -oxy -kiR -fiH -gBg -xsX +sTT +siP +dOX +mBf +ckq +wNN +glC +lGi +nHf +wNN +heI +mBf +oCV +nHf +nHf +vMv +nHf +nHf +vMv +xJV +psT +spa alO alO alO @@ -127919,9 +127909,9 @@ atq atq aBs alO -pEd -gBg -fiH +qRq +psT +xJV fTF xBY xBY @@ -127930,17 +127920,17 @@ xBY xBY jGI loP -kNq -fJp -nOx -wXl -kNq -kNq -kNq -kNq -pAV -jei -fVe +fcW +cvp +uyV +ekz +fcW +fcW +fcW +fcW +jCu +pNu +bMH aag aag aag @@ -127975,13 +127965,13 @@ aaa aaa aaa aaa -emA -jkN -ikT -ikT -ikT -ikT -ikT +kHq +pkv +hsf +hsf +hsf +hsf +hsf aLT aZf duV @@ -127999,33 +127989,33 @@ iIR aVf bES kcl -bqc -ubQ -kwi -lZM -rSR -xss -rLK -xss -xss -uHk -dXb -dXb -dXb -cTX -xss -xss -dXb -ndm -xss -iFY -dXb -xss -xss -lZM -kYl -ekM -pOW +ivi +llQ +kJw +mgZ +wVU +row +rXg +row +row +kDT +fRD +fRD +fRD +muJ +row +row +fRD +jZz +row +evQ +fRD +row +row +mgZ +oZJ +jPA +rPl hNw sZq jZv @@ -128043,13 +128033,13 @@ jGR jGR oqu bSJ -gEh -gEh -gEh -gEh -gEh -xhO -tcO +gbz +gbz +gbz +gbz +gbz +aCr +nhJ aaa aaa aaa @@ -128085,28 +128075,28 @@ aag aag aag aag -fTl -oqc -smw -taw -oxy -rgk -nUT -cnP -oxy -wOv -qlu -taw -qlu -oxy -oQL -taw -oQL -oQL -lnD -pEd -gBg -iea +sTT +ozw +qzm +mBf +nHf +shJ +jXL +rcw +nHf +wNN +bZu +mBf +bZu +nHf +sJo +mBf +sJo +sJo +jpu +qRq +psT +pEu alO gKZ vTv @@ -128122,9 +128112,9 @@ atq atq aBs alO -pvE -tbD -xhi +qsj +kTn +usl gdS wSn kXN @@ -128133,17 +128123,17 @@ odD xBY mOg oHx -aPO -iXB -aPO -gof -bVr -ivL -ivL -ivL -fVa -jei -fVe +gGX +vnE +gGX +rji +lcM +cTb +cTb +cTb +gxW +pNu +bMH aag aag aag @@ -128178,9 +128168,9 @@ aaa aaa aaa aaa -emA -fGi -ikT +kHq +kSA +hsf aLT aLT aLT @@ -128202,16 +128192,16 @@ chp aVf aQL aQL -lhs -bww -tHF -cvx -cvx -bKJ -cvx -cvx -cvx -cvx +uLs +klk +bTY +qwT +qwT +xIy +qwT +qwT +qwT +qwT vub vub vub @@ -128219,16 +128209,16 @@ owW vub vub vub -cvx -cvx -cvx -bKJ -cvx -cvx -cvx -xQz -bFX -pmd +qwT +qwT +qwT +xIy +qwT +qwT +qwT +fkz +pVF +gtL bJC bJC bMD @@ -128250,9 +128240,9 @@ bSJ bSJ bSJ bSJ -gEh -dFL -tcO +gbz +fcx +nhJ aaa aaa aaa @@ -128288,28 +128278,28 @@ aag aag aag aag -fTl -taw -taw -taw -wTn -oQL -oQL -lUQ -oxy -tBU -iDs -taw -qlu -oxy -hja -taw -kLZ -tty -lnD -pEd -gBg -iea +sTT +mBf +mBf +mBf +lOa +sJo +sJo +rEs +nHf +oFn +kpl +mBf +bZu +nHf +iIt +mBf +wfG +lPE +jpu +qRq +psT +pEu alO arz atq @@ -128325,9 +128315,9 @@ auB atc aOF alO -pEd -tbD -xhi +qRq +kTn +usl gdS lBg dXd @@ -128336,17 +128326,17 @@ loP eMh loP loP -kNq -hnt -aPO -wSx -gYI -wPa -gYI -gYI -rzk -jei -fVe +fcW +cGP +gGX +wXS +kHv +rbE +kHv +kHv +foU +pNu +bMH aag aag aag @@ -128381,9 +128371,9 @@ aaa aaa aaa aaa -emA -jEM -ikT +kHq +aYf +hsf aLT bBg vPv @@ -128405,9 +128395,9 @@ brA aVf lQz aQL -bqc -qIf -bqc +ivi +bWD +ivi bbs cbh xYP @@ -128429,9 +128419,9 @@ tez gsm bCM bbr -uPE -ekM -pOW +wOC +jPA +rPl bJC jht jZv @@ -128453,9 +128443,9 @@ qNd hzu hcI bSJ -xhO -xhO -tcO +aCr +aCr +nhJ aaa aaa aaa @@ -128491,28 +128481,28 @@ aag aag aag aag -fTl -oQL -mOE -gUG -oxy -oQL -taw -taw -mRI -taw -taw -taw -ixu -oxy -oQL -taw -taw -taw -taw -pEd -gBg -iea +sTT +sJo +oPv +rEd +nHf +sJo +mBf +mBf +rFS +mBf +mBf +mBf +heI +nHf +sJo +mBf +mBf +mBf +mBf +qRq +psT +pEu alO arz atq @@ -128528,9 +128518,9 @@ aIU aMq aOG alO -pEd -gBg -xhi +qRq +psT +usl loP loP loP @@ -128540,16 +128530,16 @@ vyI lPB oHl jWh -kNq -qDB -kNq -kNq -kNq -kNq -kNq -gGb -oUx -fVe +fcW +nVz +fcW +fcW +fcW +fcW +fcW +eEv +gRt +bMH aag aag aag @@ -128584,9 +128574,9 @@ aaa aaa aaa aaa -emA -jEM -jEM +kHq +aYf +aYf aLT nuN nuN @@ -128608,9 +128598,9 @@ bOG aVf iaq aQL -bqc -qIf -bqc +ivi +bWD +ivi bbs bKD vTS @@ -128632,9 +128622,9 @@ tez ccQ bCN bbr -uPE -ekM -pOW +wOC +jPA +rPl bJC cjC jZv @@ -128656,9 +128646,9 @@ rYp oEo oEo bSJ -xhO -lMO -tcO +aCr +aCB +nhJ aaa aaa aaa @@ -128694,28 +128684,28 @@ aag aag aag aag -fTl -oxy -oxy -bCv -oxy -oQL -taw -gCQ -rEs -tvr -taw -lsh -oQL -oxy -oQL -aYU -uxs -iDs -taw -pEd -gBg -iea +sTT +nHf +nHf +vag +nHf +sJo +mBf +lnb +gBO +ozt +mBf +sMC +sJo +nHf +sJo +eNO +sCi +kpl +mBf +qRq +psT +pEu alO arz atq @@ -128731,9 +128721,9 @@ xBe xBe xBe xBe -pEd -gBg -xhi +qRq +psT +usl jWh eFK wGd @@ -128743,16 +128733,16 @@ hSk hSk uIv jWh -jZj -sRP -oko -kNq -tiY -qAK -xGK -gGb -jei -fVe +nmp +iPe +dbj +fcW +eje +olv +njr +eEv +pNu +bMH aag aag aag @@ -128787,9 +128777,9 @@ aaa aaa aaa aaa -emA -oPF -jEM +kHq +slG +aYf aLT vug vug @@ -128811,9 +128801,9 @@ bRg aVf aQL aQL -ylN -qIf -bqc +ycS +bWD +ivi bbs ydM xYP @@ -128835,9 +128825,9 @@ tez ccQ cdn bbr -uPE -ekM -pOW +wOC +jPA +rPl bJC bJC kGF @@ -128859,9 +128849,9 @@ yle wWX wWX bSJ -xhO -xHa -tcO +aCr +dvi +nhJ aaa aaa aaa @@ -128897,28 +128887,28 @@ aag aag aag aag -fTl -wTn -oQL -qmq -oQL -nXo -taw -gCQ -bNc -tCC -taw -ftG -oQL -oxy -oQL -oQL -oQL -keE -taw -pvE -gBg -iea +sTT +lOa +sJo +dLx +sJo +rYM +mBf +lnb +pVG +ndd +mBf +vAu +sJo +nHf +sJo +sJo +sJo +tlX +mBf +qsj +psT +pEu xnR arm ats @@ -128934,9 +128924,9 @@ aIV qqr arH xBe -pEd -gBg -xhi +qRq +psT +usl vXd duF hSk @@ -128946,16 +128936,16 @@ hSk hSk uIv jWh -eHz -aPO -tMT -kNq -jei -ltm -oAT -gGb -cmV -fVe +iCI +gGX +gMj +fcW +pNu +vBa +bcQ +eEv +yen +bMH aag aag aag @@ -128990,9 +128980,9 @@ aaa aaa aaa aaa -emA -rIV -nvI +kHq +kin +iZh aLT iPS vAE @@ -129014,9 +129004,9 @@ jOi aVf bES kcl -bqc -qIf -bqc +ivi +bWD +ivi bbs dvs xYP @@ -129038,9 +129028,9 @@ tez ccQ bCM bbr -uPE -ekM -pOW +wOC +jPA +rPl hNw sZq lef @@ -129062,9 +129052,9 @@ vSW scy kPJ bSJ -xhO -eeR -tcO +aCr +wkJ +nhJ aaa aaa aaa @@ -129100,28 +129090,28 @@ aag aag aag aag -fTl -oxy -taw -taw -xcs -taw -taw -utC -oxy -ikC -vRJ -gNQ -laP -gNQ -gNQ -gNQ -gNQ -gNQ -xDG -tJH -qpH -iSu +sTT +nHf +mBf +mBf +mkq +mBf +mBf +opU +nHf +iqN +ovx +fwQ +wJS +fwQ +fwQ +fwQ +fwQ +fwQ +wZD +wPR +sEW +hbK alO arA att @@ -129137,9 +129127,9 @@ azo aJg abR xBe -pEd -gBg -jhm +qRq +psT +cGk jWh oih khE @@ -129149,16 +129139,16 @@ vyI kpQ vSE jWh -nwA -xZz -kRN -kNq -jei -ltm -ejj -gGb -jei -fVe +pPw +iay +waG +fcW +pNu +vBa +xiD +eEv +pNu +bMH aag aag aag @@ -129193,9 +129183,9 @@ aaa aaa aaa aaa -emA -sEg -kDd +kHq +pMI +dJF aLT aLT aLT @@ -129217,9 +129207,9 @@ vfx aVf bES kcl -lhs -uvh -lhs +uLs +uos +uLs kFY jmK bDL @@ -129241,9 +129231,9 @@ tez ccQ bCN jhb -kAj -bFX -hza +iFJ +pVF +bQr hNw sZq ltI @@ -129265,9 +129255,9 @@ bSJ bSJ bSJ bSJ -qid -lNk -tcO +twi +uIF +nhJ aaa aaa aaa @@ -129303,28 +129293,28 @@ aag aag aag aag -fTl -oxy -taw -tZM -qEZ -frV -taw -gCQ -uqJ -vbu -taw -taw -taw -mRI -taw -taw -taw -taw -taw -rhX -gBg -xhi +sTT +nHf +mBf +vkW +uVx +aFE +mBf +lnb +fmY +mkW +mBf +mBf +mBf +rFS +mBf +mBf +mBf +mBf +mBf +dxH +psT +usl wDM wDM wDM @@ -129340,9 +129330,9 @@ atv auV amE xBe -pEd -gBg -xhi +qRq +psT +usl jWh jWh uUz @@ -129352,16 +129342,16 @@ qbZ jWh jWh jWh -fQl -aPO -nGZ -kNq -xQe -jei -lVR -pHD -dhp -fVe +rYT +gGX +lQk +fcW +iOt +pNu +fXG +xft +riw +bMH aag aag aag @@ -129396,9 +129386,9 @@ aaa aaa aaa aaa -emA -eTD -ikT +kHq +aEE +hsf aLT bBg vPv @@ -129420,9 +129410,9 @@ bRV bSe bES kcl -bqc -qIf -bqc +ivi +bWD +ivi bBd aPr bfl @@ -129444,9 +129434,9 @@ bSb bEa bFp bBd -uPE -ekM -pOW +wOC +jPA +rPl hNw sZq lwJ @@ -129468,9 +129458,9 @@ mAV hzu hcI bSJ -rqz -xhO -tcO +dpM +aCr +nhJ aaa aaa aaa @@ -129506,17 +129496,17 @@ aag aag aag aag -fTl -lmq -taw -mDz -pIf -uwf -taw -gCQ -rEs -bhZ -taw +sTT +pSP +mBf +vwJ +vWa +iIa +mBf +lnb +gBO +sXg +mBf uiG rTZ tfb @@ -129525,9 +129515,9 @@ tfb tfb tfb ptK -pEd -tbD -xhi +qRq +kTn +usl wDM aOM aoW @@ -129543,9 +129533,9 @@ atv auV amE xBe -pEd -tbD -xhi +qRq +kTn +usl jWh xXa xXa @@ -129555,16 +129545,16 @@ cKL jbH rJh jWh -rJY -dPl -qQG -kNq -cfm -jei -oSR -grd -jei -fVe +pOa +fZu +gyT +fcW +eeL +pNu +cua +fNv +pNu +bMH aag aag aag @@ -129599,9 +129589,9 @@ aaa aaa aaa aaa -emA -efP -ikT +kHq +gER +hsf aLT cjc cjc @@ -129623,9 +129613,9 @@ csZ odB aQL aQL -bqc -sUk -ade +ivi +nIL +rNY bBe bFq bfm @@ -129647,9 +129637,9 @@ bCD bEb bFq bBe -hWD -iyC -pOW +rWy +nQb +rPl bJC bJC rbH @@ -129671,9 +129661,9 @@ yfm fXN fXN bSJ -gEh -xhO -tcO +gbz +aCr +nhJ aaa aaa aaa @@ -129709,17 +129699,17 @@ aag aag aag aag -fTl -oxy -taw -taw -taw -taw -taw -taw -mRI -taw -taw +sTT +nHf +mBf +mBf +mBf +mBf +mBf +mBf +rFS +mBf +mBf bNM wkX jhx @@ -129728,9 +129718,9 @@ jhx jhx dnH gpc -fiH -tbD -xhi +xJV +kTn +usl wDM uto aoX @@ -129746,9 +129736,9 @@ nNY qKi abR xBe -pvE -gxR -pym +qsj +cqB +aPc dEt soP pDr @@ -129758,16 +129748,16 @@ soP eoG uIv jWh -kNq -qDB -kNq -kNq -kNq -fJp -ekz -gGb -oUx -fVe +fcW +nVz +fcW +fcW +fcW +cvp +tIE +eEv +gRt +bMH aag aag aag @@ -129802,9 +129792,9 @@ aaa aaa aaa aaa -emA -uzv -ikT +kHq +kAN +hsf aLT cjc cjc @@ -129826,9 +129816,9 @@ vil bpC qZX aQL -pjP -qIf -lfz +cbO +bWD +tBp bbs cdp cdp @@ -129850,9 +129840,9 @@ fJO fJO fJO bbs -wMI -ekM -oHt +xJY +jPA +iVq bJC lbf cft @@ -129874,9 +129864,9 @@ yfm fXN fXN bSJ -xhO -dFL -tcO +aCr +fcx +nhJ aaa aaa aaa @@ -129912,13 +129902,13 @@ aag aag aag aag -fTl -wTn -mOE -sWp -nUm -moL -taw +sTT +lOa +oPv +dFW +gog +bBO +mBf mDJ owg xUA @@ -129931,9 +129921,9 @@ nwU owg owg ptK -nhT -gqf -xhi +raD +qTd +usl wDM aOQ fxI @@ -129949,9 +129939,9 @@ azp qJf anV xBe -pEd -tbD -xhi +qRq +kTn +usl jWh iqH khE @@ -129961,16 +129951,16 @@ ovi iat eim jWh -kNq -spd -kNq -kNq -dVH -cAz -bVr -pHD -jei -fVe +fcW +mEN +fcW +fcW +ieG +nGp +lcM +xft +pNu +bMH aag aag aag @@ -130005,9 +129995,9 @@ aaa aaa aaa aaa -emA -hfO -ikT +kHq +aDY +hsf aLT iPS vAE @@ -130029,9 +130019,9 @@ vil bpC qDq kbc -bqc -ubQ -bqc +ivi +llQ +ivi bbs bdw bfo @@ -130053,9 +130043,9 @@ lJu bEd bFs bbs -uPE -ekM -pOW +wOC +jPA +rPl fzq oXb cft @@ -130077,9 +130067,9 @@ gEo scy kPJ bSJ -gEh -pFr -tcO +gbz +tRd +nhJ aaa aaa aaa @@ -130115,13 +130105,13 @@ aag aag aag aag -fTl -oxy -oxy -tIN -oxy -oxy -kiR +sTT +nHf +nHf +fcK +nHf +nHf +vMv owg owg uKV @@ -130134,9 +130124,9 @@ eNi eNi eNi eNi -pEd -gBg -jhm +qRq +psT +cGk wDM aOH aJf @@ -130152,9 +130142,9 @@ xBe xBe xBe xBe -pEd -tbD -rXV +qRq +kTn +ufM jWh jWh jlQ @@ -130164,16 +130154,16 @@ thV uWV uIv oSx -kNq -oUx -kNq -kNq -fJp -ekz -hqu -jei -qDS -fVe +fcW +gRt +fcW +fcW +cvp +tIE +jzp +pNu +ght +bMH aag aag aag @@ -130208,9 +130198,9 @@ aaa aaa aaa aaa -emA -jkN -ikT +kHq +pkv +hsf aLT aLT aLT @@ -130232,9 +130222,9 @@ ngA koC koC xGE -jno -fqw -bqc +lYg +tBd +ivi lgy ccb xYP @@ -130256,9 +130246,9 @@ rXk xYP jew laU -uPE -dEL -rzy +wOC +hPk +lpM uCM lNw eFj @@ -130280,9 +130270,9 @@ bSJ bSJ bSJ bSJ -gEh -kMR -tcO +gbz +owD +nhJ aaa aaa aaa @@ -130318,13 +130308,13 @@ aah aag aag aag -fTl -pWw -hbE -cbc -qIa -qIa -taw +sTT +jaF +emX +iGH +mtj +mtj +mBf ptK afX ptK @@ -130337,9 +130327,9 @@ olO wiG nWN eNi -pEd -tbD -xhi +qRq +kTn +usl wDM wDM wDM @@ -130355,9 +130345,9 @@ aJh arq ufx alR -pEd -tbD -jhm +qRq +kTn +cGk jWh hSk hSk @@ -130367,16 +130357,16 @@ upR fCL uIv vVw -iSV -jei -oYr -jei -aPO -aPO -aPO -gtQ -wiO -fVe +cWF +pNu +caZ +pNu +gGX +gGX +gGX +mdG +hNn +bMH aag aag aag @@ -130411,14 +130401,14 @@ aaa aaa aaa aaa -emA -hyb -jEM -jEM -jEM -jEM -hyb -jEM +kHq +enq +aYf +aYf +aYf +aYf +enq +aYf aLT cjc cjc @@ -130435,9 +130425,9 @@ jOx bpC qDq aQL -nYR -bww -lhs +xRK +klk +uLs lgy bsG xYP @@ -130459,9 +130449,9 @@ lJu xYP hLI laU -gyw -uNQ -gyw +kIR +gRV +kIR bJC oXb cfo @@ -130478,14 +130468,14 @@ kPJ fXN fXN bSJ -enY -srl -gEh -xhO -xhO -xhO -jay -tcO +hMV +eQa +gbz +aCr +aCr +aCr +sce +nhJ aaa aaa aaa @@ -130521,13 +130511,13 @@ aaa aad aag aag -fTl -prX -oYs -odG -biC -qlu -taw +sTT +hEB +ojg +mbp +bib +bZu +mBf bKm hsr mDJ @@ -130540,9 +130530,9 @@ ueG rPt jyE eNi -pEd -tbD -xhi +qRq +kTn +usl hwC rcS amx @@ -130558,9 +130548,9 @@ aJi azs atq alR -pEd -tbD -xhi +qRq +kTn +usl jlQ tst uUe @@ -130570,16 +130560,16 @@ pZK fCL uIv lFA -kNq -jei -kNq -kNq -jei -jei -gYU -oGi -dVR -fVe +fcW +pNu +fcW +fcW +pNu +pNu +kjY +kMW +uGy +bMH aag aag ajZ @@ -130614,14 +130604,14 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -jEM -ikT -jEM +kHq +kHq +kHq +kHq +kHq +aYf +hsf +aYf aLT iPS vAE @@ -130638,9 +130628,9 @@ jOx bpC ksp aQL -bqc -wqO -wxD +ivi +lWA +rez cau bCG cgE @@ -130660,11 +130650,11 @@ xYP jmK hcw cgE -yht -blq -ddL -eZR -uPE +qGS +dPf +jyX +fza +wOC bJC kIP cfo @@ -130681,14 +130671,14 @@ oer vSW scy bSJ -mCE -qid -hCq -tcO -tcO -tcO -tcO -tcO +ljD +twi +lkg +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -130724,13 +130714,13 @@ aaa aad aag aag -fTl -fTl -fTl -fTl -fTl -fTl -fTl +sTT +sTT +sTT +sTT +sTT +sTT +sTT qJx hsr mDJ @@ -130743,9 +130733,9 @@ iKD rPt rPt eNi -pEd -tbD -xhi +qRq +kTn +usl alR amA atq @@ -130761,9 +130751,9 @@ aJj aMD atq alR -pEd -tbD -xhi +qRq +kTn +usl jlQ tZZ gLz @@ -130773,16 +130763,16 @@ ovi fCL lYk bYn -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe +bMH +bMH +bMH +bMH +bMH +bMH +bMH +bMH +bMH +bMH aag aag ajZ @@ -130821,10 +130811,10 @@ aaa aaa aaa aaa -emA -oPF -ikT -jEM +kHq +slG +hsf +aYf aLT meY meY @@ -130841,9 +130831,9 @@ pyl pDt aQL aQL -bqc -ubQ -bqc +ivi +llQ +ivi lgy ccN xYP @@ -130863,11 +130853,11 @@ wLm wLm lJu xYP -wbV +hko laU -uPE -vuV -uPE +wOC +iQx +wOC bJC bJC vLA @@ -130884,10 +130874,10 @@ oer oer oer oer -uVp -gEh -pFr -tcO +tQw +gbz +tRd +nhJ aaa aaa aaa @@ -130946,9 +130936,9 @@ eNi eNi gIh eNi -iIQ -gBg -xhi +gUt +psT +usl alR amA atq @@ -130964,9 +130954,9 @@ amA ayl amx alR -pEd -tbD -xhi +qRq +kTn +usl jWh jmQ vcu @@ -131024,18 +131014,18 @@ aaa aaa aaa aaa -emA -wtn -ikT -ikT -ikT -ikT -ikT -ikT -ikT -jEM -ikT -jEM +kHq +eRm +hsf +hsf +hsf +hsf +hsf +hsf +hsf +aYf +hsf +aYf aQL qZX qZX @@ -131044,9 +131034,9 @@ jOx bpC qZX aQL -bqc -ubQ -bqc +ivi +llQ +ivi lgy ccb xYP @@ -131068,9 +131058,9 @@ rXk xYP jew laU -uPE -vuV -uPE +wOC +iQx +wOC bJC lbf cfo @@ -131079,18 +131069,18 @@ lbf lbf lbf bJC -gEh -cmN -gEh -xhO -dzX -foS -xhO -gEh -gEh -gEh -gEh -tcO +gbz +ofP +gbz +aCr +doM +nda +aCr +gbz +gbz +gbz +gbz +nhJ aaa aaa aaa @@ -131149,9 +131139,9 @@ aWb dyK vzK wYY -pEd -gBg -xhi +qRq +psT +usl alR amA atq @@ -131167,9 +131157,9 @@ aJl amx atq alR -pEd -tbD -xhi +qRq +kTn +usl jlQ snE sGL @@ -131227,18 +131217,18 @@ aaa aaa aaa aaa -emA -pGj -uoj -jEM -jEM -jEM -jEM -fBo -jEM -jEM -jEM -jEM +kHq +dJm +nmS +aYf +aYf +aYf +aYf +aRm +aYf +aYf +aYf +aYf aQL qDq qDq @@ -131247,9 +131237,9 @@ jOx bpC qDq bTb -bqc -ubQ -bqc +ivi +llQ +ivi bbs ccd ccN @@ -131271,9 +131261,9 @@ lJu huK jeQ bbs -uPE -vuV -uPE +wOC +iQx +wOC xSw oXb cfo @@ -131282,18 +131272,18 @@ oXb oXb oXb bJC -gEh -xhO -gEh -xhO -gEh -hWH -xhO -gEh -xhO -xhO -rhD -tcO +gbz +aCr +gbz +aCr +gbz +uvB +aCr +gbz +aCr +aCr +wqX +nhJ aaa aaa aaa @@ -131352,9 +131342,9 @@ tii eJX sAC wYY -pEd -gBg -xhi +qRq +psT +usl alR amA amx @@ -131370,9 +131360,9 @@ aJk amx atq alR -pEd -tbD -xhi +qRq +kTn +usl jlQ tZZ cBj @@ -131430,18 +131420,18 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -emA -emA -emA -emA -emA -ikT -oBr +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +hsf +qwE aQL qDq qDq @@ -131450,9 +131440,9 @@ osA cHl cHl bTb -lhs -bww -lhs +uLs +klk +uLs bbs cdp cdp @@ -131474,9 +131464,9 @@ fJO fJO fJO bbs -gyw -uNQ -gyw +kIR +gRV +kIR xSw ejo ejo @@ -131485,18 +131475,18 @@ oXb oXb oXb bJC -xhO -gEh -gEh -tcO -tcO -ucy -tcO -tcO -tcO -tcO -tcO -tcO +aCr +gbz +gbz +nhJ +nhJ +urZ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -131555,9 +131545,9 @@ sjj fzP sAC wYY -pEd -tbD -xhi +qRq +kTn +usl alR amA atq @@ -131573,9 +131563,9 @@ xEO xEO lnP alR -pEd -tbD -jhm +qRq +kTn +cGk jWh qLs qLs @@ -131642,9 +131632,9 @@ aaa aaa aaa aaa -emA -qGC -hyb +kHq +bhe +enq aQL ksp ksp @@ -131653,33 +131643,33 @@ qDq qDq qDq bTb -bqc -ubQ -bqc -bqc -bqc -bqc -bqc -bqc -dYb -bqc -fpI -bqc -bqc -tGS -uPE -uPE -uuT -uPE -fRL -uPE -uPE -uPE -uPE -uPE -uPE -vuV -uPE +ivi +llQ +ivi +ivi +ivi +ivi +ivi +ivi +eZn +ivi +nAN +ivi +ivi +vja +wOC +wOC +niK +wOC +hky +wOC +wOC +wOC +wOC +wOC +wOC +iQx +wOC xSw oXb oXb @@ -131688,10 +131678,10 @@ kIP qer kIP bJC -xhO -wYd -pFr -tcO +aCr +wFG +tRd +nhJ aaa aaa aaa @@ -131758,9 +131748,9 @@ fcM uzE qsL nim -prV -gqf -xhi +sFo +qTd +usl alR amA atq @@ -131776,9 +131766,9 @@ iWR iWR kbx alR -pEd -tbD -xhi +qRq +kTn +usl jWh jWh jlQ @@ -131845,9 +131835,9 @@ aaa aaa aaa aaa -emA -ikT -jEM +kHq +hsf +aYf aQL aQL aQL @@ -131856,33 +131846,33 @@ ksp rou ksp aQL -bqc -qas -qUO -qUO -qUO -reu -fLf -reu -reu -reu -kkN -reu -reu -uTP -kEE -kEE -dCM -kEE -kEE -kEE -ulH -kEE -wzJ -wzJ -wzJ -nmH -xui +ivi +mfr +tqp +tqp +tqp +pAa +cgp +pAa +pAa +pAa +hdC +pAa +pAa +cZo +wad +wad +upP +wad +wad +wad +wYU +wad +sGQ +sGQ +sGQ +cLT +nwd bJC kIP qer @@ -131891,10 +131881,10 @@ bJC bJC bJC bJC -gEh -gEh -gEh -tcO +gbz +gbz +gbz +nhJ aaa aaa aaa @@ -131961,9 +131951,9 @@ xlC gyO kTN eNi -pvE -tbD -xhi +qsj +kTn +usl alR amA atq @@ -131979,14 +131969,14 @@ xEO xEO aOV alR -pEd -tbD -xhi +qRq +kTn +usl jWh -kUw -dod -eNv -rxV +pnV +nqp +vyI +fVM thV fCL uIv @@ -132048,56 +132038,56 @@ aaa aaa aaa aaa -emA -ikT -jEM -jEM -hYf -jEM -oBr -oBr -oBr -oBr -oBr -ovQ -bqc -bqc -bqc -bqc -nci -mww -nci -nci -bqc -rVC -bqc -bqc -tGS -uPE -uPE -tIl -uPE -cJs -cJs -vuV -cJs -uPE -uPE -uPE -uPE -pqw +kHq +hsf +aYf +aYf +gHm +aYf +qwE +qwE +qwE +qwE +qwE +mED +ivi +ivi +ivi +ivi +eOz +gZO +eOz +eOz +ivi +aAM +ivi +ivi +vja +wOC +wOC +qXz +wOC +wCN +wCN +iQx +wCN +wOC +wOC +wOC +wOC +hVR bJC bJC bJC bJC bJC -xhO -xhO -xhO -gEh -xhO -xfq -tcO +aCr +aCr +aCr +gbz +aCr +dXc +nhJ aaa aaa aaa @@ -132164,9 +132154,9 @@ oNb iFC qAA eNi -pEd -gBg -xhi +qRq +psT +usl alR arK atc @@ -132182,15 +132172,15 @@ aJq aMG aOW alR -pEd -tbD -xhi +qRq +kTn +usl jWh -tZP -hSk -hSk +qkz +nqp +vyI +vyI vyI -thV fCL uIv hSk @@ -132251,27 +132241,27 @@ aaa aaa aaa aaa -emA -kAv -jEM -ikT -ikT -jEM -jEM -gCu -ikT -ikT -oBr -oBr -qPn -oBr -oBr -jxX -knl -pum -jAj -kKY -kKY +kHq +kai +aYf +hsf +hsf +aYf +aYf +lfs +hsf +hsf +qwE +qwE +bhV +qwE +qwE +qSB +gtc +gCX +rly +jAy +jAy oJk lNR lNR @@ -132279,28 +132269,28 @@ oJk lNR lNR oJk -mXy -oGh -far -vDo -nnr -cNm -ljv -ljv -sUi -ljv -ljv -xhO -xhO -xhO -xhO -xhO -xhO -xhO -xhO -xhO -srl -tcO +anE +wBg +cwy +rYV +rSz +wJA +lij +lij +saa +lij +lij +aCr +aCr +aCr +aCr +aCr +aCr +aCr +aCr +aCr +eQa +nhJ aaa aaa aaa @@ -132367,9 +132357,9 @@ eNi eNi eNi eNi -mQF -rnO -mQF +sGP +mju +sGP alO alO alO @@ -132385,14 +132375,14 @@ alO alO alO alO -mQF -rnO -mQF +sGP +mju +sGP jWh -nDL -vyI +pnV +nqp vyI -wTJ +qJb thV uWV uIv @@ -132454,22 +132444,22 @@ aaa aaa aaa aaa -emA -qFS -pPG -jEM -jEM -jEM -jEM -gCu -jEM -jEM -oBr -sRM -jEM -jEM -oBr -oBr +kHq +qev +gaW +aYf +aYf +aYf +aYf +lfs +aYf +aYf +qwE +nSI +aYf +aYf +qwE +qwE sqg rPQ sqg @@ -132487,23 +132477,23 @@ oJk sqg mgu sqg -ljv -ljv -xhO -gEh -xhO -xhO -gEh -gEh -gEh -xhO -xhO -xhO -xhO -gEh -aEr -keO -tcO +lij +lij +aCr +gbz +aCr +aCr +gbz +gbz +gbz +aCr +aCr +aCr +aCr +gbz +tbz +xUS +nhJ aaa aaa aaa @@ -132570,9 +132560,9 @@ dWX owg owg ptK -bZq -hfc -jgS +oaE +whg +xLC aqq aPa eky @@ -132588,9 +132578,9 @@ eky eky aPa aqq -bZq -hfc -lBf +oaE +whg +hKS jWh xXa xXa @@ -132657,22 +132647,22 @@ aaa aaa aaa aaa -emA -twp -iyE -ecb -ikT -ikT -ikT -ctp -ecb -jEM -jEM -jEM -jEM -ikT -ikT -oBr +kHq +hFR +kJD +fMn +hsf +hsf +hsf +aPP +fMn +aYf +aYf +aYf +aYf +hsf +hsf +qwE fcS gdJ oyR @@ -132690,23 +132680,23 @@ oJk ppn nAY cjt -ljv -ceY -gIm -gEh -gEh -gEh -xhO -wra -xhO -gEh -xhO -gEh -gEh -sOD -eMx -xgr -tcO +lij +xtk +xWh +gbz +gbz +gbz +aCr +erR +aCr +gbz +aCr +gbz +gbz +tNy +lgI +ulI +nhJ aaa aaa aaa @@ -132773,9 +132763,9 @@ keR jhx keR dwI -pym -jae -tGW +aPc +efE +hOb hal uYg nau @@ -132791,9 +132781,9 @@ uYg nau uYg hal -rrG -jae -pym +eQP +efE +aPc mPh soP tWi @@ -132860,22 +132850,22 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -emA -emA +kHq +kHq +kHq +kHq +kHq +kHq +kHq vgw sqg sqg sqg mpP sqg -oBr -qGC -oBr +qwE +bhe +qwE fcS gdJ oyR @@ -132893,23 +132883,23 @@ oJk pkA nAY cjt -ljv -gEh -ljv +lij +gbz +lij sqg mpP aep aep aep dKL -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -132976,9 +132966,9 @@ kPG kPG cVw ptK -iOP -xjI -fzm +xdr +sXG +enK aqq eky aNl @@ -132994,9 +132984,9 @@ eky aNl eky aqq -iOP -xSl -fzm +xdr +fAQ +enK jWh tim uWV @@ -133077,8 +133067,8 @@ sqg rwB lKM sqg -nSq -oBr +vJJ +qwE fcS gdJ cjt @@ -133096,8 +133086,8 @@ pRZ fcS nAY jOE -ljv -mPc +lij +lGo sqg qEL vmE @@ -133179,9 +133169,9 @@ ucp cIW ptK ptK -ybk -sDe -ybk +oaI +pFh +oaI aHe jlT exi @@ -133197,9 +133187,9 @@ eky ins wRP aHe -eZm -eZm -eZm +wUB +wUB +wUB jWh jWh sWC @@ -133280,8 +133270,8 @@ sqg eKy wQA sqg -jEM -oBr +aYf +qwE uYn jaM oXM @@ -133299,8 +133289,8 @@ mkP muQ ojh nxx -ljv -xhO +lij +aCr sqg gEC skC @@ -133382,9 +133372,9 @@ gPc trB exy ptK -fLl -fLl -fLl +diy +diy +diy eky eky aNl @@ -133400,9 +133390,9 @@ eky aNl eky rqj -eZm -jYm -aZI +wUB +pLB +tpk jWh duz hXG @@ -133585,9 +133575,9 @@ eet fcP pDh ptK -aqZ -aqZ -ptQ +uQp +uQp +rlO aMT aMT dPm @@ -133603,9 +133593,9 @@ okg dPm aMT aMT -hbp -mwP -mwP +qtZ +aBO +aBO jWh axR mIP @@ -133788,9 +133778,9 @@ wxj lht rYv ptK -haO -pKB -fLl +frq +iDx +diy svf arV wZX @@ -133806,9 +133796,9 @@ eky wZX arV vUh -eZm -xUy -mwP +wUB +dnW +aBO jWh vpv pgw @@ -133991,9 +133981,9 @@ ptK afX ptK ptK -haO -fLl -fLl +frq +diy +diy lDn arV wZX @@ -134009,9 +133999,9 @@ eky wZX arV wkA -eZm -eZm -mwP +wUB +wUB +aBO jWh jWh kLc @@ -134186,16 +134176,16 @@ bdH uMc bNM ofK -fLl -uxl -haO -ebf -haO -aqZ -tot -haO -qqS -fLl +diy +lkN +frq +dfv +frq +uQp +hOc +frq +oeq +diy xrq vVu arV @@ -134213,16 +134203,16 @@ wZX arV oIt xrq -eZm -qHG -mwP -xQW -vJR -mwP -hkz -ckj -oaw -eZm +wUB +hZp +aBO +dsp +vsa +aBO +exX +fDm +hyL +wUB lbB uIv pql @@ -134389,16 +134379,16 @@ bdH uMc bNM ofK -fLl -uxl -haO -uLG -haO -aqZ -pbo -haO -xLn -fLl +diy +lkN +frq +cIZ +frq +uQp +fUF +frq +ruS +diy vlk mKy aMT @@ -134416,16 +134406,16 @@ sQO aMT wNS vlk -eZm -oHg -uiK -mwP -vJR -mwP -jrB -eoK -xTG -eZm +wUB +fAH +fOO +aBO +vsa +aBO +iUD +cLt +ebz +wUB lbB uIv pql @@ -134498,8 +134488,8 @@ aWZ qAB gEC sqg -aIh -eTb +jon +iQK kkW iwf uFg @@ -134517,8 +134507,8 @@ vXo gWu xMl lft -eTb -aIh +iQK +jon sqg siN cjt @@ -134592,17 +134582,17 @@ bdH uMc bNM rtd -ptQ -aqZ -aqZ -aqZ -aqZ -aqZ -leM -haO -iYm -fLl -fLl +rlO +uQp +uQp +uQp +uQp +uQp +nLN +frq +wIz +diy +diy vjd aRp jBX @@ -134618,17 +134608,17 @@ tKf jBX aRp quy -eZm -eZm -bjt -eIN -mwP -ksw -ksw -ksw -ksw -ksw -hbp +wUB +wUB +jDf +hfs +aBO +opf +opf +opf +opf +opf +qtZ uWV uIv pql @@ -134701,14 +134691,14 @@ ggQ pYS ivS sqg -ppM -eTb +xjU +iQK hbs vZU elx jnI oJk -xef +ggx dPQ ams eni @@ -134720,8 +134710,8 @@ nYn elx mDL fSF -eTb -ppM +iQK +xjU sqg lvh iks @@ -134795,17 +134785,17 @@ bdH cuC htb pfc -fLl -fLl -fLl -fLl -rht -aqZ -aqZ -aqZ -aqZ -aqZ -ptQ +diy +diy +diy +diy +gNj +uQp +uQp +uQp +uQp +uQp +rlO qYG atM bGc @@ -134821,17 +134811,17 @@ atM bGc atK qYG -hbp -ksw -ksw -rHB -ksw -vJR -rPq -eZm -eZm -eZm -eZm +qtZ +opf +opf +vrG +opf +vsa +oDI +wUB +wUB +wUB +wUB jAJ lAu bYn @@ -134904,8 +134894,8 @@ aep mkL gEC sqg -ppM -eTb +xjU +iQK hsy hsy baJ @@ -134923,8 +134913,8 @@ foC kph hsy hsy -eTb -eUe +iQK +nJm sqg wWl trh @@ -135001,14 +134991,14 @@ tgK tfb wuT lMx -gJF -gJF -gJF -gJF -gJF -gJF -gJF -gJF +bma +bma +bma +bma +bma +bma +bma +bma aPw avu mhG @@ -135024,14 +135014,14 @@ dxK dPC aMU aPw -wxy -wxy -wxy -wxy -wxy -wxy -wxy -wxy +nzC +nzC +nzC +nzC +nzC +nzC +nzC +nzC jFY qKY jHL @@ -135107,27 +135097,27 @@ wpS fZA fEe sqg -ppM -ppM +xjU +xjU hsy shL uXk mlF hsy -ckZ -hmv -hmv +wdN +lsQ +lsQ dTS -hmv -hmv -ckZ +lsQ +lsQ +wdN hsy tos uXk tkn hsy -aIh -ppM +jon +xjU sqg fEe nqW @@ -135310,8 +135300,8 @@ vgw vgw vgw vgw -aIh -aIh +jon +jon hsy wed uXk @@ -135329,8 +135319,8 @@ tos uXk wed hsy -qBS -lib +hts +afA vgw vgw vgw @@ -135512,11 +135502,11 @@ aah aag aag aag -nic -tmQ -ppM +eUf +ioT +xjU hsy -txS +ujr bVN oGJ xpZ @@ -135530,11 +135520,11 @@ coH oTO uqh iAE -sct +vji hsy -iWa -fZR -nic +gMX +uSI +eUf aag aag aag @@ -135715,29 +135705,29 @@ bdH aad aag aag -nic -aIh -aIh +eUf +jon +jon hsy -fCT +lxm uXk rae jIV pzM mtZ -hmv -hmv -hmv +lsQ +lsQ +lsQ fQn pzM nac xNf uXk -slv +kIj hsy -aIh -aIh -nic +jon +jon +eUf aag aag ajZ @@ -135918,29 +135908,29 @@ bdH aad aag aag -nic -ppM -ppM +eUf +xjU +xjU hsy -igs +duP nCn oGJ uSW kzO vaZ kYL -hmv +lsQ sCV rjO suY pdK uqh pJr -slv +kIj hsy -aIh -aIh -nic +jon +jon +eUf aag aag ajZ @@ -136121,29 +136111,29 @@ bdH aad aag aag -nic -aIh -ppM +eUf +jon +xjU hsy hsy -wTB +mBT mlF uXk hmw gSa mtZ -hmv +lsQ fQn wSV ulp uXk tos -slv +kIj hsy hsy -ppM -eUe -nic +xjU +nJm +eUf aag aag ajZ @@ -136324,29 +136314,29 @@ bdH aad aag aag -nic -aIh -aIh -aIh +eUf +jon +jon +jon hsy -ygP +osd mlF hsy -hcX +jiq fQn mtZ -hmv +lsQ fQn mtZ -hmv +lsQ hsy beL -ygP +osd hsy -cWb -aIh -aIh -nic +tHw +jon +jon +eUf aag aag ajZ @@ -136527,29 +136517,29 @@ bdH aad aag aag -nic -ppM -ppM -ppM +eUf +xjU +xjU +xjU hsy ylh opH hsy -pvI +gTV fQn qoR aPU rjO mtZ -njS +goF hsy iEw ylh hsy -dDT -ppM -dDT -nic +qEP +xjU +qEP +eUf aag aag ajZ @@ -136730,29 +136720,29 @@ bdH aad aag aag -nic -nic -wsw -aIh +eUf +eUf +xUt +jon hsy ylh mlF hsy -hmv +lsQ eZp kzO pzM hip ptZ -hmv +lsQ hsy tos ylh hsy -qBS -piJ -nic -nic +hts +hEy +eUf +eUf aag aag ajZ @@ -136934,9 +136924,9 @@ aad aag aag aag -nic -qBS -lib +eUf +hts +afA hsy hsy suJ @@ -136952,9 +136942,9 @@ hsy wdv hsy hsy -yjE -ppM -nic +sUq +xjU +eUf aag aag aag @@ -137137,9 +137127,9 @@ aad aag aag aag -nic -aIh -vsi +eUf +jon +mtQ hsy uiC sIr @@ -137155,9 +137145,9 @@ rlc hfb hUk hsy -ppM -fZR -nic +xjU +uSI +eUf aag aag aag @@ -137340,9 +137330,9 @@ aad aag aag aag -nic -ppM -ppM +eUf +xjU +xjU hsy thc sIr @@ -137358,9 +137348,9 @@ pAm sIr fZl hsy -mxV -aIh -nic +tyY +jon +eUf aag aag aag @@ -137543,9 +137533,9 @@ aad aag aag aag -nic -aIh -aIh +eUf +jon +jon hsy tIe uAK @@ -137561,9 +137551,9 @@ bVv nJa jPd hsy -ppM -eeC -nic +xjU +flY +eUf aag aag aag @@ -137746,9 +137736,9 @@ aad aag aag aag -nic -ppM -ppM +eUf +xjU +xjU hsy dPH sov @@ -137764,9 +137754,9 @@ pAm fZl oex hsy -aIh -aIh -nic +jon +jon +eUf aag aag aag @@ -137949,9 +137939,9 @@ aad aag aag aag -nic -aIh -aIh +eUf +jon +jon hsy rBv sov @@ -137967,9 +137957,9 @@ pAm fZl snt hsy -ppM -ppM -nic +xjU +xjU +eUf aag aag aag @@ -138152,9 +138142,9 @@ aad aag aag aag -nic -ppM -ppM +eUf +xjU +xjU hsy fqW qYq @@ -138170,9 +138160,9 @@ mQn wQD fqW hsy -aIh -aIh -nic +jon +jon +eUf aag aag aag @@ -138355,9 +138345,9 @@ aad aag aag aag -nic -aIh -ppM +eUf +jon +xjU hsy hsy hsy @@ -138373,9 +138363,9 @@ hsy hsy hsy hsy -ppM -ppM -nic +xjU +xjU +eUf aag aag aag @@ -138558,11 +138548,11 @@ aad aag aag aag -nic -aIh -ppM -csd -dDJ +eUf +jon +xjU +liF +aBK hsy haz fQn @@ -138574,11 +138564,11 @@ pzM mtZ haz hsy -dDJ -rXH -aIh -aIh -nic +aBK +feZ +jon +jon +eUf aag aag aag @@ -138652,7 +138642,7 @@ aaa cuC cuC jPq -xgm +jZS aqK cuC uiR @@ -138761,11 +138751,11 @@ aad aag aag aag -nic -aIh -aIh -aIh -aIh +eUf +jon +jon +jon +jon hsy haz pLt @@ -138777,11 +138767,11 @@ mZL lOX haz hsy -fpi -aIh -aIh -aIh -nic +gvt +jon +jon +jon +eUf aag aag aag @@ -138964,11 +138954,11 @@ aad aag aag aag -nic -nic -mem -piJ -piJ +eUf +eUf +ydb +hEy +hEy hsy mkI aPS @@ -138980,11 +138970,11 @@ nop aPS ddf hsy -atS -ppM -fZR -nic -nic +wQV +xjU +uSI +eUf +eUf aag aag aag @@ -139168,10 +139158,10 @@ aag aag aag aag -nic -aIh -ppM -sER +eUf +jon +xjU +wri hsy hsy hsy @@ -139183,10 +139173,10 @@ hsy hsy hsy hsy -aIh -aIh -aIh -nic +jon +jon +jon +eUf aag aag aag @@ -139371,25 +139361,25 @@ aag aag aag aag -nic -aIh -ppM -aIh -ppM -puT -aIh -xrg -ppM -ppM -ppM -xrg -aIh -erE -ppM -ppM -ppM -aIh -nic +eUf +jon +xjU +jon +xjU +olk +jon +mdF +xjU +xjU +xjU +mdF +jon +ssH +xjU +xjU +xjU +jon +eUf aag aag aag From d728744f7f3a367cc5c0817eba06bd05ea4d2a3c Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 26 Feb 2024 15:46:40 +0000 Subject: [PATCH 137/148] Automatic changelog for PR #5749 [ci skip] --- html/changelogs/AutoChangeLog-pr-5749.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5749.yml diff --git a/html/changelogs/AutoChangeLog-pr-5749.yml b/html/changelogs/AutoChangeLog-pr-5749.yml new file mode 100644 index 000000000000..c3786e33bfdc --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5749.yml @@ -0,0 +1,6 @@ +author: "Huffie56" +delete-after: True +changes: + - rscadd: "adding vendor for maintenance technician." + - code_imp: "remove some item that maintenance technician spawned with and put them in is vendor instead." + - maptweak: "replaced secured closet by vendor for maintenance technician." \ No newline at end of file From d88ed23af63fcca80b90e87ebcdb41b675974112 Mon Sep 17 00:00:00 2001 From: Drathek <76988376+Drulikar@users.noreply.github.com> Date: Mon, 26 Feb 2024 14:23:07 -0800 Subject: [PATCH 138/148] Fix runtime since HAS_TRAIT doesn't null test (#5811) # About the pull request This PR is a follow up to #5795 fixing a runtime should you swap to an empty hand during welding. This should be caught if we used `INTERRUPT_ALL` instead of `INTERRUPT_NO_NEEDHAND` but maybe multitasking something else like wire maybe was intended. # Explain why it's good for the game Fixes ![image](https://github.com/cmss13-devs/cmss13/assets/76988376/321a502f-c5c3-4add-9add-65652428143e) # Testing Photographs and Procedure
      Screenshots & Videos https://github.com/cmss13-devs/cmss13/assets/76988376/66e29f49-3696-401f-bd6c-da12e5d3cd71
      # Changelog :cl: Drathek fix: Fixed a runtime when swapping tools during cade welding /:cl: --- code/game/objects/structures/barricade/barricade.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/objects/structures/barricade/barricade.dm b/code/game/objects/structures/barricade/barricade.dm index 2dea5cd33050..313067ca6a56 100644 --- a/code/game/objects/structures/barricade/barricade.dm +++ b/code/game/objects/structures/barricade/barricade.dm @@ -387,7 +387,9 @@ update_health(-200) playsound(src.loc, 'sound/items/Welder2.ogg', 25, TRUE) - welder = user.get_active_hand() + var/current_tool = user.get_active_hand() + if(current_tool != welder) + return TRUE // Swapped hands or tool if(repeat && can_weld(welder, user, silent = TRUE)) // Assumption: The implementation of can_weld will return false if fully repaired if(!try_weld_cade(welder, user, repeat = TRUE, skip_check = TRUE)) From 1968270b51dcb534abf01ade256230ce9eea7f1f Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Mon, 26 Feb 2024 22:28:35 +0000 Subject: [PATCH 139/148] Automatic changelog for PR #5811 [ci skip] --- html/changelogs/AutoChangeLog-pr-5811.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5811.yml diff --git a/html/changelogs/AutoChangeLog-pr-5811.yml b/html/changelogs/AutoChangeLog-pr-5811.yml new file mode 100644 index 000000000000..0e715929ef3e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5811.yml @@ -0,0 +1,4 @@ +author: "Drathek" +delete-after: True +changes: + - bugfix: "Fixed a runtime when swapping tools during cade welding" \ No newline at end of file From 0f91b0dafe27d10fd4a4a00aa1e7ab1bc262c30a Mon Sep 17 00:00:00 2001 From: Changelogs Date: Tue, 27 Feb 2024 01:06:17 +0000 Subject: [PATCH 140/148] Automatic changelog compile [ci skip] --- html/changelogs/AutoChangeLog-pr-3642.yml | 5 ---- html/changelogs/AutoChangeLog-pr-5681.yml | 7 ----- html/changelogs/AutoChangeLog-pr-5698.yml | 7 ----- html/changelogs/AutoChangeLog-pr-5738.yml | 4 --- html/changelogs/AutoChangeLog-pr-5749.yml | 6 ----- html/changelogs/AutoChangeLog-pr-5759.yml | 4 --- html/changelogs/AutoChangeLog-pr-5800.yml | 4 --- html/changelogs/AutoChangeLog-pr-5804.yml | 4 --- html/changelogs/AutoChangeLog-pr-5811.yml | 4 --- html/changelogs/archive/2024-02.yml | 32 +++++++++++++++++++++++ 10 files changed, 32 insertions(+), 45 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-3642.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5681.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5698.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5738.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5749.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5759.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5800.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5804.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5811.yml diff --git a/html/changelogs/AutoChangeLog-pr-3642.yml b/html/changelogs/AutoChangeLog-pr-3642.yml deleted file mode 100644 index 35b044b0b37e..000000000000 --- a/html/changelogs/AutoChangeLog-pr-3642.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "paulrpg,kugamo" -delete-after: True -changes: - - imageadd: "shuttle rotation sprites added" - - maptweak: "escape pods now use new floors" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5681.yml b/html/changelogs/AutoChangeLog-pr-5681.yml deleted file mode 100644 index ba541a5ba22b..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5681.yml +++ /dev/null @@ -1,7 +0,0 @@ -author: "BadAtThisGame302" -delete-after: True -changes: - - rscadd: "Added trucker hats to the Solaris and Trijent Trucker survs." - - rscadd: "Added the CMB Marshal jacket to the CMB Marshal." - - imageadd: "Differentiated the CMB Deputy and CMB Marshal jackets to accurately know which is which. Courtesy of AmoryBlaine." - - imageadd: "Added new insulated gloves, coveralls (Tan/Red), updated the blue coveralls, Five Colonist Clothes (Grey/Khaki/Pink/Blue/Green), updated the Orange/Blue/Black hazard vests and updated the CMB Uniform and Cap. Courtesy of AmoryBlaine." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5698.yml b/html/changelogs/AutoChangeLog-pr-5698.yml deleted file mode 100644 index 39ceb86101f2..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5698.yml +++ /dev/null @@ -1,7 +0,0 @@ -author: "Huffie56" -delete-after: True -changes: - - balance: "set base price for B12 to 30 and for the M4 to 20." - - balance: "Medic comtech and SL have a discount of 20% for the B12 and M4. (B12=24 & M4=16=)" - - balance: "removed the free M4 for FTL but added FTL the option to buy it for 20." - - balance: "changed the price of Drop Pouch from 15 to 10." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5738.yml b/html/changelogs/AutoChangeLog-pr-5738.yml deleted file mode 100644 index 206e2fa3e6c7..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5738.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Megaddd" -delete-after: True -changes: - - balance: "health analyzer no longer shows large custom research chem property text rows." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5749.yml b/html/changelogs/AutoChangeLog-pr-5749.yml deleted file mode 100644 index c3786e33bfdc..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5749.yml +++ /dev/null @@ -1,6 +0,0 @@ -author: "Huffie56" -delete-after: True -changes: - - rscadd: "adding vendor for maintenance technician." - - code_imp: "remove some item that maintenance technician spawned with and put them in is vendor instead." - - maptweak: "replaced secured closet by vendor for maintenance technician." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5759.yml b/html/changelogs/AutoChangeLog-pr-5759.yml deleted file mode 100644 index 29bc5a8fdabc..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5759.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "InsaneRed" -delete-after: True -changes: - - balance: "Oppressor tailhook is now 8 deciseconds instead of 7." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5800.yml b/html/changelogs/AutoChangeLog-pr-5800.yml deleted file mode 100644 index ea11b03f077c..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5800.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "BadAtThisGame302" -delete-after: True -changes: - - mapadd: "added a new nightmare insert in the Operations Panic Room on Shivas" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5804.yml b/html/changelogs/AutoChangeLog-pr-5804.yml deleted file mode 100644 index 5b044fa988cb..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5804.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "SabreML" -delete-after: True -changes: - - qol: "Added a failure message when trying to remove a built-in helmet visor." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5811.yml b/html/changelogs/AutoChangeLog-pr-5811.yml deleted file mode 100644 index 0e715929ef3e..000000000000 --- a/html/changelogs/AutoChangeLog-pr-5811.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Drathek" -delete-after: True -changes: - - bugfix: "Fixed a runtime when swapping tools during cade welding" \ No newline at end of file diff --git a/html/changelogs/archive/2024-02.yml b/html/changelogs/archive/2024-02.yml index 55ddb5e6146d..d35f825a443e 100644 --- a/html/changelogs/archive/2024-02.yml +++ b/html/changelogs/archive/2024-02.yml @@ -399,3 +399,35 @@ - admin: Mods can now run votes where appropriate. - admin: Moved a few event verbs from Admin level to Senior Mod. - admin: Added a log to creating new bank accounts. +2024-02-27: + BadAtThisGame302: + - mapadd: added a new nightmare insert in the Operations Panic Room on Shivas + - rscadd: Added trucker hats to the Solaris and Trijent Trucker survs. + - rscadd: Added the CMB Marshal jacket to the CMB Marshal. + - imageadd: Differentiated the CMB Deputy and CMB Marshal jackets to accurately + know which is which. Courtesy of AmoryBlaine. + - imageadd: Added new insulated gloves, coveralls (Tan/Red), updated the blue coveralls, + Five Colonist Clothes (Grey/Khaki/Pink/Blue/Green), updated the Orange/Blue/Black + hazard vests and updated the CMB Uniform and Cap. Courtesy of AmoryBlaine. + Drathek: + - bugfix: Fixed a runtime when swapping tools during cade welding + Huffie56: + - rscadd: adding vendor for maintenance technician. + - code_imp: remove some item that maintenance technician spawned with and put them + in is vendor instead. + - maptweak: replaced secured closet by vendor for maintenance technician. + - balance: set base price for B12 to 30 and for the M4 to 20. + - balance: Medic comtech and SL have a discount of 20% for the B12 and M4. (B12=24 + & M4=16=) + - balance: removed the free M4 for FTL but added FTL the option to buy it for 20. + - balance: changed the price of Drop Pouch from 15 to 10. + InsaneRed: + - balance: Oppressor tailhook is now 8 deciseconds instead of 7. + Megaddd: + - balance: health analyzer no longer shows large custom research chem property text + rows. + SabreML: + - qol: Added a failure message when trying to remove a built-in helmet visor. + paulrpg,kugamo: + - imageadd: shuttle rotation sprites added + - maptweak: escape pods now use new floors From af72122fe53aad5fd32ba50c508e16119aafe4b0 Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Tue, 27 Feb 2024 01:05:49 +0000 Subject: [PATCH 141/148] Fixes acid pillars shooting captured humans (#5807) # About the pull request Fixes #5806 by making `/obj/effect/alien/resin/acid_pillar/proc/can_target()` check if the target is nested. This specifically only checks if they're nested and not if they've actually been hugged to avoid the same issue happening in the rare cases where both aren't true. # Explain why it's good for the game Acid pillars shouldn't be helping marines by killing captured people. # Testing Photographs and Procedure
      Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
      ` tags.
      # Changelog :cl: fix: Fixed acid pillars shooting nested marines. /:cl: --- code/modules/cm_aliens/XenoStructures.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/cm_aliens/XenoStructures.dm b/code/modules/cm_aliens/XenoStructures.dm index ab38e59002d8..c014fbf9c211 100644 --- a/code/modules/cm_aliens/XenoStructures.dm +++ b/code/modules/cm_aliens/XenoStructures.dm @@ -578,6 +578,9 @@ if(current_mob.stat == DEAD) return FALSE + if(HAS_TRAIT(current_mob, TRAIT_NESTED)) + return FALSE + var/turf/current_turf var/turf/last_turf = loc var/atom/temp_atom = new acid_type() From 484b755d6873e6ee92e2194e05dfcd5ae594b8e3 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Tue, 27 Feb 2024 01:14:34 +0000 Subject: [PATCH 142/148] Automatic changelog for PR #5807 [ci skip] --- html/changelogs/AutoChangeLog-pr-5807.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5807.yml diff --git a/html/changelogs/AutoChangeLog-pr-5807.yml b/html/changelogs/AutoChangeLog-pr-5807.yml new file mode 100644 index 000000000000..3e99ec97c7de --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5807.yml @@ -0,0 +1,4 @@ +author: "SabreML" +delete-after: True +changes: + - bugfix: "Fixed acid pillars shooting nested marines." \ No newline at end of file From 6533f9c679547953673f05ea406fabecda8ef9d7 Mon Sep 17 00:00:00 2001 From: ItsVyzo <46250991+ItsVyzo@users.noreply.github.com> Date: Mon, 26 Feb 2024 17:20:41 -0800 Subject: [PATCH 143/148] Brig Area Update/Refactor (#5723) # About the pull request Updates Brig Areas to be more concise with new design Also alters dropship hijack crash areas # Explain why it's good for the game People in X area of brig, hiding/dead/dying etc. are much easier to find. Also Mapper OCD Dropship doors landing in space = bad # Testing Photographs and Procedure
      Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
      ` tags.
      # Changelog :cl: LTNTS add: brig areas: warden office, MP bunks, starboard hallway, interrogation room, evidence storage spellcheck: changes brig surgery to brig medical code: removed some brig areas from hijack, added other brig areas /:cl: --- code/game/area/almayer.dm | 22 +- code/modules/shuttle/dropship_hijack.dm | 7 +- maps/map_files/USS_Almayer/USS_Almayer.dmm | 56265 ++++++++++--------- 3 files changed, 28209 insertions(+), 28085 deletions(-) diff --git a/code/game/area/almayer.dm b/code/game/area/almayer.dm index 14bc1891ea1f..c3898283cbbb 100644 --- a/code/game/area/almayer.dm +++ b/code/game/area/almayer.dm @@ -241,8 +241,11 @@ /area/almayer/shipboard/brig/armory name = "\improper Brig Armory" -/area/almayer/shipboard/brig/main_office - name = "\improper Brig Main Office" +/area/almayer/shipboard/brig/mp_bunks + name = "\improper Brig MP Bunks" + +/area/almayer/shipboard/brig/starboard_hallway + name = "\improper Brig Starboard Hallway" /area/almayer/shipboard/brig/perma name = "\improper Brig Perma Cells" @@ -250,8 +253,11 @@ /area/almayer/shipboard/brig/cryo name = "\improper Brig Cryo Pods" -/area/almayer/shipboard/brig/surgery - name = "\improper Brig Surgery" +/area/almayer/shipboard/brig/medical + name = "\improper Brig Medical" + +/area/almayer/shipboard/brig/interrogation + name = "\improper Brig Interrogation Room" /area/almayer/shipboard/brig/general_equipment name = "\improper Brig General Equipment" @@ -262,11 +268,15 @@ /area/almayer/shipboard/brig/execution name = "\improper Brig Execution Room" +/area/almayer/shipboard/brig/execution_storage + name = "\improper Brig Execution Storage" + /area/almayer/shipboard/brig/cic_hallway name = "\improper Brig CiC Hallway" /area/almayer/shipboard/brig/dress name = "\improper CIC Dress Uniform Room" + /area/almayer/shipboard/brig/processing name = "\improper Brig Processing and Holding" @@ -278,6 +288,10 @@ name = "\improper Brig Chief MP Office" icon_state = "chiefmpoffice" +/area/almayer/shipboard/brig/warden_office + name = "\improper Brig Warden Office" + icon_state = "chiefmpoffice" + /area/almayer/shipboard/sea_office name = "\improper Lower Deck Senior Enlisted Advisor Office" icon_state = "chiefmpoffice" diff --git a/code/modules/shuttle/dropship_hijack.dm b/code/modules/shuttle/dropship_hijack.dm index 2190683974e0..73150f5bfc08 100644 --- a/code/modules/shuttle/dropship_hijack.dm +++ b/code/modules/shuttle/dropship_hijack.dm @@ -176,13 +176,14 @@ turfs += get_area_turfs(/area/almayer/shipboard/brig/cic_hallway) turfs += get_area_turfs(/area/almayer/shipboard/brig/cryo) turfs += get_area_turfs(/area/almayer/shipboard/brig/evidence_storage) - turfs += get_area_turfs(/area/almayer/shipboard/brig/execution) turfs += get_area_turfs(/area/almayer/shipboard/brig/general_equipment) turfs += get_area_turfs(/area/almayer/shipboard/brig/lobby) - turfs += get_area_turfs(/area/almayer/shipboard/brig/main_office) + turfs += get_area_turfs(/area/almayer/shipboard/brig/starboard_hallway) turfs += get_area_turfs(/area/almayer/shipboard/brig/perma) turfs += get_area_turfs(/area/almayer/shipboard/brig/processing) - turfs += get_area_turfs(/area/almayer/shipboard/brig/surgery) + turfs += get_area_turfs(/area/almayer/shipboard/brig/medical) + turfs += get_area_turfs(/area/almayer/shipboard/brig/mp_bunks) + turfs += get_area_turfs(/area/almayer/shipboard/brig/chief_mp_office) turfs += get_area_turfs(/area/almayer/command/cichallway) turfs += get_area_turfs(/area/almayer/command/cic) if("Upper deck Midship") diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 22845ed4e40c..9e96bc3e914d 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -133,15 +133,6 @@ allow_construction = 0 }, /area/almayer/stair_clone) -"aaG" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "aaH" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down1"; @@ -157,19 +148,6 @@ /obj/structure/lattice, /turf/open/space, /area/space) -"aaZ" = ( -/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/aft_hallway) "aba" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -191,10 +169,20 @@ /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/lifeboat_pumps/north2) +"abj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "abk" = ( /obj/structure/window/reinforced/toughened, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) +"abn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "abs" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/north1) @@ -249,15 +237,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"abN" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "abQ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -294,15 +273,6 @@ icon_state = "tcomms" }, /area/almayer/shipboard/weapon_room) -"aca" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "acc" = ( /obj/structure/machinery/door/airlock/almayer/security{ access_modified = 1; @@ -325,12 +295,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"ace" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "acf" = ( /turf/closed/wall/almayer/outer, /area/almayer/living/starboard_garden) @@ -587,6 +551,9 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) +"acQ" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "acS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -652,13 +619,9 @@ }, /area/almayer/lifeboat_pumps/north1) "ade" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "adj" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down1"; @@ -758,13 +721,6 @@ icon_state = "test_floor4" }, /area/almayer/living/offices/flight) -"adS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "aea" = ( /obj/structure/machinery/light{ dir = 1 @@ -865,14 +821,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) -"aeD" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "aeE" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -1082,14 +1030,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"afA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "afB" = ( /obj/structure/machinery/light{ dir = 1 @@ -1253,15 +1193,6 @@ icon_state = "bluecorner" }, /area/almayer/living/offices/flight) -"agh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_umbilical) "agj" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/commandbunks) @@ -1293,6 +1224,27 @@ "agu" = ( /turf/open/floor/almayer, /area/almayer/living/officer_study) +"agv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + access_modified = 1; + dir = 2; + name = "\improper Requisitions Break Room"; + req_one_access_txt = "19;21" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) "agA" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -1467,6 +1419,14 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) +"ahL" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "ahN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/floor/grass, @@ -1542,6 +1502,9 @@ icon_state = "test_floor4" }, /area/almayer/living/cafeteria_officer) +"aii" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/starboard_hallway) "aij" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -1586,14 +1549,6 @@ icon_state = "plate" }, /area/almayer/living/starboard_garden) -"aiI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) "aiJ" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down3"; @@ -1673,12 +1628,6 @@ icon_state = "redfull" }, /area/almayer/command/cic) -"ajq" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "ajs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -1793,6 +1742,18 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) +"akn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/vehicle/powerloader{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" + }, +/area/almayer/hallways/lower/vehiclehangar) "ako" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1959,6 +1920,10 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) +"alh" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "alk" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -1971,12 +1936,6 @@ }, /turf/closed/wall/almayer/research/containment/wall/purple, /area/almayer/medical/containment/cell) -"alu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "alw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -2051,12 +2010,6 @@ "alX" = ( /turf/open/floor/almayer, /area/almayer/command/cic) -"alY" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/mess) "alZ" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -2076,6 +2029,14 @@ }, /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/stern_hallway) "amd" = ( /obj/structure/machinery/vending/cola{ density = 0; @@ -2085,15 +2046,6 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"ame" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) "amg" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) @@ -2135,6 +2087,14 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"amu" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "amw" = ( /turf/open/floor/almayer{ dir = 9; @@ -2225,6 +2185,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) +"ang" = ( +/obj/item/clothing/head/welding{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "anm" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -2313,18 +2286,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) -"anE" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_aft_hallway) "anM" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -2344,6 +2305,18 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) +"anU" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/offices/flight) "anV" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ @@ -2365,12 +2338,12 @@ "aoe" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/morgue) -"aof" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 +"aog" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) "aoh" = ( /obj/structure/morgue/crematorium, /turf/open/floor/almayer{ @@ -2509,6 +2482,12 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) +"aoN" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) "aoP" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -2552,15 +2531,6 @@ icon_state = "plating" }, /area/almayer/engineering/upper_engineering) -"aoZ" = ( -/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/hull/upper/u_a_s) "apa" = ( /obj/structure/surface/rack, /obj/item/tool/screwdriver, @@ -2644,9 +2614,6 @@ icon_state = "red" }, /area/almayer/living/starboard_garden) -"apx" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_bow) "apz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -2939,6 +2906,13 @@ icon_state = "plate" }, /area/almayer/medical/medical_science) +"aqH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "aqI" = ( /turf/open/floor/almayer{ dir = 8; @@ -2957,6 +2931,19 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) +"aqL" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_midship_hallway) "aqN" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -3010,6 +2997,9 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) +"aqZ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_stern) "arb" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) @@ -3186,6 +3176,15 @@ icon_state = "silver" }, /area/almayer/command/cic) +"arQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) "arR" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -3217,6 +3216,17 @@ icon_state = "silver" }, /area/almayer/command/cic) +"asd" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/masks, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/medical) "ase" = ( /turf/open/floor/almayer{ icon_state = "cargo" @@ -3301,6 +3311,12 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"asE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "asF" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ access_modified = 1; @@ -3401,12 +3417,6 @@ icon_state = "plate" }, /area/almayer/medical/morgue) -"asV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "asX" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /turf/open/floor/almayer{ @@ -3560,6 +3570,11 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) +"atH" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "atK" = ( /turf/open/floor/almayer{ dir = 10; @@ -3608,6 +3623,12 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) +"atS" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "atT" = ( /obj/structure/toilet{ dir = 1 @@ -3689,15 +3710,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"aux" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/mess) "auy" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -3844,6 +3856,17 @@ "avo" = ( /turf/closed/wall/almayer/outer, /area/almayer/powered/agent) +"avp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "avs" = ( /turf/closed/wall/biodome, /area/almayer/powered/agent) @@ -4075,6 +4098,13 @@ icon_state = "rasputin15" }, /area/almayer/powered/agent) +"awb" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/brig/interrogation) "awd" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/pilotbunks) @@ -4218,6 +4248,9 @@ icon_state = "plate" }, /area/almayer/command/cic) +"awE" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "awF" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/numbertwobunks) @@ -4522,10 +4555,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"axT" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) "axV" = ( /obj/structure/machinery/telecomms/server/presets/command, /turf/open/floor/almayer{ @@ -4551,6 +4580,17 @@ icon_state = "tcomms" }, /area/almayer/command/telecomms) +"axY" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "aya" = ( /turf/open/floor/almayer{ dir = 4; @@ -4836,6 +4876,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) +"aza" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "azc" = ( /obj/structure/machinery/computer/telecomms/traffic, /turf/open/floor/almayer{ @@ -4860,6 +4913,12 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering) +"azg" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "azh" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer{ @@ -5231,15 +5290,6 @@ icon_state = "plate" }, /area/almayer/living/offices/flight) -"aAM" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "aAP" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -5267,6 +5317,15 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) +"aAU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "aAZ" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -5515,17 +5574,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"aBK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) -"aBO" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "aBP" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ access_modified = 1; @@ -5536,6 +5584,15 @@ 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/hull/upper/u_m_p) "aBR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ashtray/glass, @@ -5669,36 +5726,32 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"aCr" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "aCt" = ( /obj/structure/bed/sofa/south/white/right, /turf/open/floor/almayer{ icon_state = "sterile_green" }, /area/almayer/medical/medical_science) +"aCu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "aCw" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/medical/morgue) -"aCy" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"aCB" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, +"aCA" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/p_bow) "aCC" = ( /turf/open/floor/almayer{ icon_state = "sterile_green" @@ -5735,6 +5788,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/containment) +"aCX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "aCZ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -5773,16 +5834,6 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering) -"aDf" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "aDh" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -5923,17 +5974,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"aDG" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = 25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "aDH" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -5959,16 +5999,6 @@ icon_state = "silver" }, /area/almayer/command/cic) -"aDM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/lobby) "aDO" = ( /turf/open/floor/almayer{ dir = 8; @@ -6024,21 +6054,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"aDY" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full{ - pixel_y = 8 - }, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/suit/storage/hazardvest/black, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "aEe" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -6083,6 +6098,15 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"aEr" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "aEA" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -6113,14 +6137,6 @@ icon_state = "silver" }, /area/almayer/command/cic) -"aEE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "aEG" = ( /obj/structure/bed/chair{ dir = 8 @@ -6172,22 +6188,6 @@ "aET" = ( /turf/closed/wall/almayer, /area/almayer/living/captain_mess) -"aEU" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_midship_hallway) "aEW" = ( /turf/closed/wall/almayer, /area/almayer/living/numbertwobunks) @@ -6338,20 +6338,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) -"aFx" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart/green, -/obj/item/weapon/dart/green, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "aFy" = ( /obj/structure/bed/chair{ dir = 8 @@ -6392,12 +6378,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) -"aFE" = ( -/obj/structure/toilet{ - dir = 1 +"aFG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "aFI" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -6420,6 +6409,13 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) +"aGa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "aGb" = ( /obj/structure/ladder{ height = 2; @@ -6442,11 +6438,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) -"aGh" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "aGj" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 2; @@ -6457,6 +6448,12 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) +"aGm" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_p) "aGn" = ( /obj/structure/barricade/handrail, /turf/open/floor/almayer{ @@ -6714,19 +6711,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering) -"aHx" = ( -/obj/structure/ladder/fragile_almayer{ - height = 2; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "aHK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -6770,13 +6754,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"aHV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "aHX" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -6812,6 +6789,11 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) +"aIh" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "aIl" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6882,6 +6864,13 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/floor/grass, /area/almayer/living/starboard_garden) +"aIy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_umbilical) "aIB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/floor/grass, @@ -6916,6 +6905,23 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) +"aIN" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ + desc = "A bulletproof cabinet containing communications equipment."; + name = "communications cabinet"; + pixel_y = 24; + req_access = null; + req_one_access_txt = "3" + }, +/obj/item/device/radio/listening_bug/radio_linked/mp{ + pixel_y = 8 + }, +/obj/item/device/radio/listening_bug/radio_linked/mp, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/shipboard/brig/warden_office) "aIP" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -7108,16 +7114,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"aJB" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "aJG" = ( /obj/structure/bed/chair/office/dark{ dir = 8; @@ -7414,6 +7410,36 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) +"aLx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_x = -7; + pixel_y = -26; + req_one_access_txt = "3;22;2;19;7" + }, +/obj/structure/surface/rack, +/obj/item/rappel_harness{ + pixel_y = 8 + }, +/obj/item/rappel_harness, +/obj/item/rappel_harness{ + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/hallways/lower/repair_bay) "aLE" = ( /obj/docking_port/stationary/emergency_response/external/hangar_starboard{ dwidth = 8 @@ -7484,6 +7510,11 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) +"aMf" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_s) "aMg" = ( /obj/structure/sign/safety/intercom{ layer = 2.9; @@ -7621,6 +7652,10 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"aML" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "aMO" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 @@ -7705,18 +7740,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) -"aNz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "aNI" = ( /obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, /turf/open/floor/almayer{ @@ -7810,6 +7833,18 @@ 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/stern_hallway) "aOy" = ( /obj/structure/machinery/light{ dir = 1 @@ -7969,18 +8004,14 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"aPc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) -"aPd" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" +"aPe" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "aPf" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, @@ -8057,6 +8088,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{ @@ -8106,13 +8146,19 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/alpha) -"aPP" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +"aPN" = ( +/obj/structure/ladder{ + height = 2; + id = "ForeStarboardMaint" }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/s_bow) +"aPO" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_a_p) "aPS" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/almayer{ @@ -8319,14 +8365,14 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering) -"aRm" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"aRl" = ( +/obj/structure/machinery/door_control/cl/office/door{ + pixel_y = -20 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/upper/aft_hallway) "aRo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -8351,6 +8397,15 @@ 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/hallways/upper/stern_hallway) "aRt" = ( /turf/open/floor/almayer{ dir = 8; @@ -8457,6 +8512,22 @@ }, /turf/open/floor/plating/almayer, /area/almayer/medical/upper_medical) +"aRL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/lower/port_midship_hallway) "aRP" = ( /turf/open/floor/almayer{ dir = 1; @@ -8516,14 +8587,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"aSg" = ( -/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/aft_hallway) "aSk" = ( /obj/structure/machinery/power/smes/buildable, /obj/structure/machinery/light{ @@ -8533,6 +8596,18 @@ 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 @@ -8605,6 +8680,22 @@ icon_state = "kitchen" }, /area/almayer/living/captain_mess) +"aSz" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Brig Medbay"; + req_access = null; + req_one_access = null; + req_one_access_txt = "20;3"; + closeOtherId = "brigmed" + }, +/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) "aSA" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -8663,24 +8754,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_two) -"aSV" = ( -/obj/structure/sign/poster/blacklight{ - pixel_y = 35 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/reagent_dispensers/beerkeg/alt_dark{ - anchored = 1; - chemical = null; - density = 0; - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "aTa" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -8689,9 +8762,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"aTc" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "aTf" = ( /obj/structure/platform{ dir = 8 @@ -8753,12 +8823,6 @@ icon_state = "green" }, /area/almayer/living/offices) -"aTu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "aTv" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; @@ -9117,13 +9181,6 @@ icon_state = "kitchen" }, /area/almayer/living/captain_mess) -"aVw" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "aVC" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ @@ -9169,6 +9226,13 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) +"aVM" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "aVR" = ( /obj/structure/ladder{ height = 2; @@ -9266,15 +9330,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"aWj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Officer's Bunk" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/bridgebunks) "aWk" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -9358,26 +9413,6 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) -"aWB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/repair_bay) -"aWC" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) "aWD" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -9427,28 +9462,11 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"aWY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) "aWZ" = ( /obj/structure/pipes/standard/simple/visible, /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/airmix) -"aXa" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/lower/port_midship_hallway) "aXb" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -9468,12 +9486,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"aXd" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "aXe" = ( /turf/open/floor/almayer{ dir = 1; @@ -9520,40 +9532,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"aXU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"aXV" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig"; - closeOtherId = "brigmaint_n" - }, -/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) "aYd" = ( /obj/structure/dropship_equipment/medevac_system, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/hallways/hangar) -"aYf" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "aYq" = ( /turf/open/floor/almayer{ dir = 6; @@ -9614,10 +9598,6 @@ /obj/structure/safe/cl_office, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"aYN" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "aYQ" = ( /obj/structure/machinery/bioprinter{ stored_metal = 125 @@ -9635,6 +9615,12 @@ 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/hull/upper/u_a_s) "aZe" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -9666,6 +9652,14 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) +"aZv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/u_m_p) "aZy" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -9693,19 +9687,12 @@ allow_construction = 0 }, /area/almayer/stair_clone/upper) -"aZJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, +"aZI" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/squads/req) +/area/almayer/maint/hull/upper/p_stern) "aZK" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -9797,20 +9784,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_one) -"bak" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "bat" = ( /obj/structure/machinery/door_control{ id = "ARES Mainframe Right"; @@ -9873,6 +9846,14 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"baW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "baX" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 @@ -9884,6 +9865,17 @@ "baZ" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_lobby) +"bba" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "bbd" = ( /obj/structure/machinery/light{ dir = 4 @@ -9944,16 +9936,6 @@ icon_state = "plating" }, /area/almayer/shipboard/starboard_point_defense) -"bbF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "bbS" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) @@ -10151,19 +10133,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_two) -"bcQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "bcR" = ( /obj/structure/sink{ pixel_y = 32 @@ -10193,6 +10162,12 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_two) +"bcW" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/interrogation) "bcZ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/masks, @@ -10496,12 +10471,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_one) -"beA" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_m_s) "beE" = ( /obj/structure/platform{ dir = 1 @@ -10587,6 +10556,31 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) +"bfb" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) +"bfd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + 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/aft_hallway) "bfl" = ( /turf/open/floor/almayer{ dir = 5; @@ -10611,6 +10605,9 @@ icon_state = "redcorner" }, /area/almayer/living/cryo_cells) +"bfs" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/l_f_s) "bft" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -10703,11 +10700,6 @@ icon_state = "redcorner" }, /area/almayer/squads/alpha) -"bfG" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, -/area/almayer/hallways/upper/aft_hallway) "bfJ" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/handheld1, @@ -10727,17 +10719,9 @@ }, /area/almayer/hallways/hangar) "bfO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/photocopier{ - anchored = 0 - }, -/obj/structure/sign/poster/art{ - pixel_y = 32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "bfV" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 @@ -10759,6 +10743,12 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"bgh" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "bgj" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 @@ -10973,12 +10963,6 @@ icon_state = "red" }, /area/almayer/squads/alpha) -"bhe" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "bhf" = ( /obj/structure/machinery/light{ dir = 4 @@ -11023,6 +11007,14 @@ icon_state = "plate" }, /area/almayer/living/chapel) +"bhy" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "bhG" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -11066,24 +11058,35 @@ /turf/open/floor/almayer, /area/almayer/hallways/hangar) "bhV" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/ladder/fragile_almayer{ + height = 2; + id = "kitchen" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 }, -/area/almayer/maint/hull/lower/l_a_s) -"bib" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/access_button/airlock_exterior, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"bic" = ( -/obj/structure/largecrate/machine/bodyscanner, +/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/hull/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/aft_hallway) "biq" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/beaker/large, @@ -11114,13 +11117,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/chemistry) -"biv" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/item/frame/rack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "biy" = ( /obj/structure/pipes/unary/freezer, /obj/structure/machinery/power/apc/almayer{ @@ -11138,6 +11134,22 @@ "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/stern_hallway) +"biC" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/access_button/airlock_exterior, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "biF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/roller/surgical, @@ -11195,11 +11207,10 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/starboard_garden) -"bjh" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +"bjg" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "bjk" = ( /obj/structure/machinery/door_control{ id = "perma_lockdown_2"; @@ -11215,6 +11226,15 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) +"bjp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/mp_bunks) "bjs" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -11222,6 +11242,14 @@ icon_state = "plate" }, /area/almayer/squads/bravo) +"bjt" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "bju" = ( /turf/open/floor/almayer{ dir = 1; @@ -11246,12 +11274,6 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"bjH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "bjQ" = ( /obj/structure/machinery/shower{ dir = 8 @@ -11271,6 +11293,12 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"bkb" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "bkd" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 @@ -11337,14 +11365,6 @@ "bkA" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/chemistry) -"bkB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "bkE" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -11383,6 +11403,17 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) +"bkS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "bkT" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -11469,6 +11500,22 @@ icon_state = "plate" }, /area/almayer/living/offices) +"blq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/cryo_cells) "bls" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -11509,9 +11556,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lockerroom) -"bma" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_stern) "bmb" = ( /turf/open/floor/almayer{ dir = 8; @@ -11674,6 +11718,18 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) +"bmC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-y" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) "bmD" = ( /turf/open/floor/almayer{ dir = 5; @@ -11831,6 +11887,14 @@ 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/hull/upper/u_m_p) "bnH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -11848,12 +11912,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_lobby) -"bnO" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "bnR" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -11930,12 +11988,25 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) +"bom" = ( +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "boq" = ( /obj/structure/bed/chair/comfy/alpha, /turf/open/floor/almayer{ icon_state = "redfull" }, /area/almayer/living/briefing) +"bos" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) "boy" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -11978,6 +12049,11 @@ "boL" = ( /turf/open/floor/almayer, /area/almayer/living/starboard_garden) +"boU" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "boV" = ( /obj/structure/cargo_container/wy/left, /obj/structure/prop/almayer/minigun_crate{ @@ -12161,6 +12237,24 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) +"bqc" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"bqg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "bqm" = ( /obj/structure/closet/boxinggloves, /turf/open/floor/almayer{ @@ -12195,16 +12289,23 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_lobby) +"bqK" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/mp_bunks) "bqL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"bqM" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "bqN" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -12305,6 +12406,12 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) +"brm" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "brn" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, /turf/open/floor/almayer{ @@ -12315,6 +12422,11 @@ /obj/structure/supply_drop/bravo, /turf/open/floor/plating, /area/almayer/squads/req) +"brq" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) "brr" = ( /obj/structure/machinery/cm_vending/clothing/medic/bravo, /turf/open/floor/almayer{ @@ -12360,17 +12472,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"brD" = ( -/obj/structure/closet, -/obj/item/clothing/suit/armor/riot/marine/vintage_riot, -/obj/item/clothing/head/helmet/riot/vintage_riot, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "brH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -12623,9 +12724,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"btL" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_s) "btM" = ( /obj/effect/spawner/random/toolbox, /obj/structure/pipes/vents/scrubber{ @@ -12645,6 +12743,15 @@ "btO" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"btV" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "btX" = ( /obj/structure/machinery/light{ dir = 4 @@ -12672,11 +12779,6 @@ icon_state = "red" }, /area/almayer/living/briefing) -"bua" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) "buc" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -12784,24 +12886,21 @@ }, /area/almayer/squads/bravo) "buY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/stairs{ + dir = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/port_midship_hallway) "bvb" = ( /obj/structure/machinery/light{ dir = 8 @@ -12827,12 +12926,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bvm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) "bvr" = ( /obj/structure/bed/chair/office/dark, /obj/effect/decal/warning_stripes{ @@ -12843,6 +12936,18 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"bvu" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/medical) "bvz" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/closet/secure_closet/surgical{ @@ -12853,6 +12958,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_one) +"bvD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/lower/port_fore_hallway) "bvF" = ( /turf/open/floor/almayer{ dir = 8; @@ -12870,6 +12988,19 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) +"bvL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/starboard_hallway) "bvX" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -12969,6 +13100,32 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"bwv" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"bww" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) +"bwG" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_s) "bwH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/crew/alt{ @@ -12979,12 +13136,21 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"bwM" = ( -/obj/structure/bed/sofa/south/grey/right, +"bwN" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/upper/stern_hallway) +"bwP" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "bwR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/med_data/laptop{ @@ -13058,12 +13224,14 @@ icon_state = "redfull" }, /area/almayer/living/cryo_cells) -"bxw" = ( -/obj/structure/bed/chair{ - dir = 8 +"bxt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "bxA" = ( /obj/structure/machinery/power/apc/almayer/hardened, /obj/effect/decal/warning_stripes{ @@ -13102,30 +13270,50 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) +"bxD" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "bxN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/workshop) -"bxO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" +"bxV" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/upper/aft_hallway) -"bxQ" = ( /turf/open/floor/almayer{ dir = 1; - icon_state = "silvercorner" + icon_state = "blue" }, /area/almayer/hallways/upper/aft_hallway) -"bxZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" +"bxY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 }, -/area/almayer/maint/lower/s_bow) +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "byb" = ( /obj/structure/barricade/handrail/medical, /turf/open/floor/almayer{ @@ -13193,6 +13381,15 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"byt" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "byu" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -13220,23 +13417,15 @@ icon_state = "silver" }, /area/almayer/living/cryo_cells) -"byD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"byZ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"byH" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_y = 16 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + dir = 5; + icon_state = "silver" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/upper/u_m_p) "bzg" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -13337,6 +13526,13 @@ icon_state = "test_floor4" }, /area/almayer/command/securestorage) +"bAy" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "bAH" = ( /obj/structure/largecrate/random/case, /turf/open/floor/almayer{ @@ -13431,6 +13627,12 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"bBc" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "bBd" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -13463,10 +13665,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"bBp" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "bBu" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ @@ -13550,21 +13748,6 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bBO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -9; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "bBQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -13576,6 +13759,18 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"bBR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bBU" = ( +/obj/structure/sign/safety/security{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "bBY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer{ @@ -13613,6 +13808,10 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/briefing) +"bCk" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "bCl" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -13644,6 +13843,18 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"bCv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "bCx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -13695,16 +13906,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/cryo_cells) -"bCI" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_x = 27 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "bCM" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ @@ -13726,6 +13927,12 @@ icon_state = "red" }, /area/almayer/squads/alpha) +"bCR" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "bCS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -13750,6 +13957,11 @@ icon_state = "plate" }, /area/almayer/shipboard/weapon_room) +"bDi" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) "bDn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/closed/wall/almayer, @@ -13765,16 +13977,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) -"bDz" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "bDD" = ( /obj/structure/bed/chair{ dir = 8 @@ -13811,10 +14013,6 @@ icon_state = "plate" }, /area/almayer/living/cryo_cells) -"bDN" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "bDO" = ( /turf/open/floor/almayer{ icon_state = "tcomms" @@ -13949,10 +14147,6 @@ icon_state = "redcorner" }, /area/almayer/living/cryo_cells) -"bEe" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "bEg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -13978,14 +14172,16 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"bEj" = ( -/obj/structure/bed/chair{ - dir = 4 +"bEk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 6; + icon_state = "green" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/hallways/lower/starboard_aft_hallway) "bEl" = ( /obj/structure/machinery/computer/supply_drop_console/limited, /turf/closed/wall/almayer, @@ -14024,16 +14220,6 @@ icon_state = "cargo" }, /area/almayer/squads/req) -"bEt" = ( -/obj/structure/noticeboard{ - pixel_x = -10; - pixel_y = 31 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/squads/req) "bEv" = ( /turf/open/floor/almayer{ dir = 1; @@ -14220,16 +14406,12 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"bEV" = ( +"bET" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "sterile_green_side" }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bEW" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/medical/lockerroom) "bFa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -14238,19 +14420,6 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) -"bFf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "bFj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -14266,6 +14435,21 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) +"bFl" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "bFp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -14309,6 +14493,15 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"bFB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "bFC" = ( /obj/structure/machinery/light{ dir = 1 @@ -14331,6 +14524,14 @@ /obj/docking_port/stationary/marine_dropship/almayer_hangar_1, /turf/open/floor/plating, /area/almayer/hallways/hangar) +"bFX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "bGa" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -14527,6 +14728,13 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"bHg" = ( +/obj/structure/bed, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) "bHk" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 1 @@ -14565,22 +14773,15 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/navigation) +"bHw" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) "bHB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bHC" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "bHD" = ( /obj/structure/ship_ammo/rocket/banshee, /turf/open/floor/almayer{ @@ -14605,13 +14806,6 @@ "bHP" = ( /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) -"bHU" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) "bId" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -14630,6 +14824,11 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bIj" = ( +/turf/open/floor/almayer{ + icon_state = "emeraldcorner" + }, +/area/almayer/hallways/lower/port_midship_hallway) "bIn" = ( /obj/structure/machinery/computer/cameras/almayer_network, /obj/structure/surface/table/almayer, @@ -14733,6 +14932,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) +"bIO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) "bIU" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ @@ -14749,6 +14961,13 @@ icon_state = "orange" }, /area/almayer/squads/bravo) +"bIW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "bJe" = ( /obj/structure/surface/table/reinforced/black, /obj/item/explosive/grenade/high_explosive/training, @@ -14792,12 +15011,6 @@ icon_state = "test_floor4" }, /area/almayer/living/auxiliary_officer_office) -"bJr" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "bJt" = ( /turf/closed/wall/almayer, /area/almayer/living/grunt_rnr) @@ -14836,25 +15049,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"bJK" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"bJN" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) "bJS" = ( /obj/structure/surface/rack, /obj/item/tool/wrench, @@ -14922,13 +15116,14 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"bKi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "silver" +"bKk" = ( +/obj/item/tool/wrench{ + pixel_x = -8; + pixel_y = 10 }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) "bKm" = ( /obj/structure/closet/crate/freezer{ @@ -15014,17 +15209,23 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) -"bKG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +"bKJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/lower/cryo_cells) "bKM" = ( /obj/effect/landmark/start/marine/medic/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) +"bKP" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "bKQ" = ( /obj/structure/bed/chair{ dir = 8 @@ -15039,6 +15240,39 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) +"bLc" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) +"bLf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + 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/stern_hallway) "bLh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -15261,16 +15495,18 @@ icon_state = "green" }, /area/almayer/squads/req) -"bMh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"bMf" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bMi" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - dir = 4; - icon_state = "green" + icon_state = "cargo" }, /area/almayer/hallways/upper/aft_hallway) "bMq" = ( @@ -15340,9 +15576,16 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"bMH" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_p) +"bME" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "bMJ" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/canister/oxygen, @@ -15415,6 +15658,22 @@ 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 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "bNa" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black, @@ -15429,6 +15688,12 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) +"bNc" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/maint/hull/upper/u_a_s) "bNe" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -15519,6 +15784,14 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) +"bNr" = ( +/obj/structure/sign/safety/storage{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "bNs" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -15602,13 +15875,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"bNK" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, +"bNI" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "green" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/hallways/upper/aft_hallway) "bNL" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -15651,11 +15927,15 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"bOb" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"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/aft_hallway) "bOq" = ( /obj/structure/prop/almayer/cannon_cables, /turf/open/floor/almayer{ @@ -15671,23 +15951,21 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) -"bOx" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"bOw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/squads/charlie) -"bOy" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/lower/s_bow) -"bOz" = ( -/obj/structure/surface/table/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"bOx" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/squads/charlie) "bOC" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; @@ -15827,6 +16105,12 @@ icon_state = "emeraldcorner" }, /area/almayer/squads/charlie) +"bPb" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/medical) "bPg" = ( /obj/vehicle/powerloader, /obj/structure/machinery/light{ @@ -16029,25 +16313,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"bQd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"bQr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) "bQt" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -16093,9 +16358,6 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) -"bQF" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) "bQG" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black, @@ -16200,11 +16462,20 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"bRl" = ( +"bRo" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/port_midship_hallway) +"bRt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/starboard_umbilical) "bRP" = ( /obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ @@ -16415,13 +16686,6 @@ }, /turf/open/floor/plating, /area/almayer/powered) -"bTr" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/maint/hull/lower/l_m_s) "bTt" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -16452,6 +16716,14 @@ icon_state = "bluecorner" }, /area/almayer/squads/delta) +"bTz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_umbilical) "bTA" = ( /turf/open/floor/almayer, /area/almayer/squads/delta) @@ -16464,6 +16736,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"bTD" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/upper/aft_hallway) "bTE" = ( /turf/open/floor/almayer{ dir = 4; @@ -16494,12 +16772,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"bTL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "bTM" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -16578,12 +16850,12 @@ icon_state = "plate" }, /area/almayer/living/tankerbunks) -"bTY" = ( -/obj/structure/machinery/light, +"bTW" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/lower/s_bow) "bUa" = ( /obj/structure/closet, /turf/open/floor/almayer{ @@ -16698,21 +16970,17 @@ }, /area/almayer/squads/req) "bUH" = ( -/obj/structure/machinery/door_control/cl/office/door{ - pixel_y = -20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/hallways/upper/aft_hallway) -"bUJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/l_m_p) "bUN" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -16727,6 +16995,11 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) +"bUQ" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "bUT" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 @@ -16760,19 +17033,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"bVk" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "bVn" = ( /obj/structure/machinery/light{ dir = 8 @@ -16797,6 +17057,14 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"bVr" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "bVs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -16845,12 +17113,6 @@ "bVU" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/port_point_defense) -"bVW" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "bWc" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -16887,6 +17149,12 @@ icon_state = "plate" }, /area/almayer/living/starboard_garden) +"bWg" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "bWh" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -16897,12 +17165,6 @@ icon_state = "test_floor4" }, /area/almayer/powered) -"bWm" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "bWn" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -16943,14 +17205,16 @@ }, /area/almayer/living/chapel) "bWD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "bWJ" = ( /obj/structure/machinery/shower{ dir = 4 @@ -16990,6 +17254,14 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"bXh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "bXo" = ( /obj/structure/ladder{ height = 1; @@ -17044,16 +17316,15 @@ icon_state = "green" }, /area/almayer/squads/req) -"bYd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "bYn" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/port) +"bYp" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) "bYq" = ( /obj/structure/cargo_container/wy/left, /turf/open/floor/almayer{ @@ -17107,6 +17378,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"bYW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/panic) "bYY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -17148,6 +17422,18 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) +"bZf" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "bZi" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -17168,18 +17454,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"bZo" = ( +/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/stern_hallway) "bZr" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "plating_striped" }, /area/almayer/squads/req) -"bZu" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "bZw" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/combat_correspondent) @@ -17210,6 +17500,13 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"bZS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "bZU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -17290,6 +17587,19 @@ 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/hull/upper/u_a_s) +"caq" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "car" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -17318,13 +17628,6 @@ icon_state = "test_floor4" }, /area/almayer/living/cryo_cells) -"caL" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "caM" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ @@ -17378,14 +17681,17 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) -"caZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"cbc" = ( +/obj/structure/platform_decoration, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_a_s) "cbg" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; @@ -17424,15 +17730,6 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"cbo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "cbu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 @@ -17447,18 +17744,25 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_medbay) +"cbK" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) +"cbL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "cbM" = ( /obj/structure/closet/crate, /obj/item/clothing/glasses/welding, /obj/item/circuitboard, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"cbO" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "ccb" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer{ @@ -17540,6 +17844,12 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"ccL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) "ccN" = ( /turf/open/floor/almayer{ dir = 4; @@ -17658,32 +17968,12 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha) -"cek" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cep" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "ceu" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "green" }, /area/almayer/living/starboard_garden) -"cez" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "ceC" = ( /obj/structure/prop/almayer/ship_memorial, /turf/open/floor/plating/almayer, @@ -17701,28 +17991,17 @@ "ceE" = ( /turf/closed/wall/almayer, /area/almayer/command/cichallway) -"ceI" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "ceK" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"ceS" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" +"ceY" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "ceZ" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/almayer{ @@ -17740,6 +18019,24 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) +"cfm" = ( +/obj/structure/flora/pottedplant{ + desc = "Life is underwhelming, especially when you're a potted plant."; + icon_state = "pottedplant_22"; + name = "Jerry"; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses/prescription{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "cfo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) @@ -17780,67 +18077,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"cgd" = ( -/obj/item/clothing/under/blackskirt{ - desc = "A stylish skirt, in a business-black and red colour scheme."; - name = "liaison's skirt" - }, -/obj/item/clothing/under/suit_jacket/charcoal{ - desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; - name = "liaison's black suit" - }, -/obj/item/clothing/under/suit_jacket/navy{ - desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; - name = "liaison's navy suit" - }, -/obj/item/clothing/under/suit_jacket/trainee, -/obj/item/clothing/under/liaison_suit/charcoal, -/obj/item/clothing/under/liaison_suit/blazer, -/obj/item/clothing/suit/storage/snow_suit/liaison, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/marine/dress, -/obj/item/clothing/glasses/sunglasses/big, -/obj/item/clothing/accessory/blue, -/obj/item/clothing/accessory/red, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/clothing/accessory/black, -/obj/item/clothing/accessory/green, -/obj/item/clothing/accessory/gold, -/obj/item/clothing/accessory/purple, -/obj/item/clothing/under/liaison_suit/corporate_formal, -/obj/item/clothing/under/liaison_suit/field, -/obj/item/clothing/under/liaison_suit/ivy, -/obj/item/clothing/under/liaison_suit/blue, -/obj/item/clothing/under/liaison_suit/brown, -/obj/item/clothing/under/liaison_suit/black, -/obj/item/clothing/suit/storage/jacket/marine/vest, -/obj/item/clothing/suit/storage/jacket/marine/vest/grey, -/obj/item/clothing/suit/storage/jacket/marine/vest/tan, -/obj/item/clothing/suit/storage/jacket/marine/bomber, -/obj/item/clothing/suit/storage/jacket/marine/bomber/red, -/obj/item/clothing/suit/storage/jacket/marine/bomber/grey, -/obj/item/clothing/suit/storage/jacket/marine/corporate, -/obj/item/clothing/suit/storage/jacket/marine/corporate/black, -/obj/item/clothing/suit/storage/jacket/marine/corporate/blue, -/obj/item/clothing/suit/storage/jacket/marine/corporate/brown, -/obj/item/clothing/suit/storage/jacket/marine/corporate/formal, -/obj/structure/closet/cabinet{ - storage_capacity = 35 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"cgj" = ( -/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/aft_hallway) "cgl" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ @@ -17853,13 +18089,6 @@ "cgo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie_delta_shared) -"cgp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) "cgq" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, /turf/open/floor/almayer{ @@ -17934,11 +18163,15 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) "cgU" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_m_p) "chb" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/sign/safety/maint{ @@ -17967,12 +18200,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie_delta_shared) -"chi" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "chk" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, /turf/open/floor/almayer{ @@ -18014,6 +18241,15 @@ /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{ + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "chL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -18136,13 +18372,16 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha) -"cie" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +"cif" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_umbilical) "cil" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/waterhazard{ @@ -18194,6 +18433,21 @@ icon_state = "test_floor4" }, /area/almayer/powered) +"ciB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "ciD" = ( /obj/structure/platform_decoration{ dir = 1 @@ -18202,31 +18456,21 @@ 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/aft_hallway) "ciN" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"ciO" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_y = 15 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 7; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "ciQ" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -18234,29 +18478,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"ciV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/recharge_station{ - layer = 2.9 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "cjc" = ( /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, @@ -18390,13 +18611,34 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) -"ckq" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +"cke" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"ckh" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/lower/starboard_fore_hallway) +"ckj" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/nanopaste{ + pixel_x = -3; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "ckr" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -18404,9 +18646,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"ckw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_p) "ckK" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -18416,15 +18655,6 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) -"ckO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "ckP" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -18448,22 +18678,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"ckS" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) "ckW" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -18474,6 +18688,15 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"ckZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower/engine_core) "cle" = ( /turf/open/floor/almayer{ dir = 4; @@ -18611,6 +18834,13 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"clD" = ( +/obj/structure/machinery/power/apc/almayer, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) "clE" = ( /obj/structure/machinery/door/airlock/almayer/marine/delta/medic, /turf/open/floor/almayer{ @@ -18689,6 +18919,13 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"clV" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/squads/req) "clW" = ( /obj/structure/machinery/cm_vending/clothing/smartgun/delta, /turf/open/floor/almayer{ @@ -18720,17 +18957,17 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"cmb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +"cme" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/maint/hull/upper/u_f_s) -"cmi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_m_s) "cml" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -18771,6 +19008,9 @@ icon_state = "green" }, /area/almayer/squads/req) +"cmr" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "cmv" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = -30 @@ -18847,6 +19087,29 @@ icon_state = "silver" }, /area/almayer/command/securestorage) +"cmL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cmN" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) +"cmV" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "cna" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -18921,16 +19184,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"cnx" = ( -/obj/structure/sign/safety/maint{ - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "cnE" = ( /obj/structure/machinery/prop/almayer/computer{ dir = 4; @@ -18956,6 +19209,15 @@ icon_state = "test_floor4" }, /area/almayer/command/computerlab) +"cnI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_umbilical) "cnM" = ( /obj/structure/window/reinforced{ dir = 4; @@ -18986,11 +19248,13 @@ }, /area/almayer/living/port_emb) "cnP" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = -26 +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "cnR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -19092,6 +19356,20 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"coo" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "cop" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/tankerbunks) @@ -19142,13 +19420,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"coQ" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) "coT" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -19192,16 +19463,12 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices) -"cpG" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"cpz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_m_s) "cpJ" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -19223,56 +19490,22 @@ /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/squads/req) -"cpU" = ( -/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; - status = 3; - icon_state = "bulb-burned" - }, -/obj/effect/decal/cleanable/blood, -/obj/item/prop{ - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - desc = "A blood bag with a hole in it. The rats must have gotten to it first." - }, -/obj/item/prop{ - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - desc = "A blood bag with a hole in it. The rats must have gotten to it first." - }, -/obj/item/prop{ - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - desc = "A blood bag with a hole in it. The rats must have gotten to it first." - }, -/obj/item/prop{ - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - name = "circuit board"; - desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; - layer = 2.78; - pixel_y = 10; - pixel_x = 8 +"cpQ" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/obj/item/prop{ - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - name = "circuit board"; - desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; - layer = 2.79; - pixel_y = 7; - pixel_x = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"cqd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer{ - icon_state = "sterile_green_corner" + dir = 1; + icon_state = "orangecorner" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/hallways/lower/starboard_umbilical) "cqm" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/folder/white{ @@ -19286,17 +19519,23 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"cqp" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "cqz" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"cqB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"cqH" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) "cqJ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -19323,74 +19562,67 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"cqX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "cqY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigar/tarbacktube, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"crh" = ( -/obj/structure/machinery/light{ - dir = 1 +"cqZ" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 9; + dir = 1; icon_state = "red" }, -/area/almayer/lifeboat_pumps/south1) -"crp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ +/area/almayer/shipboard/brig/mp_bunks) +"crc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8; - icon_state = "red" + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, -/area/almayer/shipboard/brig/chief_mp_office) -"crr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"crh" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"crG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/tool, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 9; + icon_state = "red" }, -/area/almayer/maint/hull/upper/u_a_p) -"crX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/area/almayer/lifeboat_pumps/south1) +"cri" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/upper/u_f_s) +"crD" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/squads/req) +"csd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "csI" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"csT" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "csZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -19416,10 +19648,29 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/bravo) +"cth" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"ctp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "cts" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"ctw" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_umbilical) "ctx" = ( /obj/structure/bed{ icon_state = "abed" @@ -19449,6 +19700,11 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"ctQ" = ( +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "ctT" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -19461,60 +19717,15 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cryo) -"ctV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"ctW" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"ctX" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank{ - anchored = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/workshop/hangar) -"cua" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"cuk" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +"cui" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/upper/stern_hallway) "cuq" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, @@ -19540,6 +19751,19 @@ "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/aft_hallway) "cuN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -19560,23 +19784,48 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) -"cvp" = ( -/obj/structure/girder, +"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/hull/upper/u_m_s) +"cvb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"cvt" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +/area/almayer/squads/req) +"cvg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"cvi" = ( +/obj/structure/machinery/vending/hydroseeds, /turf/open/floor/almayer{ - allow_construction = 0; icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) +"cvx" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/cryo_cells) +"cvE" = ( +/obj/effect/decal/cleanable/vomit, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/port) "cvH" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -19589,12 +19838,10 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"cvL" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) +"cvI" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "cvZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -19604,13 +19851,16 @@ icon_state = "silver" }, /area/almayer/command/cic) -"cwe" = ( -/obj/structure/sign/safety/distribution_pipes{ +"cwi" = ( +/obj/structure/sign/safety/rewire{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "cwo" = ( /obj/structure/largecrate/random/mini/chest{ pixel_x = 4 @@ -19621,28 +19871,14 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"cwy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"cwC" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"cwL" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, /turf/open/floor/almayer{ - icon_state = "greencorner" + icon_state = "orange" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/stern_hallway) "cwS" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer/no_build{ @@ -19668,20 +19904,19 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"cxi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "cxk" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"cxA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +"cxF" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "test_floor5" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/hallways/lower/port_midship_hallway) "cyo" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ @@ -19689,6 +19924,39 @@ icon_state = "green" }, /area/almayer/squads/req) +"cyp" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/plasticflaps, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) +"cyv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) +"cyL" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) +"cyR" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "cyU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -19703,16 +19971,59 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"czH" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/security{ - pixel_y = -32 +"czm" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Warden's Office"; + closeOtherId = "brigwarden" }, -/obj/structure/sign/safety/restrictedarea{ +/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) +"czJ" = ( +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 15; - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/almayer, +/obj/structure/sign/safety/intercom{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"czN" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"czR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) "cAm" = ( /obj/structure/bed/chair/office/light{ @@ -19731,6 +20042,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) +"cAz" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "cAF" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -19743,19 +20063,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"cAY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) "cBb" = ( /obj/structure/machinery/light{ dir = 1 @@ -19806,12 +20113,6 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"cBq" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "cBs" = ( /obj/structure/bed/chair, /obj/effect/decal/warning_stripes{ @@ -19828,79 +20129,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"cBz" = ( +"cBC" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"cBE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"cBQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"cBR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"cBZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = 6; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_x = -6; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "courtyard window"; - name = "Courtyard Window Shutters"; - pixel_x = -6; - pixel_y = 9; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "Cell Privacy Shutters"; - name = "Cell Privacy Shutters"; - pixel_x = 6; - pixel_y = 9; - req_access_txt = "3" + dir = 5; + icon_state = "green" }, -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/hallways/lower/port_aft_hallway) +"cBV" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + dir = 4; + icon_state = "greencorner" }, -/area/almayer/shipboard/brig/chief_mp_office) +/area/almayer/hallways/lower/port_fore_hallway) "cCa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -19924,15 +20173,22 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"cCG" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"cDd" = ( +"cCL" = ( +/obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"cDb" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "cDn" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/glass{ @@ -19960,6 +20216,15 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) +"cDx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_p) "cDC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20013,6 +20278,21 @@ icon_state = "plating" }, /area/almayer/command/cic) +"cEA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "cEC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20035,35 +20315,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie) -"cEL" = ( -/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/aft_hallway) -"cER" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"cET" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"cFb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "cFh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -20092,23 +20343,18 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"cFL" = ( -/obj/structure/machinery/light{ - dir = 1 +"cFH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cFN" = ( -/obj/structure/machinery/cm_vending/gear/vehicle_crew, /turf/open/floor/almayer{ - icon_state = "cargo" + dir = 8; + icon_state = "blue" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/upper/aft_hallway) "cFP" = ( /obj/structure/sign/safety/outpatient{ pixel_x = -17; @@ -20118,47 +20364,34 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"cGi" = ( -/obj/structure/machinery/light{ - dir = 4 +"cGd" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"cGA" = ( +/obj/structure/sign/poster{ + pixel_y = -32 }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"cGB" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/almayer{ dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cGk" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) -"cGC" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "orange" }, +/area/almayer/maint/hull/lower/l_m_s) +"cGR" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"cGP" = ( -/obj/item/toy/deck{ - pixel_y = 12 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/obj/structure/surface/table/woodentable/poor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/upper/u_m_s) "cGV" = ( /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) +"cGY" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "cHc" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/sign/safety/ladder{ @@ -20181,20 +20414,15 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"cHp" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 +"cHn" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/upper/u_m_p) +"cHp" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/execution_storage) "cHu" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell/cl) @@ -20225,26 +20453,14 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"cIl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) -"cIq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/deck, +"cIm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 5; - icon_state = "red" + dir = 1; + icon_state = "greencorner" }, -/area/almayer/living/offices/flight) +/area/almayer/hallways/lower/port_fore_hallway) "cIr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20266,6 +20482,11 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) +"cIO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "cIW" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Engineering Engine Monitoring" @@ -20274,17 +20495,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) -"cIZ" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." - }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2, -/obj/item/reagent_container/food/snacks/mre_pack/xmas1, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "cJh" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -20294,6 +20504,20 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) +"cJm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) +"cJs" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "cJu" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -20306,17 +20530,19 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"cJz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) "cJE" = ( /obj/structure/sign/prop2, /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) +"cJK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "cJM" = ( /obj/structure/machinery/door_display/research_cell{ dir = 8; @@ -20359,18 +20585,46 @@ 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/aft_hallway) +"cKm" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -8 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 12 + }, +/obj/item/clothing/head/militia/bucket{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "cKL" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering/port) -"cLk" = ( -/obj/structure/largecrate/random/case, +"cKW" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "blue" }, -/area/almayer/maint/lower/s_bow) +/area/almayer/hallways/upper/aft_hallway) "cLl" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -20401,23 +20655,6 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) -"cLt" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"cLx" = ( -/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/hull/upper/u_m_s) "cLA" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -20442,36 +20679,6 @@ icon_state = "cargo" }, /area/almayer/living/bridgebunks) -"cLT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"cMb" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"cMk" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "cMl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20517,17 +20724,12 @@ icon_state = "orange" }, /area/almayer/living/briefing) -"cNn" = ( -/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, +"cNm" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/hallways/lower/port_aft_hallway) "cNH" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/containment{ id = "Containment Cell 4"; @@ -20543,22 +20745,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/containment/cell/cl) -"cNI" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"cNJ" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_p) "cNK" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -20591,23 +20777,26 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"cOu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"cOh" = ( +/obj/item/stool{ + pixel_x = 15; + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"cOy" = ( -/obj/item/trash/chips, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"cOC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"cOo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, +/area/almayer/maint/hull/lower/l_a_p) +"cOt" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/maint/hull/lower/l_f_p) "cOK" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -20621,6 +20810,57 @@ icon_state = "outerhull_dir" }, /area/almayer/engineering/upper_engineering/starboard) +"cOY" = ( +/obj/item/clothing/under/blackskirt{ + desc = "A stylish skirt, in a business-black and red colour scheme."; + name = "liaison's skirt" + }, +/obj/item/clothing/under/suit_jacket/charcoal{ + desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; + name = "liaison's black suit" + }, +/obj/item/clothing/under/suit_jacket/navy{ + desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; + name = "liaison's navy suit" + }, +/obj/item/clothing/under/suit_jacket/trainee, +/obj/item/clothing/under/liaison_suit/charcoal, +/obj/item/clothing/under/liaison_suit/blazer, +/obj/item/clothing/suit/storage/snow_suit/liaison, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/marine/dress, +/obj/item/clothing/glasses/sunglasses/big, +/obj/item/clothing/accessory/blue, +/obj/item/clothing/accessory/red, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/clothing/accessory/black, +/obj/item/clothing/accessory/green, +/obj/item/clothing/accessory/gold, +/obj/item/clothing/accessory/purple, +/obj/item/clothing/under/liaison_suit/corporate_formal, +/obj/item/clothing/under/liaison_suit/field, +/obj/item/clothing/under/liaison_suit/ivy, +/obj/item/clothing/under/liaison_suit/blue, +/obj/item/clothing/under/liaison_suit/brown, +/obj/item/clothing/under/liaison_suit/black, +/obj/item/clothing/suit/storage/jacket/marine/vest, +/obj/item/clothing/suit/storage/jacket/marine/vest/grey, +/obj/item/clothing/suit/storage/jacket/marine/vest/tan, +/obj/item/clothing/suit/storage/jacket/marine/bomber, +/obj/item/clothing/suit/storage/jacket/marine/bomber/red, +/obj/item/clothing/suit/storage/jacket/marine/bomber/grey, +/obj/item/clothing/suit/storage/jacket/marine/corporate, +/obj/item/clothing/suit/storage/jacket/marine/corporate/black, +/obj/item/clothing/suit/storage/jacket/marine/corporate/blue, +/obj/item/clothing/suit/storage/jacket/marine/corporate/brown, +/obj/item/clothing/suit/storage/jacket/marine/corporate/formal, +/obj/structure/closet/cabinet{ + storage_capacity = 35 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "cPg" = ( /obj/structure/sign/safety/north{ pixel_x = 32; @@ -20635,14 +20875,10 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"cPy" = ( -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) +"cPj" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/p_bow) "cPK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -20655,15 +20891,23 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"cPV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"cPP" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = -30 + }, +/obj/structure/sign/poster/hunk{ + pixel_x = -25; + pixel_y = 10 + }, +/obj/item/trash/buritto, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/lower/l_m_s) "cQc" = ( /turf/open/floor/almayer{ dir = 1; @@ -20702,11 +20946,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/lobby) -"cQO" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/hallways/upper/aft_hallway) "cQW" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -20763,15 +21002,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) -"cSi" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "cSk" = ( /obj/structure/machinery/door/window/southleft, /turf/open/floor/almayer{ @@ -20779,18 +21009,6 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"cSl" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/rods/plasteel{ - amount = 36 - }, -/obj/item/stack/catwalk{ - amount = 60; - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "cSm" = ( /obj/structure/sign/safety/ladder{ pixel_x = 8; @@ -20812,6 +21030,30 @@ icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) +"cSH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/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/aft_hallway) +"cSP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "cSQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20829,18 +21071,6 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"cTb" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"cTc" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "cTf" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -20850,12 +21080,6 @@ icon_state = "cargo" }, /area/almayer/squads/req) -"cTm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/hallways/lower/repair_bay) "cTC" = ( /obj/structure/machinery/vending/walkman, /turf/open/floor/almayer{ @@ -20863,24 +21087,59 @@ icon_state = "green" }, /area/almayer/living/offices) -"cUf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"cTM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) +"cTX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) +"cUl" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "cVb" = ( /obj/structure/machinery/sentry_holder/almayer, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) +"cVf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "cVq" = ( /obj/structure/machinery/power/apc/almayer/hardened{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) +"cVt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "cVw" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -20901,12 +21160,47 @@ icon_state = "plate" }, /area/almayer/living/gym) +"cVT" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "cVZ" = ( -/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"cWb" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/lower/stern) +"cWm" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/structure/sign/safety/med_life_support{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + 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/hull/upper/u_a_p) "cWr" = ( /obj/structure/machinery/photocopier{ density = 0; @@ -20945,30 +21239,6 @@ icon_state = "green" }, /area/almayer/living/offices) -"cWs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"cWt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/panic) "cWv" = ( /turf/open/floor/almayer{ dir = 8; @@ -20994,78 +21264,17 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"cWF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_p) -"cWP" = ( -/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 +"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/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"cXh" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_m_s) "cXi" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -21081,12 +21290,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"cXy" = ( -/obj/structure/closet/emcloset, +"cXm" = ( +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_m_s) +"cXv" = ( +/obj/structure/bed/chair/bolted{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/interrogation) "cXC" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -21126,18 +21344,26 @@ }, /area/almayer/medical/upper_medical) "cXX" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "cXY" = ( /obj/item/stack/catwalk, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"cYo" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "cYu" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -21170,6 +21396,9 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) +"cZe" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_s) "cZh" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -21179,36 +21408,36 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"cZj" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, +"cZp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"cZB" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ - icon_state = "red" + icon_state = "test_floor4" }, -/area/almayer/shipboard/brig/main_office) -"cZo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/hallways/lower/starboard_umbilical) +"cZI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"cZw" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"cZV" = ( +/area/almayer/maint/hull/lower/l_m_p) +"cZO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"cZV" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigarettes/wypacket, /obj/item/tool/lighter, @@ -21243,31 +21472,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"cZX" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_umbilical) -"dan" = ( -/obj/structure/ladder{ - height = 2; - id = "cicladder4" - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) "daz" = ( /turf/closed/wall/almayer/white/hull, /area/almayer/command/airoom) -"daA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"daF" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "dbc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -21291,13 +21504,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"dbj" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "dbn" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c200{ @@ -21357,18 +21563,12 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"dbH" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"dbX" = ( /turf/open/floor/almayer{ - icon_state = "mono" + dir = 4; + icon_state = "orange" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/upper/mess) "dcd" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -21382,32 +21582,38 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"dco" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/chief_mp_office) "dcp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) +"dcx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) "dcy" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "red" }, /area/almayer/shipboard/brig/perma) -"dcS" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +"dcT" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/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_m_p) +"dda" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) "ddf" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/almayer{ @@ -21420,6 +21626,12 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"ddp" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "ddw" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/sign/safety/terminal{ @@ -21429,31 +21641,39 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) +"ddx" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "ddz" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"ddC" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +"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/hull/upper/u_a_p) +"ddL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "ddM" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop/hangar) -"ddN" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) "deg" = ( /obj/structure/platform_decoration{ dir = 1 @@ -21462,26 +21682,23 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"dej" = ( -/obj/structure/machinery/door_control{ - id = "OuterShutter"; - name = "Outer Shutter"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;3" +"deq" = ( +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "OfficeSafeRoom"; - name = "Office Safe Room"; - pixel_x = 5; - pixel_y = 5; - req_one_access_txt = "1;3" +/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/shipboard/panic) +/area/almayer/maint/upper/u_m_s) "deD" = ( /obj/structure/machinery/prop/almayer/CICmap{ pixel_x = -5 @@ -21489,6 +21706,10 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) +"deF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "deT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -21501,12 +21722,6 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) -"deW" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "dfa" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, @@ -21534,46 +21749,23 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"dfv" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." - }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "dfC" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"dfE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10"; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"dfO" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - dir = 8 +"dfU" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/shipboard/brig/surgery) +/turf/open/floor/plating, +/area/almayer/shipboard/brig/starboard_hallway) "dgg" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -21608,17 +21800,12 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"dgL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"dgP" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 1; + icon_state = "green" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/upper/aft_hallway) "dha" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -21636,11 +21823,6 @@ icon_state = "plating_striped" }, /area/almayer/shipboard/brig/execution) -"dhe" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "dho" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -21654,15 +21836,19 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"dhB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"dhp" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/disposalpipe/junction{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/upper/u_a_p) +"dhQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/port_umbilical) "dhR" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -21673,15 +21859,19 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"diu" = ( +"div" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" + }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_midship_hallway) -"diy" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_stern) +/area/almayer/hallways/lower/starboard_midship_hallway) "diz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ id_tag = "Boat1-D4"; @@ -21692,12 +21882,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/port) -"diG" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) "diJ" = ( /obj/structure/window/reinforced{ dir = 8; @@ -21711,18 +21895,13 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) -"diP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - name = "\improper Brig Lobby"; - closeOtherId = "brignorth" - }, +"djd" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 6; + icon_state = "blue" }, -/area/almayer/shipboard/brig/lobby) +/area/almayer/hallways/upper/aft_hallway) "djQ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -21742,23 +21921,21 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) -"djW" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "dka" = ( /obj/structure/machinery/optable, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_four) +"dkj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/alamo{ + layer = 2.9 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/offices/flight) "dkq" = ( /obj/structure/machinery/door_control{ id = "hangarentrancenorth"; @@ -21776,10 +21953,36 @@ icon_state = "red" }, /area/almayer/living/briefing) -"dkv" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"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 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "dkO" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down2"; @@ -21796,16 +21999,12 @@ allow_construction = 0 }, /area/almayer/stair_clone/upper) -"dkR" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, +"dkP" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/hallways/lower/starboard_midship_hallway) "dkX" = ( /obj/structure/bed/chair/comfy/delta, /obj/effect/decal/cleanable/dirt, @@ -21813,31 +22012,18 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"dle" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "dll" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "orangefull" }, /area/almayer/living/briefing) -"dlt" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"dlW" = ( -/obj/structure/bed/sofa/south/grey{ - pixel_y = 12 +"dlT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "mono" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/upper/aft_hallway) "dmg" = ( /obj/structure/machinery/vending/coffee, /obj/structure/sign/safety/coffee{ @@ -21855,21 +22041,6 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"dmz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "dmA" = ( /turf/open/floor/almayer, /area/almayer/living/synthcloset) @@ -21881,6 +22052,17 @@ icon_state = "cargo" }, /area/almayer/squads/req) +"dmF" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/squads/req) "dmR" = ( /obj/effect/glowshroom, /obj/effect/glowshroom{ @@ -21918,17 +22100,12 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"dnh" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"dni" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) "dnm" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/intelligence_officer, @@ -21963,6 +22140,13 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) +"dnP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "dnS" = ( /obj/structure/safe, /turf/open/floor/almayer{ @@ -21970,13 +22154,19 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"dnW" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/structure/surface/rack, +"dnZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "plating_striped" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/maint/hull/lower/l_a_p) "dof" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ name = "\improper Upper Engineering" @@ -21988,14 +22178,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering) -"doj" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/shipboard/brig/surgery) "doJ" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -22006,12 +22188,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"doM" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "doP" = ( /obj/structure/disposaloutlet{ density = 0; @@ -22033,12 +22209,6 @@ /obj/structure/surface/rack, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"doX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "dpo" = ( /obj/structure/machinery/light{ dir = 1 @@ -22054,20 +22224,27 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) -"dpD" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"dpM" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 +"dpA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/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/stern_hallway) "dpO" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; @@ -22078,15 +22255,12 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/delta) -"dpP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +"dpS" = ( /turf/open/floor/almayer{ dir = 4; - icon_state = "blue" + icon_state = "bluecorner" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/upper/aft_hallway) "dqb" = ( /obj/structure/sign/safety/security{ pixel_x = -16 @@ -22131,9 +22305,6 @@ icon_state = "test_floor4" }, /area/almayer/living/offices) -"dqZ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/chief_mp_office) "drj" = ( /obj/structure/window/reinforced{ dir = 4; @@ -22154,18 +22325,16 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) -"drQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"dro" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/lower/l_m_s) "drT" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -22186,20 +22355,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) -"dsp" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = -18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"dsq" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "dsA" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/almayer{ @@ -22207,6 +22362,11 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/execution) +"dsY" = ( +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "dtH" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -22295,18 +22455,14 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"duP" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +"duR" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/area/almayer/engineering/lower/engine_core) +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "duT" = ( /obj/structure/bed, /obj/structure/machinery/flasher{ @@ -22327,20 +22483,6 @@ icon_state = "plate" }, /area/almayer/squads/alpha) -"duX" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) "dvg" = ( /obj/structure/reagent_dispensers/fueltank/custom, /obj/structure/sign/safety/chem_lab{ @@ -22351,14 +22493,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/chemistry) -"dvi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "dvl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -22378,60 +22512,31 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) -"dvx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/u_m_p) "dvD" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"dvH" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dvK" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/maint/hull/lower/l_f_s) +"dvZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"dvN" = ( -/obj/structure/machinery/vending/coffee, -/obj/item/toy/bikehorn/rubberducky{ - desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; - name = "Quackers"; - pixel_x = 5; - pixel_y = 17 +/area/almayer/maint/upper/mess) +"dwj" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "dwl" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/living/briefing) -"dwn" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "dwr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/centrifuge{ @@ -22459,20 +22564,15 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) -"dwU" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"dwJ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/maint/hull/lower/l_m_s) -"dwX" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 6; + icon_state = "red" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/upper/stern_hallway) "dxu" = ( /obj/structure/sink{ dir = 1; @@ -22498,16 +22598,17 @@ allow_construction = 0 }, /area/almayer/stair_clone/upper) -"dxH" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +"dxJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/port_fore_hallway) "dxK" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -22576,6 +22677,15 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) +"dyq" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_umbilical) "dyx" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 2; @@ -22593,10 +22703,9 @@ icon_state = "plating" }, /area/almayer/squads/req) -"dyG" = ( +"dyJ" = ( /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + icon_state = "plate" }, /area/almayer/hallways/upper/aft_hallway) "dyK" = ( @@ -22617,64 +22726,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"dzS" = ( -/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/hull/upper/u_m_s) -"dzU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) -"dzV" = ( -/obj/structure/machinery/light, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +"dzX" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"dAn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +/area/almayer/maint/hull/lower/l_a_p) +"dAm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "dAq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -22687,6 +22752,24 @@ 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/hallways/upper/stern_hallway) +"dAA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "dAQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -22709,6 +22792,20 @@ icon_state = "plate" }, /area/almayer/command/cic) +"dBg" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_midship_hallway) "dBj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -22773,13 +22870,21 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_one) -"dBQ" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"dBR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "dBS" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -22790,23 +22895,25 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"dBW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"dCb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/hallways/lower/repair_bay) -"dCb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "silver" }, -/area/almayer/shipboard/panic) +/area/almayer/hallways/upper/aft_hallway) "dCe" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -22823,15 +22930,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cells) -"dCf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "dCr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -22853,6 +22951,13 @@ icon_state = "plate" }, /area/almayer/command/cichallway) +"dCz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "dCD" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 32 @@ -22870,17 +22975,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"dDd" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"dDo" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/effect/step_trigger/clone_cleaner, +"dCM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/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/aft_hallway) "dDp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -22904,6 +23021,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"dDJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "dDL" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/research/main_terminal{ @@ -22930,24 +23053,12 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"dDQ" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/tool/shovel/snow, +"dDT" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) -"dDR" = ( -/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_m_s) +/area/almayer/maint/hull/lower/stern) "dEm" = ( /obj/structure/machinery/power/apc/almayer, /obj/effect/decal/warning_stripes{ @@ -22969,6 +23080,16 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"dEo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) +"dEp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) "dEt" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -22995,6 +23116,23 @@ icon_state = "cargo" }, /area/almayer/lifeboat_pumps/north2) +"dEK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"dEL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "dEQ" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/tabasco, @@ -23002,12 +23140,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"dER" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "dEX" = ( /obj/structure/closet/secure_closet/guncabinet/riot_control, /obj/item/weapon/shield/riot, @@ -23018,58 +23150,62 @@ }, /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/aft_hallway) "dFk" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "redcorner" }, /area/almayer/command/lifeboat) -"dFr" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "dFF" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"dFH" = ( +"dFL" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) +"dFM" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/bed/chair/bolted, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/brig/perma) +/area/almayer/hallways/lower/vehiclehangar) "dFR" = ( /turf/open/floor/almayer{ dir = 9; icon_state = "silver" }, /area/almayer/command/cichallway) -"dFU" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/main_office) "dFW" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/area/almayer/maint/hull/lower/l_f_p) +"dGg" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/u_m_s) "dGl" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; @@ -23107,6 +23243,19 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"dGP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_s) "dGU" = ( /obj/structure/sign/poster/propaganda{ pixel_x = -27 @@ -23148,13 +23297,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"dHS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) "dHV" = ( /obj/structure/machinery/light{ dir = 1 @@ -23189,15 +23331,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"dIs" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) "dID" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -23229,29 +23362,75 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) -"dJm" = ( -/obj/structure/largecrate/random/barrel/blue, +"dJe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + pixel_y = 10 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) -"dJs" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +/area/almayer/maint/hull/upper/u_a_p) +"dJy" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"dJB" = ( +/obj/structure/sign/safety/rewire{ + pixel_y = 32 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/structure/window/reinforced{ dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 }, /turf/open/floor/almayer{ - icon_state = "redfull" + dir = 5; + icon_state = "red" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/shipboard/brig/mp_bunks) "dJF" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/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/hallways/upper/stern_hallway) +"dJG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/lower/starboard_aft_hallway) "dJI" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 4 @@ -23269,18 +23448,12 @@ dir = 4 }, /area/almayer/medical/containment/cell/cl) -"dKq" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, +"dKD" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "silvercorner" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/upper/aft_hallway) "dKK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -23295,29 +23468,26 @@ /turf/closed/wall/almayer/outer, /area/almayer/engineering/airmix) "dKO" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = 25; + req_one_access_txt = "3" }, -/area/almayer/hallways/lower/port_midship_hallway) -"dKS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_umbilical) -"dLb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "plate" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/shipboard/panic) +"dKS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "dLc" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -23348,27 +23518,6 @@ icon_state = "plating_striped" }, /area/almayer/shipboard/sea_office) -"dLx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/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/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "dLz" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ @@ -23400,6 +23549,13 @@ dir = 8 }, /area/almayer/medical/containment/cell) +"dNm" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/medical) "dNq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -23422,21 +23578,6 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"dNw" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) -"dNy" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) "dNM" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/tabasco{ @@ -23447,6 +23588,13 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"dNW" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "dNZ" = ( /obj/structure/machinery/light{ dir = 1 @@ -23468,6 +23616,15 @@ icon_state = "cargo" }, /area/almayer/engineering/lower/workshop/hangar) +"dOf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "dOl" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigar, @@ -23478,37 +23635,53 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"dOr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, +"dOG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"dOX" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 +/area/almayer/hallways/lower/port_midship_hallway) +"dON" = ( +/obj/item/stack/cable_coil{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/trash/pistachios, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/lower/repair_bay) +"dOW" = ( +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) +"dPd" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 10 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"dPf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" +/area/almayer/maint/hull/upper/u_f_p) +"dPk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/disposalpipe/segment, +/area/almayer/hallways/lower/starboard_umbilical) +"dPl" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "red" }, -/area/almayer/living/cryo_cells) +/area/almayer/maint/hull/upper/u_a_p) "dPm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -23517,6 +23690,14 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"dPq" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "dPC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -23533,16 +23714,11 @@ }, /area/almayer/engineering/lower/engine_core) "dPO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "dPQ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen, @@ -23596,14 +23772,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"dQv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/shipboard/brig/surgery) "dQA" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 @@ -23613,13 +23781,12 @@ icon_state = "orangecorner" }, /area/almayer/engineering/lower) -"dRf" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +"dQV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "dRh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -23630,12 +23797,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"dRm" = ( +"dRo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/upper/aft_hallway) "dRs" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ @@ -23651,20 +23825,6 @@ icon_state = "red" }, /area/almayer/squads/alpha) -"dRy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "dRD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/security{ @@ -23677,20 +23837,6 @@ icon_state = "test_floor4" }, /area/almayer/living/offices/flight) -"dRE" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"dRN" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "dRP" = ( /obj/structure/bed/chair/comfy/orange, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -23708,24 +23854,18 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"dRV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +"dSm" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/area/almayer/hallways/lower/port_umbilical) -"dSg" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/lower/l_m_p) "dSp" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" @@ -23736,29 +23876,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"dSC" = ( -/obj/structure/largecrate/random/secure, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"dSI" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "dSJ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -23781,19 +23898,16 @@ icon_state = "rasputin3" }, /area/almayer/powered/agent) -"dTl" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +"dTd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "dTn" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -23824,15 +23938,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"dUA" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "dUE" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -23898,6 +24003,25 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"dVE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) +"dVH" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "dVO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -23907,39 +24031,59 @@ icon_state = "plate" }, /area/almayer/living/offices) +"dVR" = ( +/obj/structure/ladder{ + height = 2; + id = "AftPortMaint" + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"dWc" = ( +/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/maint/hull/upper/u_f_p) "dWg" = ( /obj/effect/landmark/start/cargo, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"dWk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"dWw" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "bluecorner" }, -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" +/area/almayer/living/basketball) +"dWA" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"dWJ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/lower/repair_bay) -"dWw" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" + icon_state = "plate" }, -/area/almayer/living/basketball) +/area/almayer/maint/hull/lower/l_f_s) "dWX" = ( /obj/structure/machinery/light{ dir = 8 @@ -23948,18 +24092,12 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"dXc" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, +"dXb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/lower/cryo_cells) "dXd" = ( /obj/item/storage/fancy/cigarettes/kpack, /obj/structure/surface/rack, @@ -23971,9 +24109,10 @@ }, /area/almayer/engineering/laundry) "dXm" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/medical) "dXo" = ( /obj/structure/surface/table/almayer, /obj/item/device/taperecorder, @@ -23999,6 +24138,14 @@ icon_state = "plate" }, /area/almayer/squads/req) +"dXH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) "dXI" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Exterior Airlock"; @@ -24008,17 +24155,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/stern_point_defense) -"dXU" = ( -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "dXV" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -24038,15 +24174,19 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) -"dYa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"dYb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"dYc" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "dYu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -24064,13 +24204,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"dYM" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "dYR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder{ @@ -24078,6 +24211,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) +"dYU" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8; + plane = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) "dYX" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo{ dir = 1 @@ -24108,23 +24265,28 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"dZT" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"dZP" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" }, -/obj/structure/disposalpipe/segment, +/area/almayer/hallways/upper/aft_hallway) +"dZR" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 1; + icon_state = "orange" }, -/area/almayer/maint/hull/lower/l_m_s) -"ead" = ( -/obj/structure/pipes/vents/pump, +/area/almayer/hallways/upper/stern_hallway) +"dZZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_f_p) "eaf" = ( /obj/structure/machinery/cm_vending/clothing/military_police{ density = 0; @@ -24155,6 +24317,12 @@ 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_m_p) "eas" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24171,10 +24339,33 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) +"eaz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "ebd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"ebf" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." + }, +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "ebn" = ( /obj/structure/sign/safety/airlock{ pixel_x = 15; @@ -24193,52 +24384,35 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"ebv" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/storage/firstaid/regular, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) -"ebz" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"ebL" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, +"ebI" = ( +/obj/item/clothing/shoes/red, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/upper/u_m_p) "ebN" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/command/airoom) -"ecf" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" +"ebV" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) +"ecb" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"ecj" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/maint/hull/lower/l_m_s) -"ecm" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/maint/hull/lower/l_m_p) "eco" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17; @@ -24252,6 +24426,24 @@ "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/aft_hallway) +"ecS" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "ecZ" = ( /obj/structure/ladder{ height = 1; @@ -24261,24 +24453,12 @@ icon_state = "plate" }, /area/almayer/shipboard/navigation) -"ede" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "edn" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/poster/ad{ - pixel_x = 30 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +/area/almayer/hallways/lower/starboard_aft_hallway) "edo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -24291,15 +24471,49 @@ icon_state = "sterile_green" }, /area/almayer/medical/medical_science) -"edx" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 +"edG" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"edJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = -12 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 17 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/shipboard/brig/execution_storage) +"edV" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) +"edW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "\improper Brig Cells" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/starboard_hallway) "eed" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -24361,50 +24575,44 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"eeH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"eeL" = ( -/obj/structure/flora/pottedplant{ - desc = "Life is underwhelming, especially when you're a potted plant."; - icon_state = "pottedplant_22"; - name = "Jerry"; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses/prescription{ - pixel_x = -3; - pixel_y = -3 +"eeA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/machinery/light/small{ - dir = 4 +/area/almayer/maint/hull/upper/s_bow) +"eeC" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"efd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, +/area/almayer/maint/hull/lower/stern) +"eeR" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"efh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/lower/l_a_p) "efj" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "red" }, /area/almayer/hallways/upper/port) +"efk" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "efC" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -24414,12 +24622,11 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"efE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) +"efJ" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "efK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24431,11 +24638,20 @@ icon_state = "plate" }, /area/almayer/squads/alpha) -"efN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +"efP" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "efT" = ( /obj/structure/machinery/atm{ pixel_y = 32 @@ -24464,16 +24680,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) -"egn" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "egp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform_decoration, @@ -24493,17 +24699,34 @@ icon_state = "test_floor4" }, /area/almayer/living/chapel) -"egM" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"egW" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"egD" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer{ + dir = 8; + 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/hull/upper/u_f_s) +/area/almayer/maint/hull/upper/u_m_p) "ehc" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -24554,6 +24777,14 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) +"ehM" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "ehR" = ( /obj/structure/window/reinforced{ dir = 4; @@ -24596,13 +24827,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"ehZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "eim" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -24657,16 +24881,15 @@ icon_state = "plate" }, /area/almayer/living/gym) -"eje" = ( -/obj/structure/closet, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/newspaper, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/tile/carpet{ - amount = 20 +"ejj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/wrench{ + pixel_x = -2; + pixel_y = -1 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/tool/wrench{ + pixel_x = 2; + pixel_y = 7 }, /turf/open/floor/almayer{ icon_state = "plate" @@ -24694,6 +24917,17 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) +"ejV" = ( +/obj/structure/closet, +/obj/item/device/flashlight/pen, +/obj/item/attachable/reddot, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "ejY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -24704,20 +24938,27 @@ /turf/open/floor/almayer, /area/almayer/command/lifeboat) "ekz" = ( -/obj/structure/platform, +/obj/structure/girder/displaced, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/upper/u_a_p) -"ekF" = ( +"ekM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"ekR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/hallways/lower/starboard_umbilical) "ekY" = ( /obj/structure/machinery/door/airlock/almayer/generic/glass{ name = "\improper Memorial Room" @@ -24761,23 +25002,26 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_one) -"elF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "elR" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 1 }, /area/almayer/medical/containment/cell) +"elY" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_umbilical) "eme" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -24786,11 +25030,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/upper_medical) -"emn" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 4 +"eml" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_umbilical) +"emn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer{ dir = 4; @@ -24805,6 +25057,19 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) +"emw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"emA" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_s) +"emC" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) "emK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -24812,33 +25077,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"emX" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/snacks/cheesecakeslice{ - pixel_y = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"emZ" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"enc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "ene" = ( /turf/open/floor/almayer{ dir = 4; @@ -24853,36 +25091,72 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"enq" = ( -/obj/structure/largecrate/random/barrel/red, +"enz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/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 = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) +"enF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"enK" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_fore_hallway) +"enQ" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) -"enz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/lower/l_m_p) +"enY" = ( +/obj/item/storage/firstaid, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"eob" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/repair_bay) -"enA" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/lower/l_m_s) +"eox" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"eoy" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) -"enK" = ( +/area/almayer/hallways/lower/port_midship_hallway) +"eoE" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - dir = 6; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_f_s) "eoG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -24890,34 +25164,19 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"eoU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"epp" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters/clippers, -/obj/item/handcuffs/zip, +"eoK" = ( +/obj/structure/machinery/optable, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) -"epq" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/headband/red{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/clothing/glasses/regular/hipster, +/area/almayer/maint/hull/upper/p_stern) +"epk" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/lower/port_umbilical) "epu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -24938,13 +25197,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"epW" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) "eqb" = ( /obj/structure/surface/table/almayer, /obj/item/tool/stamp/denied{ @@ -24971,12 +25223,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"eqh" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +"eqd" = ( +/obj/item/stack/folding_barricade/three, +/obj/item/stack/folding_barricade/three, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "redfull" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/shipboard/panic) +"eqm" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control{ + id = "Secretroom"; + indestructible = 1; + layer = 2.5; + name = "Shutters"; + use_power = 0 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "eqB" = ( /obj/item/bedsheet/brown{ layer = 3.2 @@ -25030,19 +25297,6 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) -"eqV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/upper/aft_hallway) -"era" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "erd" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -25052,6 +25306,12 @@ dir = 1 }, /area/almayer/medical/containment/cell/cl) +"ere" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "erh" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -25079,6 +25339,14 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) +"erE" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "erF" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/toxin{ @@ -25099,6 +25367,25 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"erL" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/crushed_cup, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/ashtray/plastic{ + pixel_x = 5; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "erN" = ( /obj/structure/machinery/light{ dir = 8 @@ -25110,25 +25397,31 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"erR" = ( -/obj/structure/machinery/light/small{ +"esd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_a_p) -"esl" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +/area/almayer/hallways/lower/port_midship_hallway) +"esm" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"esq" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/plating, +/area/almayer/shipboard/brig/medical) "esC" = ( /obj/structure/toilet{ pixel_y = 13 @@ -25173,11 +25466,6 @@ dir = 9 }, /area/almayer/command/lifeboat) -"esV" = ( -/obj/effect/landmark/start/researcher, -/obj/effect/landmark/late_join/researcher, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) "etf" = ( /turf/open/floor/almayer{ dir = 1; @@ -25220,11 +25508,11 @@ }, /area/almayer/engineering/upper_engineering) "ety" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_m_s) "etE" = ( /obj/structure/prop/almayer/name_stencil, /turf/open/floor/almayer_hull{ @@ -25239,14 +25527,13 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) -"etU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +"etN" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/upper/s_bow) +"etW" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution_storage) "eua" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ @@ -25261,22 +25548,18 @@ icon_state = "test_floor4" }, /area/almayer/living/officer_study) -"euu" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) -"euw" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "plate" +"euL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Starboard Railguns and Viewing Room" }, -/area/almayer/maint/hull/upper/u_a_s) -"euB" = ( -/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_f_s) "euN" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -25348,24 +25631,6 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/starboard) -"evF" = ( -/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_m_s) -"evQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) "evR" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical/green{ @@ -25380,6 +25645,13 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) +"ewc" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "ewr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -25414,26 +25686,43 @@ icon_state = "test_floor4" }, /area/almayer/squads/delta) +"ewP" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/execution_storage) "ewS" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "silvercorner" }, /area/almayer/command/cichallway) +"exb" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"exc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "exi" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"exx" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) +"exl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "exy" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" @@ -25445,59 +25734,36 @@ icon_state = "tcomms" }, /area/almayer/engineering/upper_engineering/starboard) -"exX" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"exY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 32 - }, +"exQ" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "greencorner" }, -/area/almayer/hallways/lower/port_fore_hallway) -"eyp" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/almayer/hallways/lower/starboard_midship_hallway) +"eyc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"eyq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control/railings{ - pixel_y = 24 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/shipboard/brig/mp_bunks) "eyG" = ( /obj/structure/platform, /turf/open/floor/almayer{ 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/hull/upper/u_m_p) +"eyM" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "eyQ" = ( /obj/structure/machinery/light{ dir = 1 @@ -25531,12 +25797,6 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"eyZ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "ezG" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -25554,19 +25814,10 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"ezR" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/l_f_s) "ezX" = ( /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"eAa" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "eAg" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -25579,6 +25830,12 @@ icon_state = "red" }, /area/almayer/squads/alpha) +"eAm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) "eAC" = ( /obj/structure/machinery/light{ dir = 4 @@ -25596,21 +25853,21 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"eAG" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/clipboard, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) "eAI" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "orangecorner" }, /area/almayer/engineering/lower/engine_core) -"eAK" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "eAL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -25621,16 +25878,6 @@ "eAN" = ( /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"eAP" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "eAU" = ( /obj/structure/bed/chair{ dir = 8 @@ -25664,17 +25911,24 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eBy" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/aft_hallway) "eBE" = ( /obj/structure/machinery/photocopier{ anchored = 0 }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"eBG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "eBO" = ( /obj/structure/bed, /turf/open/floor/almayer{ @@ -25759,20 +26013,13 @@ icon_state = "plating" }, /area/almayer/shipboard/brig/execution) -"eCZ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/largecrate/supply/supplies/flares, +"eDk" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/upper/u_a_p) "eDo" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -25783,6 +26030,12 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) +"eDq" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "eDt" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ @@ -25799,24 +26052,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"eDF" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"eDN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"eDW" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "eEc" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -25841,37 +26076,27 @@ /obj/structure/filingcabinet, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"eEq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) -"eEv" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "eEw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"eFg" = ( +"eEF" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/maint/upper/mess) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) +"eFa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "eFj" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -25901,11 +26126,16 @@ }, /area/almayer/medical/chemistry) "eFI" = ( -/obj/effect/landmark/yautja_teleport, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "blue" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/hallways/upper/aft_hallway) "eFK" = ( /obj/structure/bed{ icon_state = "abed" @@ -25999,18 +26229,13 @@ /obj/item/stack/cable_coil, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"eGr" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, +"eGq" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "green" }, -/area/almayer/shipboard/brig/surgery) +/area/almayer/hallways/lower/port_midship_hallway) "eGB" = ( /obj/structure/platform_decoration, /turf/open/floor/almayer, @@ -26044,12 +26269,22 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"eHJ" = ( -/obj/structure/machinery/vending/hydronutrients, +"eHy" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "plating_striped" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_a_p) +"eHz" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "eHY" = ( /obj/structure/surface/rack, /obj/item/device/taperecorder, @@ -26057,23 +26292,45 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"eIe" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"eIN" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"eIO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) -"eII" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/area/almayer/hallways/lower/starboard_fore_hallway) +"eJg" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" }, -/obj/structure/barricade/handrail, +/area/almayer/hallways/upper/aft_hallway) +"eJj" = ( +/obj/structure/closet/crate, +/obj/item/ammo_box/magazine/l42a, +/obj/item/ammo_box/magazine/l42a, /turf/open/floor/almayer{ - icon_state = "test_floor5" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_m_s) "eJQ" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -26090,6 +26347,10 @@ "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/hull/upper/u_m_s) "eKa" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ dir = 2; @@ -26101,17 +26362,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/processing) -"eKi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"eKk" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "eKy" = ( /obj/structure/pipes/standard/simple/visible{ dir = 6 @@ -26123,12 +26373,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"eKE" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "eKH" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -26173,12 +26417,67 @@ icon_state = "green" }, /area/almayer/living/offices) -"eLq" = ( -/obj/structure/machinery/light/small, +"eKZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) +"eLp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/computer/supplycomp/vehicle, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/lower/vehiclehangar) +"eLu" = ( +/obj/structure/sign/safety/three{ + pixel_x = 31; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emerald" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"eLC" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"eLH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -27; + serial_number = 11 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "eMh" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Laundry Room" @@ -26187,27 +26486,18 @@ icon_state = "test_floor4" }, /area/almayer/engineering/laundry) -"eMp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, +"eMx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "S" }, -/area/almayer/hallways/lower/vehiclehangar) -"eMt" = ( -/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"eMI" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "blue" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/hallways/lower/port_midship_hallway) "eMJ" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -26218,14 +26508,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/perma) -"eMK" = ( -/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/lower/starboard_fore_hallway) "eMP" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -26242,34 +26524,16 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"eNf" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +"eMZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "eNi" = ( /turf/closed/wall/almayer, /area/almayer/engineering/ce_room) -"eNq" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"eNw" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) "eNI" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -26281,21 +26545,11 @@ }, /area/almayer/medical/containment) "eNL" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"eNO" = ( -/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "green" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "eNR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -26303,9 +26557,14 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"eOz" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +"eOx" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "eOM" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -26326,19 +26585,25 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"eOY" = ( -/obj/structure/surface/rack, -/obj/item/facepaint/sniper, +"ePq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/u_m_s) -"ePc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/area/almayer/hallways/lower/starboard_umbilical) +"ePA" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/medical) "ePM" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 @@ -26380,63 +26645,55 @@ icon_state = "cargo" }, /area/almayer/engineering/lower/workshop/hangar) -"ePV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"eQd" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/smg/m39{ + pixel_y = 6 }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/item/weapon/gun/smg/m39{ + pixel_y = -6 }, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"eQh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eQa" = ( -/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "silvercorner" }, -/area/almayer/maint/hull/lower/l_a_p) -"eQq" = ( +/area/almayer/hallways/upper/aft_hallway) +"eQm" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/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 +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/upper/p_bow) +"eQz" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/hallways/lower/vehiclehangar) "eQJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/hallways/upper/aft_hallway) -"eQP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/poster/ad{ + pixel_x = 30 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"eQR" = ( /turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) -"eQV" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/s_bow) "eRi" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/folder/black{ @@ -26449,21 +26706,6 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"eRm" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/item/storage/firstaid{ - pixel_x = -13; - pixel_y = 13 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "eRu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -26492,9 +26734,14 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_medbay) -"eRL" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) +"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/hull/upper/u_a_s) "eRR" = ( /obj/item/clothing/head/helmet/marine{ pixel_x = 16; @@ -26512,12 +26759,14 @@ }, /area/almayer/engineering/lower/workshop/hangar) "eRX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" + dir = 6; + icon_state = "red" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/shipboard/brig/mp_bunks) "eSk" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -26543,34 +26792,11 @@ }, /area/almayer/medical/medical_science) "eSp" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) -"eSt" = ( -/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" +/obj/structure/sign/safety/ladder{ + pixel_x = -16 }, -/area/almayer/hallways/upper/aft_hallway) -"eSH" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "eSU" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer1" @@ -26579,12 +26805,9 @@ icon_state = "outerhull_dir" }, /area/space) -"eSZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) +"eTb" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/stern) "eTd" = ( /obj/structure/surface/table/almayer, /obj/item/trash/boonie{ @@ -26595,26 +26818,42 @@ /obj/effect/landmark/crap_item, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eTJ" = ( -/obj/structure/curtain/red, +"eTx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"eTD" = ( +/obj/structure/bed/chair{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/lower/l_a_s) +"eTM" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/mp_bunks) "eUe" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/device/radio, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"eUf" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/s_bow) -"eUf" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stern) +/area/almayer/hallways/lower/starboard_midship_hallway) "eUh" = ( /obj/structure/window/reinforced{ dir = 8 @@ -26635,15 +26874,6 @@ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) -"eUj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) "eUn" = ( /obj/structure/machinery/chem_master, /turf/open/floor/almayer{ @@ -26669,16 +26899,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"eVf" = ( -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "eVj" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -26713,16 +26933,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"eVP" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "eVQ" = ( /obj/structure/machinery/light{ dir = 4 @@ -26760,24 +26970,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"eVY" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 8; - pixel_y = -4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"eWf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "eWp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy/charlie{ @@ -26787,6 +26979,20 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) +"eWs" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"eWv" = ( +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"eWx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "eWF" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -26795,15 +27001,12 @@ icon_state = "test_floor4" }, /area/almayer/living/basketball) -"eWV" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"eWN" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "blue" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/upper/aft_hallway) "eXb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -26817,14 +27020,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"eXc" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) "eXk" = ( /obj/effect/landmark/late_join/working_joe, /obj/effect/landmark/start/working_joe, @@ -26840,13 +27035,17 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/offices) -"eYd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +"eXD" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/lower/l_m_s) "eYj" = ( /obj/structure/machinery/light{ dir = 8 @@ -26862,6 +27061,15 @@ /obj/structure/filingcabinet/security, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"eYp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_s) "eYr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -26889,20 +27097,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"eYw" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"eYx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "eYz" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ dir = 1 @@ -26915,18 +27109,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"eYC" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Disposals" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_a_p) "eYD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -26956,12 +27138,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"eYN" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "eYQ" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -32 @@ -26978,13 +27154,9 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering/port) -"eZn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +"eZm" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_stern) "eZo" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -27012,18 +27184,26 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"eZC" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "eZH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"eZK" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" +"eZR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/lower/s_bow) +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "fag" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27032,32 +27212,15 @@ /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) "far" = ( -/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" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/maint/hull/upper/u_m_s) -"fas" = ( -/obj/structure/machinery/light, /turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"faC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 + dir = 4; + icon_state = "orangecorner" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/port_aft_hallway) "faE" = ( /obj/structure/bookcase{ icon_state = "book-5"; @@ -27081,6 +27244,18 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) +"faR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "faX" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -27113,6 +27288,15 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"fbe" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "fbo" = ( /obj/structure/machinery/door_control{ id = "kitchen2"; @@ -27152,6 +27336,13 @@ icon_state = "dark_sterile" }, /area/almayer/medical/upper_medical) +"fbC" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/maint/hull/lower/l_m_s) "fbR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -27165,35 +27356,41 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"fcf" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"fcl" = ( -/obj/structure/bookcase/manuals/engineering, +"fbU" = ( +/obj/item/stool, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/upper/u_f_s) -"fcv" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/area/almayer/hallways/lower/vehiclehangar) +"fca" = ( +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"fcf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"fcx" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/living/briefing) +"fco" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, +/obj/item/device/radio, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/s_bow) "fcy" = ( /obj/structure/machinery/light{ dir = 8 @@ -27215,14 +27412,6 @@ icon_state = "bluecorner" }, /area/almayer/living/basketball) -"fcK" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "fcM" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" @@ -27246,9 +27435,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"fcW" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_p) "fcX" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/light{ @@ -27262,6 +27448,12 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"fdf" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "fdx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27271,15 +27463,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"fdD" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "fdE" = ( /obj/item/clothing/mask/rebreather/scarf, /obj/structure/closet/secure_closet/personal/cabinet{ @@ -27301,15 +27484,31 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lockerroom) +"fea" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "feb" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/brig/execution) -"fed" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"feo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "feq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27332,6 +27531,10 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"feG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "feI" = ( /obj/item/trash/cigbutt, /turf/open/floor/almayer, @@ -27356,32 +27559,55 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_two) -"feZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "ffg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/perma) +"ffq" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_y = 15 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ffx" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/head/helmet/marine/tech/tanker, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "ffE" = ( /turf/open/floor/almayer/no_build{ icon_state = "plating" }, /area/almayer/command/airoom) -"ffL" = ( +"ffN" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, /obj/structure/sign/safety/water{ pixel_x = 8; pixel_y = -32 }, +/obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"ffX" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/s_bow) "fgh" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -27408,26 +27634,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"fgv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"fgA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "fgE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27449,22 +27655,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"fgO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "fgR" = ( /obj/structure/machinery/door/poddoor/almayer/open{ id = "Brig Lockdown Shutters"; @@ -27482,13 +27672,14 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"fhb" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17 +"fgU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "fhf" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, @@ -27500,30 +27691,25 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"fhT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"fic" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "fie" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"fio" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) -"fiz" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" +"fix" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/shipboard/panic) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "fiE" = ( /obj/structure/machinery/computer/cameras/containment/hidden{ dir = 4; @@ -27534,6 +27720,15 @@ /obj/item/device/camera_film, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) +"fiH" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/upper/stern_hallway) +"fiN" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "fiQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27542,76 +27737,36 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"fjv" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"fka" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 - }, +"fjz" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "cargo" }, -/area/almayer/hallways/upper/stern_hallway) -"fkz" = ( -/obj/structure/machinery/alarm/almayer{ +/area/almayer/maint/hull/upper/u_f_p) +"fkK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/lower/port_aft_hallway) -"fkF" = ( -/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/upper/u_m_s) "fkX" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 8 }, /area/almayer/medical/containment/cell/cl) -"flD" = ( -/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/aft_hallway) -"flK" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"flS" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 +"flr" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/p_bow) "flW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light{ @@ -27623,15 +27778,18 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"flY" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"fml" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "greencorner" }, -/area/almayer/maint/hull/lower/stern) +/area/almayer/hallways/lower/port_fore_hallway) "fmv" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -27653,15 +27811,20 @@ icon_state = "bluecorner" }, /area/almayer/living/pilotbunks) -"fmY" = ( +"fmZ" = ( /turf/open/floor/almayer{ - icon_state = "orangecorner" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/u_a_s) -"fmZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/hallways/lower/starboard_umbilical) +"fnc" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "fnv" = ( /obj/structure/machinery/light{ dir = 4 @@ -27695,15 +27858,6 @@ icon_state = "redfull" }, /area/almayer/medical/upper_medical) -"fnC" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "fnH" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -27715,36 +27869,18 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) -"fnV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = -32 +"fnO" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation Observation" }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) -"foa" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"fob" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/shipboard/brig/interrogation) "foC" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -27791,21 +27927,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"foU" = ( -/obj/item/tool/screwdriver, -/obj/structure/platform_decoration{ - dir = 8 +"foS" = ( +/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 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"fpj" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/almayer/maint/hull/lower/l_a_p) +"fpi" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/stern) "fpA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -27818,6 +27959,28 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"fpI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fpM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fpO" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) "fpR" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, @@ -27845,6 +28008,21 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) +"fqb" = ( +/obj/item/paper/prison_station/interrogation_log{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/structure/largecrate/random/barrel/green, +/obj/item/limb/hand/l_hand{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "fqc" = ( /obj/structure/machinery/vending/cigarette, /obj/structure/machinery/light, @@ -27852,36 +28030,38 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"fqh" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) -"fqp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +"fqw" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fqA" = ( /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/port_midship_hallway) "fqC" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"fqN" = ( +"fqJ" = ( +/obj/structure/machinery/door_control{ + id = "safe_armory"; + name = "Hangar Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" + }, /turf/open/floor/almayer{ - icon_state = "silver" + dir = 5; + icon_state = "plating" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/shipboard/panic) "fqO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -27889,24 +28069,22 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"fqP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fqU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "fqW" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/engineering/lower/engine_core) -"fqX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "fqZ" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -27918,14 +28096,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"fra" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "frb" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -27949,11 +28119,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"frq" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "frz" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Exterior Airlock"; @@ -27971,6 +28136,32 @@ icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) +"frG" = ( +/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{ + dir = 2; + name = "\improper Brig Armoury"; + req_access = null; + req_one_access_txt = "1;3"; + closeOtherId = "brignorth" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/starboard_hallway) +"frI" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "frM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -27984,27 +28175,22 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"frT" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +"frV" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/almayer/hallways/lower/port_midship_hallway) -"frX" = ( -/obj/structure/machinery/optable, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 29 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"fsf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" + icon_state = "orangecorner" }, -/area/almayer/shipboard/brig/surgery) +/area/almayer/hallways/lower/port_umbilical) "fsp" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -28015,6 +28201,18 @@ icon_state = "plate" }, /area/almayer/living/gym) +"fsu" = ( +/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/aft_hallway) "fsR" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -28037,30 +28235,33 @@ icon_state = "plating_striped" }, /area/almayer/living/cryo_cells) -"ftr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"ftb" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"ftA" = ( -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "blue" }, -/area/almayer/maint/hull/lower/p_bow) -"ftE" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ +/area/almayer/hallways/upper/aft_hallway) +"ftG" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/upper/u_a_s) -"ful" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +"ftZ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "fuz" = ( /obj/structure/machinery/cm_vending/clothing/pilot_officer, /turf/open/floor/almayer{ @@ -28087,6 +28288,13 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"fuU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_umbilical) "fva" = ( /obj/structure/machinery/light{ dir = 1 @@ -28115,11 +28323,36 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"fvs" = ( +"fvj" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) +"fvo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/glasses/welding{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/tool/weldingtool{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/upper/u_a_p) "fvA" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer, @@ -28130,6 +28363,19 @@ icon_state = "redfull" }, /area/almayer/command/cic) +"fvE" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_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 @@ -28140,17 +28386,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"fwm" = ( -/obj/structure/sign/safety/conference_room{ +"fvV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/security{ + pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"fws" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, +/turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) "fwD" = ( /obj/item/reagent_container/food/snacks/grown/poppy{ @@ -28162,6 +28409,9 @@ icon_state = "plate" }, /area/almayer/living/starboard_garden) +"fwK" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/starboard_umbilical) "fwM" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -28173,22 +28423,13 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"fwQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"fwT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"fwP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) "fwY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28216,22 +28457,6 @@ /obj/item/weapon/shield/riot, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"fxX" = ( -/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{ - dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/hallways/upper/aft_hallway) "fxZ" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -28253,18 +28478,6 @@ icon_state = "plate" }, /area/almayer/shipboard/weapon_room) -"fyi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) "fyp" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -28274,28 +28487,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) -"fyq" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"fys" = ( -/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/aft_hallway) "fyD" = ( /obj/structure/machinery/light, /obj/structure/ladder{ @@ -28304,15 +28495,35 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"fza" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fyT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + dir = 1; + name = "\improper Command Power Substation" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) +"fzc" = ( +/turf/open/floor/almayer{ + 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/stern_hallway) "fzq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -28325,6 +28536,18 @@ icon_state = "test_floor4" }, /area/almayer/squads/charlie) +"fzx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "fzP" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -28341,42 +28564,80 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) -"fAo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"fzT" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) +"fAa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 + }, +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + dir = 9; + icon_state = "red" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/living/offices/flight) "fAr" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"fAE" = ( -/obj/structure/closet/firecloset/full, +"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/aft_hallway) +"fAZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser{ + pixel_y = 8 + }, +/obj/structure/machinery/recharger, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "red" + }, +/area/almayer/shipboard/brig/mp_bunks) +"fBi" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fBo" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"fAH" = ( -/obj/structure/largecrate/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_stern) -"fAQ" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/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{ - dir = 4; - icon_state = "red" + icon_state = "blue" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/upper/aft_hallway) "fBO" = ( /obj/structure/machinery/chem_master{ vial_maker = 1 @@ -28389,23 +28650,21 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"fBW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"fCg" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"fCd" = ( +"fCi" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/lungs/prosthetic, /turf/open/floor/almayer{ - dir = 10; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_m_p) "fCp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -28413,32 +28672,32 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) "fCG" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/maint/lower/s_bow) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "fCL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"fCZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"fCP" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" }, +/area/almayer/hallways/upper/aft_hallway) +"fCT" = ( /obj/structure/surface/table/almayer, -/obj/item/toy/handcard/uno_reverse_red{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/toy/deck/uno, -/obj/structure/machinery/light/small, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/engineering/lower/engine_core) "fDh" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -28461,27 +28720,18 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) -"fDm" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/nanopaste{ - pixel_x = -3; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"fDC" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 +"fDk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "orangecorner" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/upper/stern_hallway) +"fDw" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) "fDG" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ @@ -28504,12 +28754,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"fDT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "fDU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -28536,21 +28780,6 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"fDZ" = ( -/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) -"fEb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) "fEe" = ( /obj/structure/machinery/pipedispenser, /turf/open/floor/almayer{ @@ -28568,6 +28797,12 @@ icon_state = "plate" }, /area/almayer/medical/morgue) +"fEF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "fEN" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ dir = 4 @@ -28582,6 +28817,12 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"fEX" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) "fFe" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 @@ -28621,10 +28862,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) -"fFN" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "fFO" = ( /obj/structure/machinery/light{ dir = 4 @@ -28636,6 +28873,29 @@ icon_state = "plate" }, /area/almayer/medical/morgue) +"fFQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) +"fFU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"fFV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) "fGa" = ( /obj/structure/surface/rack, /obj/effect/decal/warning_stripes{ @@ -28646,10 +28906,26 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) +"fGd" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/lower/vehiclehangar) "fGg" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"fGi" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "fGu" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -28677,25 +28953,30 @@ }, /area/almayer/medical/medical_science) "fGB" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"fGG" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/shipboard/panic) -"fGR" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/lower/l_a_s) +"fGD" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/upper/aft_hallway) +"fGU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"fHb" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "fHh" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -28718,26 +28999,10 @@ icon_state = "greenfull" }, /area/almayer/living/offices) -"fHY" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"fIh" = ( -/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/aft_hallway) -"fII" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +"fHM" = ( +/obj/docking_port/stationary/escape_pod/cl, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "fIM" = ( /obj/effect/landmark/start/marine/tl/bravo, /obj/effect/landmark/late_join/bravo, @@ -28775,6 +29040,25 @@ icon_state = "plate" }, /area/almayer/command/cichallway) +"fJp" = ( +/obj/structure/girder, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"fJt" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"fJu" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "fJy" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/toy/deck{ @@ -28783,16 +29067,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"fJA" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "fJO" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -28850,16 +29124,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"fKj" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "fKt" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/prop/dam/crane{ @@ -28876,13 +29140,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"fKv" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade/three, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "fKw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 @@ -28902,20 +29159,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"fKC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"fKL" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) "fKT" = ( /obj/structure/machinery/vending/coffee, /obj/structure/sign/safety/coffee{ @@ -28945,6 +29188,13 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) +"fLf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "fLg" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/snacks/wrapped/barcardine{ @@ -28955,10 +29205,26 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) +"fLi" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "fLl" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_stern) +"fLt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "fLu" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -28988,19 +29254,7 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"fLI" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -27; - serial_number = 11 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"fMe" = ( +"fMe" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ pixel_x = 15 @@ -29027,12 +29281,6 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"fMn" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "fMt" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "ARES Interior"; @@ -29061,31 +29309,28 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"fMB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"fMU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/lower/starboard_umbilical) -"fMK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/obj/structure/sign/safety/coffee{ + pixel_y = 32 }, -/area/almayer/squads/req) -"fMZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"fNd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "fNi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -29101,30 +29346,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"fNv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +"fNH" = ( /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"fNY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 + dir = 8; + icon_state = "cargo_arrow" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/hallways/lower/starboard_midship_hallway) "fOk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"fOm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/warden_office) "fOv" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29150,6 +29393,15 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering) +"fOK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "fOL" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -29159,19 +29411,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"fOO" = ( -/obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"fPk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "fPn" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -29228,6 +29467,26 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) +"fPF" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool, +/obj/item/tool/screwdriver{ + icon_state = "screwdriver7" + }, +/obj/item/tool/crowbar/red, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/almayer{ + 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/hull/upper/u_a_p) "fQn" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -29249,6 +29508,14 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) +"fQy" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "fQS" = ( /obj/structure/bed/chair/comfy/orange, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -29259,6 +29526,25 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) +"fQU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"fRg" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_s) "fRr" = ( /obj/structure/machinery/light{ dir = 1 @@ -29274,18 +29560,13 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"fRD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) -"fRF" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +"fRL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "fRS" = ( /obj/effect/landmark/start/warden, /obj/effect/decal/warning_stripes{ @@ -29294,12 +29575,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) -"fSj" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "fSl" = ( /obj/structure/machinery/line_nexter{ id = "line2"; @@ -29326,20 +29601,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"fSN" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_fore_hallway) "fTj" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -29351,6 +29612,9 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"fTl" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_s) "fTm" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, @@ -29372,10 +29636,16 @@ }, /area/almayer/engineering/laundry) "fUz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/structure/surface/rack, +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/storage/box/cups, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "fUA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) @@ -29394,33 +29664,22 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"fUF" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) -"fUL" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, +"fUZ" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/req) -"fUT" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" +/area/almayer/maint/hull/lower/l_f_p) +"fVa" = ( +/obj/item/stack/catwalk, +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_p) +"fVe" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_p) "fVo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -29428,9 +29687,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"fVq" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) "fVz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -29460,39 +29716,14 @@ icon_state = "dark_sterile" }, /area/almayer/medical/chemistry) -"fVL" = ( +"fWg" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"fVM" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "plate" }, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/maint/hull/lower/p_bow) "fWi" = ( /obj/structure/toilet{ dir = 1 @@ -29505,22 +29736,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"fWj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"fXf" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/maint/hull/upper/u_m_p) -"fWP" = ( -/obj/structure/machinery/light{ - dir = 1 + dir = 1; + icon_state = "blue" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/upper/aft_hallway) "fXg" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -29535,16 +29759,6 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"fXy" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "fXz" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -29566,17 +29780,6 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) -"fXG" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "fXN" = ( /obj/effect/landmark/start/marine/delta, /obj/effect/landmark/late_join/delta, @@ -29611,13 +29814,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"fYV" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, +"fYr" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/device/radio, /turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "plate" }, -/area/almayer/medical/upper_medical) +/area/almayer/maint/hull/upper/u_f_s) "fYZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -29648,19 +29855,15 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"fZu" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "fZy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/sign/poster{ + pixel_y = -32 }, -/area/almayer/hallways/upper/stern_hallway) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "fZA" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -29674,6 +29877,9 @@ icon_state = "orangecorner" }, /area/almayer/engineering/lower) +"fZE" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "fZG" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -29682,6 +29888,22 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"fZI" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"fZR" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "fZX" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -29689,11 +29911,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"fZY" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "fZZ" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, @@ -29710,15 +29927,12 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) -"gax" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +"gar" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "gaJ" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/cryo) @@ -29736,15 +29950,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"gaW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "gba" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/faxmachine/uscm/command{ @@ -29807,16 +30012,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"gbz" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"gck" = ( -/obj/structure/sign/safety/storage{ +"gbR" = ( +/obj/structure/sign/safety/maint{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "gcm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -29840,35 +30045,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) -"gct" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"gcu" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"gcF" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/port_umbilical) "gcN" = ( /obj/structure/machinery/door/airlock/almayer/command{ access_modified = 1; @@ -29880,12 +30056,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/sea_office) -"gcT" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "gde" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -29911,22 +30081,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"gdO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "gdS" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -29957,6 +30111,20 @@ "gel" = ( /turf/closed/wall/almayer/research/containment/wall/west, /area/almayer/medical/containment/cell/cl) +"gen" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "ger" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/wy{ @@ -29976,18 +30144,15 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) -"gew" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"geR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "blue" +"geu" = ( +/obj/structure/machinery/light, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "gfo" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -30001,6 +30166,15 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) +"gft" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "gfu" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -30014,6 +30188,9 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) +"gfv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "gfE" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/plating, @@ -30053,49 +30230,30 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"ggo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "ggt" = ( /turf/open/floor/almayer{ dir = 5; icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"ggx" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/yellow, -/obj/structure/machinery/keycard_auth{ - pixel_x = -8; - pixel_y = 25 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 26 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower/workshop) "ggz" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_four) -"ggC" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +"ggD" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "ggJ" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -30113,49 +30271,33 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/airmix) -"ghn" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) -"ght" = ( -/obj/item/stack/tile/carpet{ - amount = 20 +"ggS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/surface/rack, +/obj/structure/bed/chair/bolted, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"ghy" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/area/almayer/shipboard/brig/perma) +"ghA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gib" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/surface/table/almayer, +/obj/item/toy/handcard/uno_reverse_red{ + pixel_x = 5; + pixel_y = 5 }, +/obj/item/toy/deck/uno, +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) -"gic" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/maint/hull/lower/l_f_s) +"ghF" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "gio" = ( /obj/structure/closet/emcloset, /obj/structure/sign/safety/restrictedarea{ @@ -30190,6 +30332,20 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"gjg" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "gjm" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -30262,15 +30418,20 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"gkl" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +"gkr" = ( +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/almayer/maint/hull/upper/s_bow) +"gkE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) "gkK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/surface/table/reinforced/almayer_B, @@ -30281,16 +30442,21 @@ icon_state = "plate" }, /area/almayer/command/cic) +"glc" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "gll" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"glm" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "gls" = ( /obj/structure/filingcabinet/filingcabinet, /obj/item/clipboard, @@ -30303,17 +30469,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"glz" = ( -/obj/structure/largecrate/supply/generator, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - layer = 2.9; - pixel_x = -10; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "glB" = ( /obj/structure/sign/safety/chem_lab{ pixel_x = 5; @@ -30324,12 +30479,6 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"glC" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "glH" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -30343,10 +30492,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/workshop) -"gma" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "gmb" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 @@ -30367,6 +30512,42 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) +"gmm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 6; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = -6; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "courtyard window"; + name = "Courtyard Window Shutters"; + pixel_x = -6; + pixel_y = 9; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Cell Privacy Shutters"; + name = "Cell Privacy Shutters"; + pixel_x = 6; + pixel_y = 9; + req_access_txt = "3" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/warden_office) "gms" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -30374,22 +30555,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"gmL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"gmZ" = ( /turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" + dir = 9; + icon_state = "orange" }, -/area/almayer/hallways/upper/aft_hallway) -"gnh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/upper/stern_hallway) "gnu" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/green, @@ -30401,58 +30572,27 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"gnI" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/bag/trash{ - pixel_x = -3 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"gnT" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) -"gnV" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"gob" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"gog" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 12; - pixel_y = -5 +"gnB" = ( +/obj/structure/platform_decoration{ + dir = 8 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"gnM" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) +"gof" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "goj" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 2; @@ -30474,6 +30614,19 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/weapon_room) +"goo" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_midship_hallway) "goy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -30492,26 +30645,23 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) -"goF" = ( -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "goL" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"goS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +"goM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) +"goY" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) "gpc" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -30536,33 +30686,26 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"gpO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "gpY" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/lifeboat_pumps/north1) -"gqh" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"gqy" = ( -/obj/structure/machinery/door_control{ - id = "safe_armory"; - name = "Hangar Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" +"gqf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_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" = ( /turf/open/floor/almayer{ dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) -"gqD" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "silver" }, /area/almayer/hallways/upper/aft_hallway) "gqP" = ( @@ -30575,25 +30718,34 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) -"grf" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "plate" +"gqQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/almayer/maint/hull/lower/s_bow) -"gry" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -15 +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"grd" = ( +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) -"grF" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) +/area/almayer/maint/hull/upper/u_a_p) +"grv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "grG" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 @@ -30610,9 +30762,21 @@ }, /area/almayer/living/briefing) "grT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "gsd" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler{ @@ -30669,20 +30833,28 @@ /obj/effect/landmark/late_join, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"gst" = ( -/obj/structure/machinery/light{ - dir = 1 +"gsp" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gsA" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"gsy" = ( /obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/tool, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/lower/p_bow) "gsC" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -30708,16 +30880,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"gtc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "gtp" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -30729,47 +30891,25 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"gtA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/transmitter{ - dir = 8; - name = "Medical Telephone"; - phone_category = "Almayer"; - phone_id = "Medical Lower"; - pixel_x = 16 - }, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"gtF" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"gtL" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ +"gtD" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gtH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"gtT" = ( -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = 8 + icon_state = "test_floor4" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +/area/almayer/hallways/lower/starboard_aft_hallway) +"gtQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "gtU" = ( /obj/structure/machinery/power/apc/almayer{ dir = 8 @@ -30792,13 +30932,24 @@ icon_state = "redfull" }, /area/almayer/lifeboat_pumps/south2) -"guv" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 +"gur" = ( +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) +"guK" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "guS" = ( /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer{ @@ -30825,21 +30976,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"gvj" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "gvq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 @@ -30848,12 +30984,10 @@ icon_state = "silver" }, /area/almayer/command/cic) -"gvt" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) +"gvK" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "gvU" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -30893,15 +31027,6 @@ icon_state = "plate" }, /area/almayer/living/gym) -"gwD" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/clipboard, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) "gwM" = ( /obj/structure/pipes/vents/pump, /obj/structure/mirror{ @@ -30934,15 +31059,6 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"gwW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "gxh" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/o2, @@ -30958,12 +31074,18 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) +"gxm" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/stairs) "gxn" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"gxI" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/s_bow) "gxO" = ( /turf/open/floor/almayer{ dir = 10; @@ -30979,36 +31101,59 @@ dir = 8 }, /area/almayer/medical/containment/cell) -"gxS" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_p) -"gxW" = ( -/obj/item/stack/catwalk, -/obj/structure/platform_decoration{ - dir = 4 +"gxR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_p) -"gyc" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) +"gxU" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" }, -/obj/vehicle/powerloader{ - dir = 8 +/area/almayer/shipboard/brig/cic_hallway) +"gyb" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" + dir = 1; + icon_state = "blue" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/upper/aft_hallway) +"gyn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "gyv" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"gyw" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"gyE" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"gyH" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "gyN" = ( /obj/structure/machinery/prop{ desc = "It's a server box..."; @@ -31028,22 +31173,6 @@ icon_state = "orange" }, /area/almayer/engineering/ce_room) -"gyR" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) -"gyT" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "gyU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -31086,16 +31215,6 @@ /obj/item/reagent_container/hypospray/autoinjector/skillless, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"gzx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"gzE" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "gzI" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -31114,6 +31233,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) +"gzM" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_midship_hallway) +"gzN" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "gzV" = ( /obj/structure/sink{ dir = 1; @@ -31168,55 +31304,13 @@ "gAA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) -"gAC" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/prop/magazine/boots/n160{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/structure/transmitter/rotary{ - name = "Flight Deck Telephone"; - phone_category = "Almayer"; - phone_id = "Flight Deck"; - pixel_y = 8 - }, +"gAS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" }, -/area/almayer/hallways/lower/repair_bay) -"gAL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"gAS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/medical_science) -"gAY" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/port_umbilical) -"gBc" = ( +/area/almayer/medical/medical_science) +"gBc" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -31231,21 +31325,40 @@ icon_state = "plate" }, /area/almayer/squads/bravo) +"gBd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"gBg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "gBo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"gBO" = ( +"gBs" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ - icon_state = "orange" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) -"gBP" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_m_p) +"gBU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bag/trash{ + pixel_x = -3 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "gBW" = ( /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" @@ -31254,23 +31367,27 @@ 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/hallways/upper/stern_hallway) "gCf" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"gCj" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 +"gCu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, /turf/open/floor/almayer{ - allow_construction = 0; icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/lower/l_a_s) "gCw" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = 10 @@ -31298,16 +31415,12 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"gCX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"gCQ" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer{ + icon_state = "cargo" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/upper/u_a_s) "gDp" = ( /obj/structure/machinery/light{ dir = 4 @@ -31337,6 +31450,11 @@ }, /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/aft_hallway) "gDW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31349,22 +31467,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"gDX" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "gEg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"gEj" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"gEk" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"gEh" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_a_p) "gEo" = ( /obj/structure/machinery/cryopod/right, /obj/structure/machinery/light{ @@ -31388,47 +31503,12 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"gEM" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) -"gER" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "gFa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"gFc" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_m_s) "gFd" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/atmospipes{ @@ -31438,6 +31518,24 @@ 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/aft_hallway) +"gFN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "gFP" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/stern_point_defense) @@ -31448,6 +31546,14 @@ icon_state = "cargo" }, /area/almayer/living/commandbunks) +"gGb" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "gGf" = ( /obj/structure/machinery/light{ dir = 1 @@ -31501,6 +31607,14 @@ }, /turf/open/floor/plating, /area/almayer/hallways/hangar) +"gGw" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/vehiclehangar) "gGx" = ( /obj/structure/filingcabinet/chestdrawer{ density = 0; @@ -31531,9 +31645,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"gGX" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "gHh" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -31541,6 +31652,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) +"gHi" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_m_s) "gHj" = ( /obj/structure/machinery/light, /obj/structure/closet/secure_closet/fridge/groceries/stock, @@ -31554,12 +31671,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"gHm" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "gHo" = ( /obj/structure/machinery/door/airlock/almayer/marine/delta/tl, /turf/open/floor/almayer{ @@ -31573,37 +31684,22 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"gHx" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair{ - dir = 1 +"gHX" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/upper/aft_hallway) "gHZ" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" }, /area/almayer/hallways/hangar) -"gIe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "gIh" = ( /obj/structure/machinery/door/airlock/almayer/generic{ damage_cap = 50000; @@ -31616,6 +31712,12 @@ icon_state = "test_floor4" }, /area/almayer/engineering/ce_room) +"gIm" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "gII" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -31627,14 +31729,13 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/port) -"gIK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"gIN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/lower/port_umbilical) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "gIU" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/tapes{ @@ -31653,6 +31754,24 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/evidence_storage) +"gJf" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"gJp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) +"gJF" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_stern) "gJO" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door/window/southleft{ @@ -31672,6 +31791,20 @@ 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_m_p) "gKd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -31682,32 +31815,25 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"gKl" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"gKn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gKs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"gKo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"gKv" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/upper/p_bow) +"gKw" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "gKB" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/firealarm{ @@ -31727,19 +31853,11 @@ icon_state = "redfull" }, /area/almayer/shipboard/port_missiles) -"gKN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, +"gKK" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" + icon_state = "silvercorner" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/repair_bay) "gKR" = ( /obj/structure/closet/emcloset, /obj/structure/machinery/light{ @@ -31774,12 +31892,11 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) "gLm" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gLo" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "gLz" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -31854,20 +31971,31 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"gMj" = ( -/obj/item/tool/weldingtool, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "red" +"gMk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/area/almayer/maint/hull/upper/u_a_p) -"gMC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gMw" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -7 + }, +/obj/item/tool/pen, +/obj/item/tool/pen{ pixel_y = 3 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/brig/mp_bunks) +"gMJ" = ( +/obj/structure/largecrate/supply/weapons/pistols, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "gMN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -31901,6 +32029,18 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"gMS" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "gMU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -31909,25 +32049,18 @@ dir = 4 }, /area/almayer/living/briefing) -"gMX" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +"gNg" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, +/obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"gNj" = ( -/obj/structure/machinery/vending/cola, +/area/almayer/maint/hull/upper/s_bow) +"gNo" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_stern) -"gNl" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/upper/u_m_p) "gNp" = ( /turf/open/floor/almayer{ dir = 9; @@ -31945,6 +32078,22 @@ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) +"gNy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) +"gNN" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "gNO" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -31954,13 +32103,22 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"gOf" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +"gNQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"gNZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"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"; @@ -31988,15 +32146,6 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"gOu" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "gOC" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/almayer{ @@ -32011,6 +32160,12 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"gOS" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emerald" + }, +/area/almayer/hallways/lower/port_midship_hallway) "gPc" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -32037,20 +32192,25 @@ dir = 4 }, /area/almayer/command/airoom) -"gPs" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +"gPS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"gQd" = ( -/obj/structure/sign/safety/storage{ - pixel_y = -32 +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) +"gPU" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/vehiclehangar) "gQk" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/terminal{ @@ -32059,12 +32219,16 @@ /obj/structure/machinery/faxmachine/corporate/liaison, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"gQz" = ( -/obj/structure/largecrate/random/secure, +"gQu" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/storage/firstaid/rad, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_a_s) "gQF" = ( /obj/structure/bed/chair/comfy{ buckling_y = 2; @@ -32081,6 +32245,18 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"gQQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"gRc" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "gRd" = ( /obj/structure/platform, /obj/structure/target{ @@ -32089,42 +32265,17 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gRq" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_s) -"gRt" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"gRz" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"gRJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/mess) -"gRB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 8; + icon_state = "orangecorner" }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/lower/port_umbilical) "gRP" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -32133,27 +32284,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"gRV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"gRW" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "gSa" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -32186,36 +32316,36 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"gSq" = ( -/obj/structure/bed/sofa/south/grey/right{ - pixel_y = 12 +"gSy" = ( +/obj/item/frame/rack{ + layer = 3.1; + pixel_y = 19 + }, +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = 5 + }, +/obj/item/tool/weldpack{ + pixel_x = -2 }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"gSG" = ( +"gSH" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gTi" = ( +/area/almayer/maint/hull/lower/l_m_s) +"gTk" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 12 - }, -/obj/item/clothing/head/militia/bucket{ - pixel_x = 5; - pixel_y = -5 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 8; - pixel_y = -1 +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/hallways/lower/port_umbilical) "gTH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/skills{ @@ -32233,16 +32363,28 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"gTK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "gTV" = ( -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; pixel_y = 32 }, -/obj/structure/machinery/power/reactor, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 1; + icon_state = "silver" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/hallways/upper/aft_hallway) "gUf" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/floor/almayer{ @@ -32258,21 +32400,42 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"gUo" = ( +"gUi" = ( +/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/aft_hallway) +"gUn" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"gUu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/area/almayer/maint/hull/lower/l_f_s) -"gUt" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"gUC" = ( +/obj/structure/machinery/cm_vending/clothing/military_police_warden, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"gUG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/upper/u_a_s) "gUL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -32358,19 +32521,38 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"gVP" = ( +"gWi" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8 + }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + icon_state = "dark_sterile" }, -/area/almayer/maint/hull/lower/l_m_s) -"gWj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ +/area/almayer/shipboard/brig/medical) +"gWm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +/area/almayer/hallways/lower/starboard_umbilical) +"gWt" = ( +/obj/structure/surface/table/almayer, +/obj/item/pipe{ + dir = 9 + }, +/obj/item/tool/screwdriver{ + layer = 3.6; + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/tool/crowbar/red{ + pixel_x = 17 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "gWu" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -32389,16 +32571,6 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"gWL" = ( -/obj/structure/ladder{ - height = 2; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/p_bow) "gXl" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access_txt = "5" @@ -32446,6 +32618,34 @@ icon_state = "plating" }, /area/almayer/shipboard/sea_office) +"gYg" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ + pixel_x = 9 + }, +/obj/item/tool/weldingtool{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) +"gYj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "gYl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32465,12 +32665,23 @@ icon_state = "redfull" }, /area/almayer/living/offices/flight) -"gYL" = ( -/obj/structure/bed/chair{ +"gYI" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"gYU" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "gZw" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, @@ -32478,12 +32689,6 @@ "gZK" = ( /turf/open/floor/almayer, /area/almayer/living/auxiliary_officer_office) -"gZO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) "gZP" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ id_tag = "Boat2-D4"; @@ -32494,21 +32699,22 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) -"had" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"gZW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, /turf/open/floor/almayer{ + dir = 4; icon_state = "red" }, -/area/almayer/command/lifeboat) -"hak" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, +/area/almayer/hallways/lower/port_fore_hallway) +"had" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "red" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/command/lifeboat) "hal" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 @@ -32561,6 +32767,11 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) +"haO" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "haQ" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -32574,6 +32785,30 @@ icon_state = "plate" }, /area/almayer/living/offices) +"haR" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) +"hbl" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/u_m_s) +"hbp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/p_stern) "hbs" = ( /obj/structure/surface/table/almayer, /obj/item/frame/fire_alarm, @@ -32591,18 +32826,37 @@ icon_state = "silver" }, /area/almayer/living/auxiliary_officer_office) -"hbH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"hbA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"hbD" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) +"hbE" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/upper/u_a_s) "hbI" = ( /obj/structure/sign/safety/ammunition{ pixel_x = 32; @@ -32613,21 +32867,6 @@ icon_state = "redfull" }, /area/almayer/medical/upper_medical) -"hbK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) -"hbP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) "hcf" = ( /obj/item/bedsheet/brown{ layer = 3.2 @@ -32659,6 +32898,15 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) +"hco" = ( +/obj/structure/machinery/keycard_auth{ + pixel_x = 25 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/warden_office) "hcw" = ( /obj/structure/surface/table/reinforced/black, /obj/item/explosive/grenade/high_explosive/training, @@ -32674,16 +32922,6 @@ icon_state = "plate" }, /area/almayer/living/cryo_cells) -"hcx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) "hcI" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -32692,18 +32930,21 @@ icon_state = "cargo" }, /area/almayer/squads/delta) +"hcX" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower/engine_core) "hdd" = ( /turf/open/floor/almayer{ dir = 9; icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) -"hdf" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) "hds" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -32713,13 +32954,13 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"hdC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +"hdy" = ( +/obj/item/storage/firstaid/fire, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/upper/u_a_s) "hdE" = ( /obj/structure/filingcabinet, /obj/item/reagent_container/food/drinks/coffeecup/uscm{ @@ -32729,16 +32970,31 @@ icon_state = "green" }, /area/almayer/squads/req) -"hdO" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +"hdV" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_midship_hallway) "hec" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"heg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "heo" = ( /obj/structure/machinery/power/apc/almayer{ cell_type = /obj/item/cell/hyper; @@ -32760,14 +33016,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/armory) -"heI" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "heK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -32777,14 +33025,10 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) -"heM" = ( -/obj/structure/machinery/prop/almayer/computer{ - pixel_y = 20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) +"heO" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "heS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -32821,16 +33065,36 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"hfs" = ( -/obj/item/tool/kitchen/utensil/pfork, +"hfc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) +"hfv" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_stern) -"hfx" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/lower/s_bow) +"hfO" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full{ + pixel_y = 8 + }, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/suit/storage/hazardvest/black, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "hfQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ @@ -32846,6 +33110,12 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"hgk" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "hgo" = ( /obj/structure/machinery/light{ dir = 8 @@ -32855,6 +33125,37 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"hgp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) +"hgs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + 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/aft_hallway) "hgB" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/intel, @@ -32888,15 +33189,17 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"hgR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +"hgO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/tool/stamp/approved{ + pixel_y = -11; + pixel_x = -3 }, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer, +/area/almayer/squads/req) "hgZ" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -32909,6 +33212,31 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) +"hhd" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = -9; + pixel_y = 16 + }, +/obj/item/clothing/suit/storage/hazardvest/blue{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"hhg" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "hhn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -32923,29 +33251,6 @@ /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"hhG" = ( -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"hhW" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/masks, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) "hif" = ( /obj/structure/machinery/floodlight/landing, /turf/open/floor/almayer{ @@ -32960,6 +33265,16 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"hiu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "hiy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -32975,18 +33290,22 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hiU" = ( -/obj/structure/bed/chair{ - dir = 8 +"hiP" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 }, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer{ + dir = 4; + 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/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_s) "hji" = ( /obj/structure/bed/chair{ dir = 4 @@ -33002,6 +33321,12 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) +"hjq" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/interrogation) "hjs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -33040,28 +33365,54 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) +"hjQ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hjT" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/largecrate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "hki" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"hko" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +"hkr" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, /turf/open/floor/almayer{ icon_state = "red" }, -/area/almayer/living/cryo_cells) -"hky" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/area/almayer/shipboard/brig/starboard_hallway) +"hkz" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "hkB" = ( /obj/structure/sign/safety/rewire{ pixel_x = 8; @@ -33069,16 +33420,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"hkF" = ( -/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" +"hkC" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 }, -/area/almayer/maint/hull/upper/u_m_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "hkG" = ( /obj/structure/sign/safety/ammunition{ pixel_y = -32 @@ -33115,21 +33462,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"hkI" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"hkN" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "hkX" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -33149,17 +33481,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"hlm" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "hlH" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -33170,13 +33491,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"hlP" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "hlT" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -33205,16 +33519,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"hlW" = ( -/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/aft_hallway) "hlX" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -33247,6 +33551,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) +"hmv" = ( +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower/engine_core) "hmw" = ( /obj/structure/platform{ dir = 1 @@ -33268,6 +33578,19 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"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/aft_hallway) "hmC" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; @@ -33280,9 +33603,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"hmD" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) "hmF" = ( /obj/structure/window/reinforced{ dir = 4; @@ -33295,32 +33615,36 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) -"hmG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Brig Breakroom" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) -"hmM" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "hmS" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ icon_state = "blue" }, /area/almayer/command/cichallway) +"hmV" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "medical manuals bookcase"; + opacity = 0 + }, +/obj/item/book/manual/surgery, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"hmZ" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "hng" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/accessory/storage/black_vest/acid_harness, @@ -33336,6 +33660,18 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) +"hnt" = ( +/obj/item/toy/deck{ + pixel_y = 12 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "hnI" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -33349,52 +33685,46 @@ icon_state = "test_floor4" }, /area/almayer/living/pilotbunks) -"hnK" = ( -/obj/structure/coatrack, -/obj/structure/sign/poster/clf{ - pixel_x = -28 +"hnP" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"hoc" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" }, -/area/almayer/maint/hull/lower/l_m_s) -"hnP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "mono" }, /area/almayer/hallways/lower/vehiclehangar) -"hoC" = ( -/obj/item/storage/firstaid/fire, -/obj/structure/surface/rack, +"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/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/u_a_p) "hoT" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"hpa" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/upper/u_m_s) "hpk" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -33411,19 +33741,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"hpO" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/machinery/door_control{ - id = "Secretroom"; - indestructible = 1; - layer = 2.5; - name = "Shutters"; - use_power = 0 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "hpS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "crate_room3"; @@ -33443,20 +33760,15 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) +"hqb" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) "hqc" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower) -"hqg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "hqh" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -33470,32 +33782,34 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell) -"hqJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +"hqm" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/sign/poster/hero/voteno{ - pixel_y = 32 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"hqM" = ( -/obj/structure/machinery/light, +/area/almayer/maint/hull/upper/u_m_s) +"hqp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"hqU" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, +/area/almayer/hallways/lower/port_fore_hallway) +"hqu" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/almayer{ - dir = 5; - icon_state = "red" + 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 }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) "hqW" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ name = "\improper Medical Bay"; @@ -33509,19 +33823,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_lobby) -"hqX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) "hrm" = ( /obj/structure/closet/secure_closet/staff_officer/armory/shotgun, /obj/structure/machinery/light, @@ -33546,6 +33847,15 @@ icon_state = "test_floor4" }, /area/almayer/medical/medical_science) +"hro" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "hrF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -33555,18 +33865,31 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/starboard_point_defense) -"hrO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"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/pipes/standard/manifold/hidden/supply{ +/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{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/main_office) -"hsf" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "hsg" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -33577,6 +33900,21 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"hsh" = ( +/obj/structure/coatrack, +/obj/structure/sign/poster/clf{ + pixel_x = -28 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "hsj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -33594,9 +33932,19 @@ icon_state = "test_floor4" }, /area/almayer/squads/delta) +"hsu" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "hsy" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/lower/engine_core) +"hsK" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "hsW" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -33613,33 +33961,55 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) -"htn" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +"hte" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"htg" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/maint/hull/upper/p_bow) -"hts" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/area/almayer/maint/hull/lower/l_m_s) +"htk" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) -"htB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/area/almayer/maint/lower/cryo_cells) +"htl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"htq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer{ + 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/aft_hallway) "htG" = ( /obj/item/tool/soap, /obj/structure/machinery/light/small{ @@ -33668,27 +34038,40 @@ icon_state = "greenfull" }, /area/almayer/living/offices) -"huD" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_s) -"huI" = ( -/obj/structure/barricade/handrail{ - dir = 8 +"hux" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor5" + dir = 8; + icon_state = "red" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/upper/aft_hallway) +"huD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "huK" = ( /turf/open/floor/almayer{ icon_state = "redcorner" }, /area/almayer/living/cryo_cells) +"huN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/medical) "huO" = ( /obj/structure/machinery/light{ dir = 4 @@ -33699,6 +34082,12 @@ icon_state = "silver" }, /area/almayer/command/computerlab) +"huP" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "huU" = ( /obj/structure/machinery/door/airlock/almayer/security{ access_modified = 1; @@ -33714,33 +34103,24 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) -"huW" = ( -/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/aft_hallway) "huZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"hvq" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, /turf/open/floor/almayer{ - dir = 9; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/upper/u_m_s) "hvv" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -33770,25 +34150,26 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/plating, /area/almayer/powered/agent) -"hvH" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"hvP" = ( -/obj/item/trash/barcardine, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"hws" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 +"hvx" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/sign/safety/life_support{ - pixel_x = 14; - pixel_y = -25 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, +/area/almayer/maint/hull/lower/l_f_p) +"hvz" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "green" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) +"hvH" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) "hwC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -33798,13 +34179,19 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) -"hwQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"hwH" = ( +/obj/structure/stairs{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "hxe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33827,14 +34214,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"hxU" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) "hxZ" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/spade{ @@ -33859,44 +34238,17 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"hyj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light{ - dir = 4 +"hyb" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/l_a_s) "hyk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) -"hys" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"hyu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/lower/port_midship_hallway) "hyw" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -33921,17 +34273,17 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"hyL" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "hyQ" = ( /turf/closed/wall/almayer, /area/almayer/living/synthcloset) +"hza" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "hzb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4; @@ -33946,9 +34298,16 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"hzp" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +"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_m_s) "hzs" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -33984,12 +34343,10 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"hAb" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) +"hzN" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "hAc" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/flare, @@ -33998,13 +34355,9 @@ icon_state = "cargo" }, /area/almayer/squads/req) -"hAd" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_s) -"hAu" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"hAh" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/port_umbilical) "hAz" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -34013,6 +34366,19 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"hAA" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_midship_hallway) "hAG" = ( /obj/structure/closet/crate/internals, /obj/item/handcuffs/cable/blue, @@ -34047,6 +34413,14 @@ 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/stern_hallway) "hBc" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -34055,6 +34429,30 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) +"hBr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + 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/aft_hallway) "hBz" = ( /obj/item/mortar_kit, /turf/open/floor/almayer{ @@ -34066,33 +34464,50 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"hBG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) "hBL" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/command/lifeboat) -"hBR" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/case/double, +"hBW" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"hBS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/area/almayer/hallways/lower/port_fore_hallway) +"hCf" = ( +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"hCk" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"hCq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "hCt" = ( /obj/structure/sign/safety/terminal{ pixel_x = 15; @@ -34105,11 +34520,12 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"hCv" = ( +"hCF" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "blue" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/upper/aft_hallway) "hCS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin/uscm{ @@ -34144,26 +34560,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"hDA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) "hDR" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/syringe_case{ @@ -34179,6 +34575,16 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) +"hDU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/lower/port_fore_hallway) "hDV" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -34202,72 +34608,66 @@ }, /area/almayer/squads/bravo) "hEg" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/starboard_umbilical) +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 4; + 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/hull/upper/u_a_s) "hEl" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"hEw" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower) -"hEy" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"hEm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"hEB" = ( -/obj/structure/ladder{ - height = 2; - id = "AftStarboardMaint" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hEr" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_s) -"hEE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"hEQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Wheelchair Storage"; - req_access = null; - req_one_access = null +/area/almayer/maint/hull/upper/u_a_s) +"hEw" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 }, +/obj/structure/machinery/meter, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "orange" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/engineering/lower) "hEV" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"hEZ" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) "hFw" = ( /obj/structure/machinery/disposal/broken, /turf/open/floor/almayer{ @@ -34293,24 +34693,15 @@ icon_state = "test_floor4" }, /area/almayer/medical/morgue) -"hFR" = ( -/obj/structure/ladder{ - height = 1; - id = "AftStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +"hGo" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_s) -"hFU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/upper/aft_hallway) "hGG" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -34382,60 +34773,21 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"hHs" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/item/tool/weldpack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) -"hHz" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, +"hHK" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"hIh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-y" + dir = 1; + icon_state = "redcorner" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"hIl" = ( +/area/almayer/shipboard/brig/starboard_hallway) +"hIp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) -"hIm" = ( -/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/aft_hallway) -"hIq" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/lower/l_a_p) "hIs" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -34446,6 +34798,16 @@ icon_state = "dark_sterile" }, /area/almayer/command/corporateliaison) +"hIF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"hIG" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "hII" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -34460,14 +34822,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"hIT" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +"hIX" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/mess) +/area/almayer/maint/hull/upper/u_a_p) "hJg" = ( /obj/structure/pipes/trinary/mixer{ dir = 4; @@ -34487,22 +34847,32 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"hJt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +"hJD" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "hJI" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"hKl" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"hKe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hKl" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -34512,94 +34882,52 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"hKq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +"hKJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"hKL" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/lower/port_fore_hallway) -"hKS" = ( -/obj/structure/machinery/light, /turf/open/floor/almayer{ - dir = 10; - icon_state = "red" + dir = 4; + icon_state = "silver" }, -/area/almayer/hallways/upper/stern_hallway) -"hKX" = ( -/obj/structure/sign/safety/escapepod{ +/area/almayer/hallways/upper/aft_hallway) +"hKO" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ pixel_x = 8; pixel_y = 32 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hLq" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/maint/hull/lower/l_f_s) +"hLt" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/water{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"hLu" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = 32 + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"hLA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/lower/p_bow) "hLC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"hLD" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"hLF" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -9; - pixel_y = -4 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_y = -2 - }, -/obj/item/reagent_container/pill/happy, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "hLI" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -34617,66 +34945,52 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) -"hLW" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"hMc" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) "hMi" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/chapel) +"hMk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "hMG" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/engineering/lower) +"hMM" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "hMN" = ( /obj/structure/machinery/power/apc/almayer, /turf/open/floor/almayer{ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) -"hMV" = ( -/obj/item/storage/firstaid, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "hNh" = ( -/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) -"hNl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 16 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"hNn" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/maint/hull/lower/l_f_p) +"hNv" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "green" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/lower/port_midship_hallway) "hNw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -34684,14 +34998,17 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/charlie) -"hNJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/hatchet, +"hNB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/hallways/lower/vehiclehangar) "hNM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/metal{ @@ -34718,18 +35035,25 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"hOb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" +"hOu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/hallways/upper/stern_hallway) -"hOc" = ( -/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_stern) +/area/almayer/hallways/lower/starboard_fore_hallway) +"hOV" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/constr) "hPe" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, @@ -34742,12 +35066,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/medical_science) -"hPf" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) "hPh" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/almayer{ @@ -34755,23 +35073,45 @@ icon_state = "silver" }, /area/almayer/living/auxiliary_officer_office) -"hPk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"hPr" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"hPu" = ( +/obj/structure/largecrate/supply, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) +"hPx" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"hPF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "red" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/shipboard/brig/starboard_hallway) +"hPD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_umbilical) "hPI" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/brig/perma) @@ -34799,18 +35139,10 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie_delta_shared) -"hQo" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"hQs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +"hQf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "hQw" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -34818,6 +35150,10 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) +"hQK" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) "hQP" = ( /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer{ @@ -34899,6 +35235,17 @@ icon_state = "plate" }, /area/almayer/living/numbertwobunks) +"hRA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "hRW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -34926,6 +35273,26 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"hSb" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"hSj" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig"; + closeOtherId = "brigmaint_n" + }, +/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) @@ -34938,6 +35305,18 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"hSv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_s) "hSw" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -34974,12 +35353,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"hTj" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "hTl" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -35044,29 +35417,34 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"hUh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +"hTU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/lower/l_a_p) +"hUb" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "hUk" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"hUr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_umbilical) "hUz" = ( /obj/structure/largecrate/supply/supplies/mre{ desc = "A supply crate containing everything you need to stop a CLF uprising."; @@ -35103,15 +35481,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"hVl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "hVz" = ( /obj/structure/machinery/light{ dir = 1 @@ -35121,21 +35490,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"hVR" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"hWi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"hVL" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_f_p) "hWq" = ( /obj/structure/platform{ layer = 3.1 @@ -35184,6 +35544,27 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"hWD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"hWH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/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 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "hWJ" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ @@ -35199,14 +35580,11 @@ }, /area/almayer/command/cichallway) "hWV" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/upper/aft_hallway) "hXb" = ( /turf/open/floor/almayer{ dir = 1; @@ -35244,17 +35622,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hXq" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"hXD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "hXG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -35293,12 +35666,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"hYj" = ( -/obj/structure/platform_decoration, +"hYf" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_a_s) "hYn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35311,34 +35684,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"hYw" = ( -/obj/item/tool/wet_sign, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "hYE" = ( -/obj/structure/closet/crate{ - desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; - name = "special operations crate" - }, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "hYG" = ( /obj/structure/bed/chair{ dir = 1 @@ -35367,14 +35720,12 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"hZp" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"hZw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/maint/hull/upper/p_stern) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "hZE" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -35407,31 +35758,16 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"hZU" = ( -/obj/structure/transmitter{ - name = "Brig Offices Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig Main Offices"; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) +"hZZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "iaa" = ( /obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, /turf/open/floor/almayer{ icon_state = "redfull" }, /area/almayer/command/cic) -"iaf" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "iag" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, @@ -35464,14 +35800,6 @@ icon_state = "red" }, /area/almayer/squads/alpha) -"iao" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/mgoggles/prescription, -/obj/item/clothing/glasses/mbcg, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "iaq" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/almayer{ @@ -35484,10 +35812,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"iay" = ( -/obj/item/paper/almayer_storage, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "iaF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -35496,18 +35820,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"iaI" = ( -/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/stern_hallway) "iaR" = ( /obj/structure/machinery/light{ dir = 4 @@ -35517,13 +35829,6 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"iaZ" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "ibc" = ( /obj/structure/machinery/conveyor_switch{ id = "req_belt" @@ -35533,10 +35838,30 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"icd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +"ibf" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) +"ibl" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) +"ibP" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "icp" = ( /turf/open/floor/almayer{ dir = 8; @@ -35563,18 +35888,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"icS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_fore_hallway) "icZ" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer{ @@ -35582,40 +35895,6 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) -"idf" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"idg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"idv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "idx" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -35628,7 +35907,7 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"idV" = ( +"idL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -35646,6 +35925,28 @@ 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/stern_hallway) +"ied" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"ien" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "ieu" = ( /obj/structure/window/reinforced{ dir = 4; @@ -35716,21 +36017,6 @@ dir = 4 }, /area/almayer/command/airoom) -"ieG" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "ieX" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/distribution_pipes{ @@ -35755,6 +36041,16 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) +"ifR" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"igb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "igr" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -35763,17 +36059,51 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"igt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"igs" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) +"igw" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 30 }, +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, /turf/open/floor/almayer{ - icon_state = "red" + icon_state = "plate" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/maint/hull/lower/l_m_s) +"igS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"iho" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/constr) "ihw" = ( /obj/structure/machinery/cm_vending/sorted/medical, /turf/open/floor/almayer{ @@ -35781,20 +36111,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"ihF" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "ihI" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"ihK" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) "ihM" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ @@ -35808,6 +36130,15 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"ihW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "ihX" = ( /obj/structure/machinery/status_display{ pixel_y = -30 @@ -35822,12 +36153,15 @@ icon_state = "test_floor4" }, /area/almayer/squads/bravo) -"iif" = ( -/turf/open/floor/almayer{ +"iio" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "bluecorner" + name = "ship-grade camera" }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/mp_bunks) "iis" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -35863,6 +36197,12 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) +"iiX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) "iiZ" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer{ @@ -35878,6 +36218,14 @@ 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/aft_hallway) "ijr" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -35886,14 +36234,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"ijw" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "ijQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -35913,6 +36253,11 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) +"ikl" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/lower/vehiclehangar) "iks" = ( /obj/structure/pipes/binary/pump/high_power/on{ dir = 1 @@ -35933,24 +36278,19 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"ikL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +"ikA" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/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/mess) +/area/almayer/maint/hull/upper/u_a_s) "ikQ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/tool/stamp/hop{ @@ -35972,6 +36312,9 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"ikT" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "ilq" = ( /turf/open/floor/almayer{ dir = 4; @@ -36003,14 +36346,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"ilW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "imo" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -36025,31 +36360,26 @@ }, /area/almayer/medical/morgue) "imt" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "imy" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"ino" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +"inh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/hallways/upper/stern_hallway) -"inq" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y" }, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) "ins" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -36063,17 +36393,6 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) -"iny" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/panic) "inL" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -36084,9 +36403,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"iov" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) "iow" = ( /obj/structure/machinery/cm_vending/sorted/attachments/squad{ req_access = null; @@ -36107,6 +36423,9 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"ioM" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "ioP" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -36120,12 +36439,6 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) -"ioT" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "ioU" = ( /turf/closed/wall/almayer, /area/almayer/command/securestorage) @@ -36151,6 +36464,39 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) +"ipk" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"ipn" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + 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/hull/upper/u_m_s) +"ipB" = ( +/obj/structure/surface/rack, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/hatchet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "ipE" = ( /obj/structure/bed/chair{ dir = 8 @@ -36159,16 +36505,6 @@ icon_state = "orangefull" }, /area/almayer/squads/alpha_bravo_shared) -"ipF" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "ipK" = ( /obj/effect/step_trigger/message/memorial, /turf/open/floor/almayer{ @@ -36195,35 +36531,21 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) -"ipT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"ipY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) "iqd" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"iqe" = ( -/obj/structure/largecrate/random/case/double, +"iqo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 10; + icon_state = "green" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/squads/req) "iqp" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; @@ -36245,13 +36567,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"iqN" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"iqO" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/shipboard/brig/starboard_hallway) "iqR" = ( /obj/structure/sign/safety/cryo{ pixel_x = -16 @@ -36270,19 +36591,17 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"irA" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +"irJ" = ( +/obj/item/tool/wirecutters{ + pixel_y = -7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"irF" = ( -/obj/structure/closet/emcloset/legacy, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_y = 30 }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "irS" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/cable/heavyduty{ @@ -36315,15 +36634,15 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"isz" = ( +"isq" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/upper/u_m_p) "isC" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -36399,19 +36718,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"itD" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/repair_bay) "itR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -36433,6 +36739,17 @@ icon_state = "red" }, /area/almayer/command/lifeboat) +"iuf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "iun" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, @@ -36473,6 +36790,12 @@ /obj/structure/machinery/computer/emails, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"iuI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "ivf" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/camera, @@ -36487,45 +36810,28 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"ivi" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "ivs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"ivy" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) +"ivu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "ivz" = ( /obj/structure/closet, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/port_emb) -"ivG" = ( -/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 +"ivL" = ( +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/upper/u_a_p) "ivM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -36541,33 +36847,18 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"ivY" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"ivV" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/hallways/upper/stern_hallway) "iwf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"iwp" = ( -/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 = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "iwB" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -36581,17 +36872,6 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"iwC" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) "iwI" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/almayer/generic{ @@ -36644,14 +36924,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"ixc" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "ixj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/crew/alt, @@ -36659,13 +36931,14 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) -"ixl" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"ixu" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 }, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "ixv" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 @@ -36674,14 +36947,6 @@ icon_state = "plate" }, /area/almayer/command/cic) -"ixB" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/u_m_s) "ixD" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -36708,6 +36973,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"ixT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) +"iyC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"iyE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "iyF" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -36729,15 +37015,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"iyL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "iyS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36774,9 +37051,6 @@ icon_state = "plate" }, /area/almayer/squads/alpha) -"izT" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_p) "izY" = ( /obj/structure/machinery/autodoc_console, /turf/open/floor/almayer{ @@ -36784,19 +37058,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"iAf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"iAo" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "iAw" = ( /obj/item/tool/warning_cone{ pixel_x = -12 @@ -36818,22 +37079,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/containment) -"iAA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) "iAE" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -36842,19 +37087,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/engine_core) -"iAM" = ( -/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/aft_hallway) -"iBk" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/repair_bay) "iBl" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -36865,27 +37097,14 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"iBs" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"iBD" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/hallways/lower/repair_bay) -"iBT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 +"iBu" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/p_bow) "iBY" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/almayer{ @@ -36893,12 +37112,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"iCf" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/port_aft_hallway) "iCu" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -36919,6 +37132,14 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) +"iCD" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "iCF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -36931,40 +37152,24 @@ icon_state = "green" }, /area/almayer/living/offices) -"iCI" = ( -/obj/structure/largecrate/supply/supplies/mre, +"iDk" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) -"iDe" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - pixel_y = 0 + icon_state = "plate" }, +/area/almayer/maint/hull/lower/l_m_p) +"iDs" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "plate" }, -/area/almayer/medical/upper_medical) -"iDx" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/firealarm, -/obj/item/circuitboard, -/obj/item/clipboard, +/area/almayer/maint/hull/upper/u_a_s) +"iEa" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_stern) -"iDD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/p_bow) "iEg" = ( /turf/open/floor/almayer{ dir = 9; @@ -37008,10 +37213,17 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"iED" = ( -/obj/structure/curtain/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +"iEM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "iFc" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood/ship, @@ -37021,6 +37233,29 @@ icon_state = "bluefull" }, /area/almayer/living/pilotbunks) +"iFp" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iFA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Railguns and Viewing Room" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) "iFC" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -37048,14 +37283,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices) -"iFJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) "iFM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -37068,26 +37295,37 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) -"iGf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/dropship_equipment/fuel/cooling_system{ - layer = 3.5 +"iFS" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 8 }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 +/turf/open/floor/almayer{ + icon_state = "dark_sterile" }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 +/area/almayer/shipboard/brig/medical) +"iFY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" + icon_state = "plate" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/lower/cryo_cells) +"iGc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"iGi" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "iGn" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/closet/secure_closet/surgical{ @@ -37098,32 +37336,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) -"iGz" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"iGH" = ( -/obj/structure/platform_decoration, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, +"iGE" = ( /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"iGO" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "red" }, -/area/almayer/living/offices/flight) +/area/almayer/hallways/upper/aft_hallway) "iGQ" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 @@ -37135,6 +37353,15 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"iGZ" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "iHc" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) @@ -37146,10 +37373,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cells) -"iIa" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "iIj" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -37171,22 +37394,20 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"iIt" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +"iIH" = ( +/obj/structure/largecrate/supply/medicine/medivend{ + pixel_x = 3 }, -/area/almayer/maint/hull/upper/u_a_s) -"iIJ" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/largecrate/random/mini/med{ + pixel_x = 3; + pixel_y = 11; + density = 1 }, /turf/open/floor/almayer{ dir = 1; - icon_state = "blue" + icon_state = "sterile_green_side" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/medical/lower_medical_medbay) "iIP" = ( /obj/structure/toilet{ pixel_y = 16 @@ -37202,10 +37423,14 @@ /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{ - icon_state = "plate" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/upper/stern_hallway) "iIR" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -37217,21 +37442,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"iJb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -34 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"iJA" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "iJB" = ( /obj/structure/sign/safety/galley{ pixel_x = 8; @@ -37252,12 +37462,13 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"iJU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +"iJT" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "iKb" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -37287,15 +37498,6 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) -"iKB" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "iKD" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -37323,13 +37525,15 @@ icon_state = "mono" }, /area/almayer/engineering/port_atmos) -"iKP" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 +"iKV" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "iKZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -37362,17 +37566,15 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"iLo" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"iLm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "iLq" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -37397,13 +37599,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_lobby) -"iLv" = ( -/obj/item/stool{ - pixel_x = 15; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "iLG" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -37412,15 +37607,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"iLH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "iLO" = ( /turf/open/floor/almayer{ dir = 4; @@ -37455,6 +37641,35 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"iNk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"iNH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"iNR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "iNY" = ( /obj/structure/machinery/status_display{ pixel_x = 32; @@ -37462,40 +37677,56 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"iOt" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 18 +"iOo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"iOx" = ( /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "redcorner" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/shipboard/brig/starboard_hallway) "iOD" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"iPe" = ( +"iOP" = ( /turf/open/floor/almayer{ - dir = 8; + dir = 5; icon_state = "red" }, -/area/almayer/maint/hull/upper/u_a_p) -"iPm" = ( -/obj/structure/largecrate/random/barrel/green, +/area/almayer/hallways/upper/stern_hallway) +"iOX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"iPp" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "vehicle_elevator_railing_aux" +/area/almayer/maint/hull/lower/l_f_s) +"iPf" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"iPq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"iPt" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "iPv" = ( /obj/structure/bed/chair/comfy, /obj/structure/window/reinforced/ultra, @@ -37507,16 +37738,6 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"iPy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) "iPD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -37533,22 +37754,47 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"iPL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +"iPK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/almayer{ - dir = 6; - icon_state = "green" + dir = 8; + icon_state = "orange" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/hallways/upper/stern_hallway) +"iPN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "iPS" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ 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/aft_hallway) "iQd" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -37612,15 +37858,6 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) -"iQx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "iQB" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/card{ @@ -37640,27 +37877,35 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"iQK" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/stern) -"iQP" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +"iQJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/upper/aft_hallway) -"iQR" = ( -/obj/structure/sign/safety/storage{ +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; - pixel_y = 32 + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/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/aft_hallway) "iRy" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer, /area/almayer/living/gym) +"iRC" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/mp_bunks) "iRN" = ( /obj/structure/machinery/light/containment{ dir = 4 @@ -37677,9 +37922,6 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"iSe" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) "iSm" = ( /obj/structure/pipes/vents/pump, /obj/structure/mirror{ @@ -37726,33 +37968,43 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) -"iSr" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 +"iSu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) +"iSB" = ( +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) -"iSu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_s) +"iSL" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + dir = 1; + icon_state = "red" }, -/area/almayer/hallways/upper/stern_hallway) -"iSC" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/area/almayer/shipboard/brig/interrogation) +"iSV" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "2;7" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_p) "iSZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37783,20 +38035,16 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"iTf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "iTl" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"iTq" = ( +/obj/structure/curtain/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "iTw" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -37815,9 +38063,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"iTV" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +"iTQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"iUh" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "iUk" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie{ dir = 1 @@ -37859,26 +38118,11 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"iUD" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"iUS" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/u_m_p) -"iUU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, +"iUV" = ( /turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "bluecorner" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/upper/aft_hallway) "iUW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -37889,27 +38133,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"iVj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/item/tool/stamp/approved{ - pixel_y = -11; - pixel_x = -3 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"iVq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "iVy" = ( /turf/open/floor/almayer{ dir = 1; @@ -37922,6 +38145,15 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"iVG" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "iVP" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17; @@ -37933,11 +38165,13 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"iVQ" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"iWa" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "iWc" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -37958,22 +38192,37 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"iWD" = ( -/obj/structure/platform{ +"iWH" = ( +/obj/structure/machinery/light/small{ dir = 4 }, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/structure/janitorialcart, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) +"iWJ" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) +"iWQ" = ( +/obj/effect/landmark/start/researcher, +/obj/effect/landmark/late_join/researcher, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/living/offices) "iWR" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/prison{ icon_state = "kitchen" }, /area/almayer/engineering/upper_engineering) -"iWW" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "iXb" = ( /obj/structure/bed/chair/comfy/delta{ dir = 8 @@ -37982,12 +38231,28 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) +"iXm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "iXA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"iXB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "iXT" = ( /obj/item/trash/uscm_mre, /turf/open/floor/almayer, @@ -38034,6 +38299,12 @@ icon_state = "cargo_arrow" }, /area/almayer/medical/hydroponics) +"iYm" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "iYr" = ( /obj/structure/machinery/light{ dir = 4 @@ -38059,20 +38330,12 @@ icon_state = "plate" }, /area/almayer/living/gym) -"iYR" = ( -/obj/structure/largecrate/supply/medicine/medivend{ - pixel_x = 3 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = 3; - pixel_y = 11; - density = 1 - }, +"iZd" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" + icon_state = "plate" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/lower/l_m_p) "iZg" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -38082,22 +38345,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"iZh" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) -"iZq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "iZw" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; @@ -38115,9 +38362,6 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"iZy" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/vehiclehangar) "iZE" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/effect/decal/warning_stripes{ @@ -38131,15 +38375,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) -"iZN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "iZP" = ( /obj/structure/platform{ dir = 8 @@ -38173,6 +38408,12 @@ 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/stern_hallway) "jaf" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 4 @@ -38189,22 +38430,51 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"jap" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"jak" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"jaF" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"jao" = ( +/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) +"jas" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"jay" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_a_p) +"jaz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_umbilical) "jaH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/paper_bin/uscm{ @@ -38215,6 +38485,13 @@ icon_state = "plating" }, /area/almayer/command/airoom) +"jaI" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "jaM" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -38241,34 +38518,10 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) -"jaT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"jbl" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +"jaW" = ( +/obj/effect/landmark/start/reporter, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "jbq" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -38334,26 +38587,31 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"jbS" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +"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 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"jca" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "jcf" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"jcs" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +"jcE" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "jcP" = ( /turf/open/floor/almayer{ icon_state = "plating_striped" @@ -38373,6 +38631,21 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"jdn" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"jdu" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"jdC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "jdG" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -38383,27 +38656,20 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_three) +"jdZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "jeb" = ( /turf/closed/wall/almayer, /area/almayer/squads/alpha_bravo_shared) -"jed" = ( +"jei" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) -"jee" = ( -/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" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_p) "jeq" = ( /obj/structure/surface/rack, /obj/item/storage/box/pillbottles{ @@ -38419,18 +38685,27 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"jeu" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"jer" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"jev" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/device/taperecorder{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 8 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/lower/l_f_p) "jew" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer{ @@ -38452,15 +38727,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"jeN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "jeO" = ( /obj/structure/machinery/light{ dir = 4 @@ -38477,29 +38743,15 @@ icon_state = "red" }, /area/almayer/living/cryo_cells) -"jeW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"jfe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"jeR" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"jfn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/shipboard/brig/perma) "jfK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -38510,6 +38762,13 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"jfS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "jfY" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -38597,14 +38856,6 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) -"jgu" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "jgw" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 32 @@ -38623,17 +38874,20 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"jgW" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +"jgK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"jgS" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) "jhb" = ( /obj/structure/sign/safety/cryo{ pixel_x = -6; @@ -38641,12 +38895,27 @@ }, /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) +"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/stern_hallway) "jhn" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) +"jhs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "jht" = ( /obj/structure/machinery/vending/coffee{ density = 0; @@ -38669,6 +38938,10 @@ icon_state = "green" }, /area/almayer/living/offices) +"jhA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "jhD" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -38682,21 +38955,29 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"jhJ" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, +"jhK" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) -"jhN" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15 +/area/almayer/maint/hull/lower/l_a_p) +"jhR" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"jhS" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "jhW" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ @@ -38715,15 +38996,17 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/lobby) -"jiq" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"jiM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/engineering/lower/engine_core) +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "jiU" = ( /obj/structure/sink{ dir = 1; @@ -38743,19 +39026,13 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) -"jjm" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Lethal Injection Locker" - }, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/turf/open/floor/almayer{ - icon_state = "plate" +"jjl" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "vehicle_elevator_railing_aux" }, -/area/almayer/shipboard/brig/execution) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "jjn" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/eastright{ @@ -38771,13 +39048,16 @@ icon_state = "sterile_green" }, /area/almayer/medical/lower_medical_medbay) -"jjE" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"jjH" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution) "jjS" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -38791,10 +39071,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/medical_science) -"jkb" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "jkj" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, /obj/structure/machinery/light{ @@ -38811,20 +39087,17 @@ icon_state = "plate" }, /area/almayer/medical/morgue) -"jkp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +"jkq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "jks" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -38884,20 +39157,40 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"jlc" = ( +"jkN" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/starboard) -"jln" = ( +/area/almayer/maint/hull/lower/l_a_s) +"jkY" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "silver" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/hallways/lower/repair_bay) +"jlc" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/upper/starboard) "jlA" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -38909,6 +39202,11 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/containment) +"jlD" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) "jlG" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -38954,12 +39252,19 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"jmm" = ( -/obj/structure/machinery/gel_refiller, +"jme" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "sterile_green_side" + dir = 10; + icon_state = "red" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/shipboard/brig/starboard_hallway) "jmn" = ( /obj/structure/surface/table/almayer, /obj/item/prop/magazine/dirty{ @@ -38973,6 +39278,15 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) +"jmz" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "jmK" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -38999,12 +39313,45 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"jnl" = ( -/obj/structure/largecrate/supply/floodlights, +"jnc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/lower/port_midship_hallway) +"jne" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) +"jnh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) +"jno" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"jnx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "jnD" = ( /turf/open/floor/almayer{ dir = 1; @@ -39027,15 +39374,6 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/command/cic) -"jon" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) -"jot" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "joG" = ( /obj/structure/machinery/washing_machine, /obj/structure/sign/poster{ @@ -39052,6 +39390,16 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"joN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/starboard_hallway) "jpn" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -39086,40 +39434,12 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"jpu" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_s) -"jpy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"jpz" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) -"jpX" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/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" +"jpW" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/maint/upper/mess) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "jqP" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "ARES Interior"; @@ -39154,6 +39474,10 @@ icon_state = "green" }, /area/almayer/squads/req) +"jri" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "jrm" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -39164,12 +39488,38 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"jrx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"jru" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/structure/sign/safety/press_area_ag{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_umbilical) +"jrB" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"jrI" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "jrM" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ dir = 4 @@ -39179,22 +39529,17 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"jrN" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +"jsa" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/maint/lower/s_bow) -"jsj" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 }, -/area/almayer/maint/hull/lower/l_f_s) -"jsn" = ( -/obj/structure/bed/chair/office/dark, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/lower/port_fore_hallway) "jss" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -39203,6 +39548,14 @@ icon_state = "bluefull" }, /area/almayer/living/captain_mess) +"jsu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "jsx" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -39214,6 +39567,17 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"jsA" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) +"jsE" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "jsP" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39223,19 +39587,14 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"jta" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/effect/landmark/yautja_teleport, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"jsR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) "jtj" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -39244,47 +39603,37 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"jtr" = ( -/obj/structure/machinery/light{ - dir = 1 +"jts" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) -"jtv" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) -"jtG" = ( -/obj/effect/landmark/yautja_teleport, +/area/almayer/hallways/lower/port_aft_hallway) +"jtU" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"jtH" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/maint/hull/upper/u_m_p) +"jtZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ dir = 4; - icon_state = "pipe-c" + icon_state = "emerald" }, +/area/almayer/hallways/lower/port_midship_hallway) +"juo" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jtS" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"jtX" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, +/area/almayer/hallways/lower/port_fore_hallway) +"jux" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ dir = 1; - icon_state = "blue" + icon_state = "bluecorner" }, /area/almayer/hallways/upper/aft_hallway) -"jul" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "juD" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -39292,23 +39641,17 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"juV" = ( -/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 +"juS" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/hallways/lower/vehiclehangar) "juX" = ( /obj/structure/platform_decoration{ dir = 1 @@ -39354,21 +39697,41 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) -"jvv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"jvt" = ( +/obj/item/tool/warning_cone{ + pixel_x = -20; + pixel_y = 18 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"jvz" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "silvercorner" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/upper/aft_hallway) "jvB" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer/no_build{ dir = 4 }, /area/almayer/command/airoom) +"jvD" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) "jvM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -39379,10 +39742,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"jvO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) "jvP" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -39415,20 +39774,35 @@ "jvY" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/telecomms) -"jwa" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"jwi" = ( +/obj/structure/machinery/door_control{ + id = "InnerShutter"; + name = "Inner Shutter"; + pixel_x = 5; + pixel_y = 10 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 8 +/obj/item/toy/deck{ + pixel_x = -9 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = -7 +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) +"jwq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"jwJ" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "jwK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -39436,6 +39810,19 @@ 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/hull/upper/u_m_p) +"jwP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "jxi" = ( /obj/structure/machinery/sleep_console, /turf/open/floor/almayer{ @@ -39443,6 +39830,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"jxu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "jxx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39458,6 +39851,15 @@ }, /turf/open/floor/plating, /area/almayer/living/bridgebunks) +"jxX" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "jyb" = ( /turf/open/floor/almayer{ dir = 6; @@ -39468,6 +39870,20 @@ /obj/structure/machinery/light, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) +"jyJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/ladder{ + height = 2; + id = "cicladder3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) "jyR" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_one_access_txt = "7;23;27" @@ -39476,34 +39892,6 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) -"jyU" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"jyX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"jzb" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"jzp" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"jzu" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) "jzD" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; @@ -39522,6 +39910,13 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) +"jzT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "jzZ" = ( /obj/structure/platform_decoration, /turf/open/floor/almayer{ @@ -39535,22 +39930,16 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) -"jAl" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +"jAj" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) -"jAu" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jAy" = ( /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + icon_state = "orangecorner" }, /area/almayer/hallways/lower/starboard_aft_hallway) "jAz" = ( @@ -39594,12 +39983,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/morgue) -"jBI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "jBO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -39623,6 +40006,10 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) +"jCg" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) "jCn" = ( /obj/structure/surface/table/almayer, /obj/item/tool/screwdriver, @@ -39634,13 +40021,18 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"jCu" = ( -/obj/structure/platform{ - dir = 1 +"jCr" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/item/tool/mop, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/s_bow) +"jCx" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" + }, +/area/almayer/hallways/lower/port_midship_hallway) "jCK" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft"; @@ -39651,22 +40043,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"jDf" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"jDh" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "jDk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -39684,6 +40060,18 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"jDx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/interrogation) +"jDz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/lower/port_midship_hallway) "jDO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -39724,45 +40112,38 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"jEj" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/maint/hull/lower/l_m_s) -"jEm" = ( -/obj/structure/bed/sofa/south/white/right{ - pixel_y = 16 +"jEk" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/maint/hull/upper/u_m_p) -"jEo" = ( -/obj/structure/machinery/light{ - dir = 1 + dir = 4; + icon_state = "red" }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"jEt" = ( +/area/almayer/shipboard/brig/starboard_hallway) +"jEA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/hallways/upper/stern_hallway) -"jEv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"jEB" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_a_p) +"jEM" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "jES" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 @@ -39783,26 +40164,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"jFl" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"jFn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"jFt" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/lower/s_bow) "jFx" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/bucket{ @@ -39829,6 +40198,16 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"jFy" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/clipboard, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/squads/req) "jFE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -39836,6 +40215,21 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"jFI" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"jFP" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/medical) "jFY" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ @@ -39859,6 +40253,18 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"jGQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "jGR" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -39868,12 +40274,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"jGY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/upper/aft_hallway) "jHh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39883,38 +40283,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"jHs" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) -"jHw" = ( +"jHn" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) -"jHy" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/four{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/lower/s_bow) +"jHt" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/repair_bay) "jHC" = ( /turf/open/floor/almayer{ dir = 1; @@ -39937,60 +40314,34 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"jIo" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/chief_mp_office) -"jIH" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, +"jHX" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/brig/execution) -"jIM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform{ - dir = 8 +/area/almayer/maint/hull/upper/u_m_p) +"jIC" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"jIS" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" }, +/area/almayer/maint/upper/mess) +"jIJ" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer{ - allow_construction = 0 + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/lower/l_f_s) "jIT" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm/brig/chief, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"jIU" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "jIV" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -40009,34 +40360,6 @@ icon_state = "blue" }, /area/almayer/living/port_emb) -"jJl" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jJu" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/structure/sign/safety/med_life_support{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) -"jJF" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "jKn" = ( /turf/open/floor/almayer{ dir = 5; @@ -40084,15 +40407,12 @@ icon_state = "cargo" }, /area/almayer/engineering/port_atmos) -"jLa" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 - }, +"jLg" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/port_aft_hallway) "jLj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40108,29 +40428,12 @@ icon_state = "kitchen" }, /area/almayer/living/captain_mess) -"jLB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"jLM" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +"jLH" = ( +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/maint/hull/lower/l_m_p) "jLS" = ( /obj/structure/bed/chair/comfy/charlie, /obj/effect/decal/cleanable/dirt, @@ -40138,16 +40441,18 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"jLY" = ( -/obj/structure/disposalpipe/segment{ +"jMa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/lower/port_fore_hallway) "jMm" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null @@ -40204,6 +40509,15 @@ /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/aft_hallway) "jMQ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -40252,6 +40566,33 @@ icon_state = "test_floor4" }, /area/almayer/medical/containment/cell) +"jNo" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"jNw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/lower/port_fore_hallway) "jND" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -40259,6 +40600,11 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"jNG" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "jNT" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/execution) @@ -40317,6 +40663,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) +"jOq" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) +"jOt" = ( +/obj/item/trash/barcardine, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "jOx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -40369,28 +40725,24 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"jPA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"jPu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_x = 27 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"jPD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/shipboard/panic) +"jPx" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 + dir = 4 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_m_p) "jPP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -40403,30 +40755,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) -"jQa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"jPU" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/l_m_p) "jQt" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 8 }, /area/almayer/medical/containment/cell) -"jQK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "jRc" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/status_display{ @@ -40436,6 +40777,27 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"jRg" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_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/aft_hallway) +"jRp" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/toy/deck{ + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "jRz" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -40458,15 +40820,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"jRH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/perma) "jRK" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -40520,28 +40873,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"jSz" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"jSF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - dir = 1; - name = "\improper Command Power Substation" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/mess) "jSU" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -40570,20 +40901,6 @@ icon_state = "green" }, /area/almayer/living/offices) -"jTb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/device/flash, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) "jTj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -40593,12 +40910,46 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) +"jTt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "jTB" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orangecorner" }, /area/almayer/engineering/lower) +"jTE" = ( +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/starboard_hallway) +"jTH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "jTI" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -40606,6 +40957,21 @@ icon_state = "emerald" }, /area/almayer/squads/charlie_delta_shared) +"jTK" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/mp_bunks) "jUb" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/toy/deck{ @@ -40623,10 +40989,10 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"jUc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +"jUh" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "jUl" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -40664,18 +41030,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"jUK" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_s) "jUM" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ dir = 8 @@ -40685,6 +41039,16 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) +"jUV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "jUY" = ( /turf/open/floor/almayer{ icon_state = "silver" @@ -40702,16 +41066,6 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"jVi" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "jVr" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; @@ -40739,24 +41093,6 @@ icon_state = "test_floor5" }, /area/almayer/command/computerlab) -"jVM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"jVP" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution) "jWb" = ( /obj/structure/machinery/firealarm{ dir = 8; @@ -40769,15 +41105,6 @@ "jWh" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/port) -"jWn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "jWr" = ( /obj/structure/machinery/light{ dir = 4 @@ -40801,19 +41128,26 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"jXC" = ( -/obj/effect/landmark/start/doctor, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"jXL" = ( -/obj/structure/platform{ - dir = 8 +"jXf" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + id_tag = "or03"; + name = "Lobby" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/medical/lower_medical_medbay) +"jXR" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "jYc" = ( /obj/item/bedsheet/blue{ layer = 3.2 @@ -40856,33 +41190,24 @@ icon_state = "blue" }, /area/almayer/living/port_emb) -"jYh" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/welding, +"jYm" = ( +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"jYu" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"jYz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink" +/area/almayer/maint/hull/upper/p_stern) +"jYM" = ( +/obj/structure/ladder{ + height = 1; + id = "ForePortMaint" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/p_bow) "jYR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -40899,15 +41224,6 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"jYZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "jZd" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -40917,6 +41233,30 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_four) +"jZe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/hull/upper/u_a_p) +"jZo" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) "jZs" = ( /obj/structure/machinery/light/containment{ dir = 4 @@ -40952,15 +41292,6 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"jZz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) "jZC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -40973,43 +41304,36 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"jZD" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_s) -"jZS" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) "jZU" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /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/aft_hallway) "jZY" = ( /obj/structure/closet/l3closet/virology, /turf/open/floor/almayer{ icon_state = "redfull" }, /area/almayer/medical/upper_medical) -"kag" = ( -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, +"kac" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/tool/hand_labeler, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) -"kai" = ( -/obj/structure/largecrate/supply/ammo/shotgun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/s_bow) "kam" = ( /obj/item/tool/screwdriver{ layer = 2.9; @@ -41023,21 +41347,17 @@ "kan" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_medbay) -"kaw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +"kaq" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + allow_construction = 0; + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/lower/starboard_fore_hallway) "kaB" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -41080,19 +41400,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/bravo) -"kbh" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/repair_bay) "kbv" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) @@ -41118,23 +41425,6 @@ icon_state = "kitchen" }, /area/almayer/engineering/upper_engineering) -"kbz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "kbH" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresDown"; @@ -41162,19 +41452,16 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/containment) -"kbN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 +"kbT" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + dir = 1; + icon_state = "blue" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/upper/aft_hallway) "kbV" = ( /obj/structure/platform{ dir = 1 @@ -41191,6 +41478,17 @@ /obj/structure/machinery/camera/autoname/almayer, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"kcg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) "kcl" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -41201,6 +41499,12 @@ "kcp" = ( /turf/closed/wall/almayer, /area/almayer/living/auxiliary_officer_office) +"kcs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "kcA" = ( /obj/structure/machinery/light{ dir = 1 @@ -41210,16 +41514,18 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"kcG" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "kcH" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/synthcloset) "kcN" = ( /turf/closed/wall/almayer/reinforced/temphull, /area/almayer/living/commandbunks) -"kcR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "kde" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) @@ -41244,6 +41550,12 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"kdo" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "kdv" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -41252,18 +41564,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"kdx" = ( -/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/aft_hallway) "kdB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -41271,52 +41571,46 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"kdX" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"ked" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 8 }, /turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/maint/hull/upper/u_m_p) -"kel" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/revolver/m44{ - desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." + dir = 8; + icon_state = "sterile_green_side" }, +/area/almayer/shipboard/brig/medical) +"keE" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) -"keN" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/maint/hull/upper/u_a_s) +"keO" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/lower/l_a_p) "keR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) "kfa" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Warden's Office" }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/shipboard/brig/warden_office) "kfo" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -41334,6 +41628,13 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/port) +"kfB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "kfE" = ( /obj/structure/bed/sofa/south/grey/right, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -41355,24 +41656,6 @@ "kfU" = ( /turf/open/floor/plating, /area/almayer/powered/agent) -"kfV" = ( -/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/maint/hull/upper/u_f_p) -"kgg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) "kgp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -41404,17 +41687,29 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"kgQ" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +"kgt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kgD" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 35 }, -/obj/item/storage/firstaid/regular, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/brig/execution) +/area/almayer/maint/hull/lower/l_m_s) +"kgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "khd" = ( /obj/structure/bed/chair{ dir = 4 @@ -41436,36 +41731,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"khh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"khz" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/largecrate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "khD" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -41477,6 +41742,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"khI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "khJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -41494,23 +41768,12 @@ }, /area/almayer/command/airoom) "kil" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"kin" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/almayer/maint/hull/lower/l_a_s) +/obj/item/storage/belt/utility, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "kio" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -41523,6 +41786,24 @@ 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/aft_hallway) +"kiy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "kiG" = ( /obj/structure/machinery/power/smes/buildable, /obj/structure/machinery/status_display{ @@ -41546,6 +41827,14 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) +"kiR" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) "kiT" = ( /obj/structure/platform{ dir = 8 @@ -41582,18 +41871,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"kiY" = ( -/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/hull/upper/u_m_s) "kjk" = ( /obj/structure/machinery/cryopod/right, /obj/structure/sign/safety/cryo{ @@ -41603,6 +41880,22 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) +"kjw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "kjD" = ( /obj/structure/machinery/computer/demo_sim{ dir = 4; @@ -41616,60 +41909,24 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"kjE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "kjO" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orangecorner" }, /area/almayer/engineering/lower/engine_core) -"kjY" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"kkd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +"kjW" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"kkg" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"kki" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"kkj" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/largecrate/random/barrel/red, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = -2; - pixel_y = 16 + icon_state = "cargo" }, +/area/almayer/hallways/lower/port_midship_hallway) +"kjY" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/lower/l_a_s) "kkk" = ( /obj/structure/machinery/power/monitor{ name = "Core Power Monitoring" @@ -41682,26 +41939,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"kkm" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"kko" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"kks" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) "kkt" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/marine_law, @@ -41729,16 +41966,17 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"kkV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Workshop Vendors" - }, -/obj/structure/pipes/standard/simple/hidden/supply, +"kkI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"kkN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/lower/starboard_aft_hallway) "kkW" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/atmospipes, @@ -41748,26 +41986,12 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"klf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"klk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"klr" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "silver" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/hallways/upper/aft_hallway) "klH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -41776,6 +42000,10 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) +"klT" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "kmd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -41798,39 +42026,22 @@ icon_state = "plate" }, /area/almayer/living/offices) -"kmu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"kmA" = ( +"kmx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 9; + icon_state = "green" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/upper/aft_hallway) "kmE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"kmL" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"kmZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) "kng" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -41839,16 +42050,19 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"kni" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +"knl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/starboard_aft_hallway) +"knm" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "knH" = ( /obj/structure/machinery/vending/coffee, /obj/structure/sign/safety/coffee{ @@ -41871,46 +42085,13 @@ icon_state = "cargo" }, /area/almayer/lifeboat_pumps/south2) -"knN" = ( -/obj/structure/sign/safety/three{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"knO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ +"kow" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"koa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"kog" = ( -/obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"kov" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/hull/lower/l_f_p) "koB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -41944,12 +42125,11 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/engine_core) -"kpl" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) +"kpj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "kpo" = ( /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" @@ -41958,23 +42138,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"kpr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) -"kps" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) "kpQ" = ( /obj/structure/machinery/door_control{ id = "engidorm"; @@ -41987,6 +42150,20 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"kqb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"kqm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "kqt" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -41997,22 +42174,6 @@ icon_state = "test_floor4" }, /area/almayer/living/bridgebunks) -"kqu" = ( -/obj/item/folder/red{ - desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; - name = "folder: 28"; - pixel_x = -4; - pixel_y = 5 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/crayon{ - pixel_x = 9; - pixel_y = -2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "kqv" = ( /obj/structure/machinery/light{ dir = 1 @@ -42039,13 +42200,32 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"kqI" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +"kqB" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"kqC" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "kqK" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -42067,21 +42247,6 @@ icon_state = "bluecorner" }, /area/almayer/living/basketball) -"krm" = ( -/obj/item/paper/prison_station/interrogation_log{ - pixel_x = 10; - pixel_y = 7 - }, -/obj/structure/largecrate/random/barrel/green, -/obj/item/limb/hand/l_hand{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "krp" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/cups, @@ -42092,23 +42257,6 @@ icon_state = "plate" }, /area/almayer/living/gym) -"krq" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_umbilical) -"kru" = ( -/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/aft_hallway) "kry" = ( /obj/structure/machinery/flasher{ id = "Perma 1"; @@ -42118,13 +42266,17 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"krA" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 +"krG" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/s_bow) +"krJ" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "krN" = ( /obj/structure/machinery/conveyor{ id = "req_belt" @@ -42194,25 +42346,49 @@ icon_state = "cargo" }, /area/almayer/squads/bravo) -"ksH" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) +"ksw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) "ksN" = ( /turf/open/floor/almayer/uscm/directional{ dir = 6 }, /area/almayer/living/briefing) -"ktH" = ( +"kti" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 }, -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ktl" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ktI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ dir = 4; - name = "ship-grade camera" + icon_state = "silver" }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/hallways/lower/repair_bay) +"ktR" = ( +/obj/item/trash/crushed_cup, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "ktX" = ( /turf/open/floor/almayer{ dir = 4; @@ -42230,27 +42406,12 @@ /obj/structure/machinery/vending/security/riot, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"kuj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "kuk" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"kus" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "kuu" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -42264,9 +42425,6 @@ icon_state = "emeraldcorner" }, /area/almayer/living/briefing) -"kuI" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) "kuJ" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer{ @@ -42274,15 +42432,14 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"kuZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +"kuK" = ( +/obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "kvf" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -42307,15 +42464,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) -"kvj" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "kvU" = ( /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, @@ -42340,6 +42488,21 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering) +"kwg" = ( +/obj/structure/bookcase/manuals/medical, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) +"kwi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "kwo" = ( /obj/structure/surface/rack, /turf/open/floor/almayer, @@ -42363,13 +42526,13 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"kwU" = ( -/obj/structure/machinery/photocopier, +"kwX" = ( +/obj/structure/machinery/iv_drip, /turf/open/floor/almayer{ - dir = 10; - icon_state = "red" + dir = 1; + icon_state = "sterile_green_side" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/shipboard/brig/medical) "kxd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -42383,6 +42546,14 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) +"kxe" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "kxo" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -42405,6 +42576,9 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) +"kxU" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/medical) "kyh" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -42424,13 +42598,9 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) -"kyH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +"kyw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_s) "kyN" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/safety/distribution_pipes{ @@ -42441,19 +42611,9 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"kyQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/heart/prosthetic{ - pixel_x = -4 - }, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) +"kyP" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_p) "kyR" = ( /obj/structure/safe/co_office, /obj/item/weapon/pole/fancy_cane, @@ -42483,12 +42643,16 @@ /obj/structure/machinery/vending/walkman, /turf/open/floor/almayer, /area/almayer/living/briefing) -"kzd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +"kzc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/u_f_p) "kzk" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -42507,6 +42671,21 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/execution) +"kzs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"kzv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/starboard_hallway) "kzy" = ( /obj/structure/bed/chair, /turf/open/floor/almayer{ @@ -42565,6 +42744,15 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"kzR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "kzT" = ( /obj/structure/machinery/door_control{ id = "ARES StairsLower"; @@ -42587,49 +42775,80 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"kAk" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"kAj" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/hallways/lower/port_aft_hallway) "kAm" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"kAC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"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; + status = 3; + icon_state = "bulb-burned" + }, +/obj/effect/decal/cleanable/blood, +/obj/item/prop{ + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + desc = "A blood bag with a hole in it. The rats must have gotten to it first." + }, +/obj/item/prop{ + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + desc = "A blood bag with a hole in it. The rats must have gotten to it first." + }, +/obj/item/prop{ + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + desc = "A blood bag with a hole in it. The rats must have gotten to it first." + }, +/obj/item/prop{ + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + name = "circuit board"; + desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; + layer = 2.78; + pixel_y = 10; + pixel_x = 8 + }, +/obj/item/prop{ + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + name = "circuit board"; + desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; + layer = 2.79; + pixel_y = 7; + pixel_x = 8 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "sterile_green_corner" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/medical/lower_medical_medbay) +"kAv" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "kAL" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"kAN" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"kAO" = ( -/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/hull/upper/u_a_p) "kAU" = ( /obj/structure/platform{ dir = 4 @@ -42639,37 +42858,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"kAW" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_fore_hallway) -"kBh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - dir = 2; - name = "\improper Execution Equipment" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/execution) "kBo" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -42703,6 +42891,14 @@ icon_state = "cargo" }, /area/almayer/living/tankerbunks) +"kCd" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/lower/vehiclehangar) "kCi" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/port_missiles) @@ -42725,11 +42921,14 @@ }, /area/almayer/hallways/hangar) "kCo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) +"kCu" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/upper/u_a_s) "kCE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -42745,34 +42944,26 @@ icon_state = "dark_sterile" }, /area/almayer/medical/containment) -"kCG" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +"kCY" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hallways/upper/stern_hallway) -"kCH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/shipboard/brig/execution_storage) +"kDd" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kCN" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"kDj" = ( -/obj/structure/bed, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/lower/l_a_s) "kDk" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -42795,13 +42986,6 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"kDP" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/prop/broken_arcade, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "kDR" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -42815,24 +42999,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"kDT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) -"kDZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "kEc" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -42886,16 +43052,24 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"kEJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 +"kEw" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/shipboard/brig/medical) +"kEE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"kEW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "kFe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/firealarm{ @@ -42906,12 +43080,6 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"kFi" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "kFs" = ( /obj/structure/machinery/light{ dir = 4 @@ -42926,19 +43094,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"kFL" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) -"kFM" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "kFO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -42950,34 +43105,22 @@ icon_state = "plating" }, /area/almayer/squads/req) +"kFU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "kFY" = ( /obj/structure/sign/safety/cryo{ pixel_x = 7 }, /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) -"kGa" = ( -/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/aft_hallway) -"kGh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) +"kGi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "kGu" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -42990,14 +43133,12 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) -"kGz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"kGw" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/port_fore_hallway) "kGF" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -43016,30 +43157,11 @@ icon_state = "containment_corner_variant_2" }, /area/almayer/medical/containment/cell) -"kGZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, +"kGS" = ( /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"kHa" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/surgery) -"kHb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + icon_state = "mono" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/upper/aft_hallway) "kHd" = ( /obj/structure/machinery/computer/arcade, /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -43051,31 +43173,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"kHq" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_s) -"kHv" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"kHx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "kHS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -43094,36 +43191,25 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"kId" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kIj" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) -"kIr" = ( +"kIf" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"kIk" = ( /obj/structure/prop/invuln/lattice_prop{ dir = 1; icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 + pixel_x = 16; + pixel_y = -16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"kIl" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "kIP" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -43132,11 +43218,25 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) -"kIR" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"kJc" = ( +/obj/structure/ladder{ + height = 1; + id = "ForeStarboardMaint" }, -/area/almayer/hallways/lower/port_aft_hallway) +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/s_bow) +"kJh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "kJi" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -43149,21 +43249,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"kJw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"kJD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "kJH" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -43198,15 +43283,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/commandbunks) -"kKf" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, +"kJZ" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ - icon_state = "blue" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_a_s) "kKk" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -43235,12 +43317,24 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"kKB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_aft_hallway) "kKR" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"kKY" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "kLc" = ( /obj/structure/machinery/door/airlock/almayer/maint{ req_one_access = null; @@ -43259,14 +43353,57 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"kMk" = ( +"kLm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/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/hull/upper/u_m_s) +"kLE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kLP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/open/floor/almayer{ - icon_state = "mono" + dir = 8; + icon_state = "greencorner" }, -/area/almayer/hallways/upper/aft_hallway) +/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/hull/upper/u_a_s) +"kMa" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "kMp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -43279,6 +43416,17 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"kMr" = ( +/obj/item/trash/uscm_mre, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "kMH" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 1"; @@ -43302,14 +43450,37 @@ icon_state = "outerhull_dir" }, /area/almayer/engineering/upper_engineering/port) +"kMR" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "kMW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/s_bow) +"kNf" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) "kNk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -43322,11 +43493,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"kNr" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/lower/repair_bay) +"kNq" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_p) "kNx" = ( /obj/structure/sign/safety/ref_bio_storage{ pixel_x = -17; @@ -43402,16 +43571,6 @@ icon_state = "bluefull" }, /area/almayer/living/pilotbunks) -"kOF" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "kOH" = ( /obj/structure/machinery/light{ dir = 8 @@ -43424,35 +43583,84 @@ icon_state = "dark_sterile" }, /area/almayer/command/corporateliaison) -"kPx" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/mass_spectrometer, -/obj/item/device/mass_spectrometer, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/chemistry) -"kPB" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/bed/chair{ - dir = 4 +"kOJ" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/obj/structure/machinery/power/apc/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"kOR" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) +"kOW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"kPf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + dir = 2; + name = "\improper Execution Equipment" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/execution_storage) +"kPx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/mass_spectrometer, +/obj/item/device/mass_spectrometer, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/chemistry) +"kPB" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" }, /area/almayer/living/basketball) "kPG" = ( @@ -43502,11 +43710,14 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"kQm" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"kQr" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, +/obj/item/tool/lighter/random{ + pixel_x = 13 }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "kQu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -43518,22 +43729,6 @@ allow_construction = 0 }, /area/almayer/shipboard/brig/processing) -"kQP" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"kQZ" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "kRd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -43549,6 +43744,21 @@ 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/hull/upper/u_m_s) "kRD" = ( /obj/item/reagent_container/glass/bucket/janibucket, /obj/structure/machinery/light{ @@ -43566,6 +43776,13 @@ 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/hull/upper/u_a_p) "kRP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/prop/magazine/dirty/torn, @@ -43575,6 +43792,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"kRU" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/lower/repair_bay) +"kSn" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "kSv" = ( /obj/item/reagent_container/glass/bucket/janibucket, /turf/open/floor/almayer{ @@ -43598,11 +43837,16 @@ }, /area/almayer/command/airoom) "kSA" = ( -/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/lower/port_fore_hallway) "kSH" = ( /obj/structure/sign/prop1{ pixel_y = 32 @@ -43627,26 +43871,6 @@ icon_state = "plating" }, /area/almayer/squads/req) -"kTn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) -"kTp" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, -/area/almayer/hallways/upper/aft_hallway) -"kTt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "kTv" = ( /obj/structure/machinery/light{ dir = 4 @@ -43656,23 +43880,6 @@ icon_state = "tcomms" }, /area/almayer/command/telecomms) -"kTB" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"kTF" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/item/storage/belt/utility, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "kTN" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -43701,15 +43908,37 @@ icon_state = "test_floor4" }, /area/almayer/living/pilotbunks) -"kUr" = ( -/obj/structure/sign/poster{ - pixel_y = -32 +"kUs" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/upper/aft_hallway) +"kUA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"kUI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kUL" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "kUQ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/machinery/constructable_frame, @@ -43730,6 +43959,19 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) +"kVE" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 24 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/interrogation) "kVV" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -43748,13 +43990,13 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) "kWc" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) "kWk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -43777,15 +44019,14 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"kWA" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/p_bow) -"kWG" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +"kWI" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, /turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "test_floor4" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/lower/l_f_s) "kWN" = ( /obj/structure/sign/poster{ desc = "It says DRUG."; @@ -43830,23 +44071,6 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"kXb" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"kXe" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "kXf" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -43876,12 +44100,6 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) -"kXq" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "kXu" = ( /turf/open/floor/almayer{ dir = 8; @@ -43903,48 +44121,12 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"kXV" = ( +"kYl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Railguns and Viewing Room" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) -"kYb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "Under Construction Shutters"; - name = "shutter-control"; - pixel_x = -25 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"kYj" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 35 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"kYs" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" + dir = 9 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "kYt" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/bible{ @@ -44024,30 +44206,12 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"lad" = ( -/obj/item/tool/wrench{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "lah" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "emerald" }, /area/almayer/living/gym) -"laB" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"laC" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "laM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -44069,6 +44233,13 @@ }, /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/hull/upper/u_a_s) "laQ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -44103,6 +44274,23 @@ }, /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/aft_hallway) "lbf" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -44148,15 +44336,6 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"lcj" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "lcy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -44168,28 +44347,6 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) -"lcz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) -"lcL" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) -"lcM" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "lcV" = ( /obj/structure/bed/chair{ dir = 4 @@ -44205,17 +44362,23 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"lcZ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"ldb" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/starboard_fore_hallway) "ldc" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/lower/workshop) +"lde" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "ldl" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 @@ -44224,6 +44387,16 @@ 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/aft_hallway) "ldt" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -44234,18 +44407,22 @@ icon_state = "plate" }, /area/almayer/living/gym) -"ldu" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "ldC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/captain_mess) +"ldF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"ldW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "lea" = ( /obj/structure/sink{ dir = 4; @@ -44292,36 +44469,12 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"leC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"leL" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, +"leM" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"leQ" = ( -/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/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/s_stern) "leY" = ( /obj/structure/bed/sofa/south/white/left, /turf/open/floor/almayer{ @@ -44329,32 +44482,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"leZ" = ( -/obj/structure/machinery/door_control/cl/quarter/backdoor{ - pixel_x = -25; - pixel_y = 23 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) -"lfa" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"lfs" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "lft" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/fire, @@ -44363,6 +44490,13 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"lfx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"lfz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "lfH" = ( /obj/structure/machinery/light{ dir = 4 @@ -44372,19 +44506,12 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"lgo" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, +"lgk" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/s_bow) "lgt" = ( /obj/structure/sink{ dir = 4; @@ -44434,17 +44561,20 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"lgI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"lhj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -34 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"lgM" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"lhs" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "lht" = ( /turf/open/floor/almayer{ dir = 6; @@ -44486,12 +44616,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"lhS" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "lhX" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -44500,15 +44624,23 @@ /turf/open/floor/wood/ship, /area/almayer/living/basketball) "lia" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) +"lib" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, /turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" + icon_state = "plate" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/lower/stern) "lid" = ( /obj/structure/machinery/chem_master{ vial_maker = 1 @@ -44517,34 +44649,6 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"lij" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"lim" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -7; - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "lin" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -44562,10 +44666,34 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"lit" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/interrogation) "liF" = ( -/obj/structure/closet/firecloset, +/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/hull/lower/stern) +/area/almayer/maint/hull/upper/u_a_s) "liJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -44608,43 +44736,29 @@ icon_state = "plate" }, /area/almayer/living/gym) -"ljl" = ( -/obj/structure/prop/invuln/pipe_water, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +"ljm" = ( +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" }, +/obj/structure/closet/crate, +/obj/item/clothing/suit/storage/hazardvest/black, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/lower/l_f_p) "ljs" = ( /obj/effect/landmark/start/marine/spec/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"lju" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ljD" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"ljv" = ( +/turf/closed/wall/almayer, /area/almayer/maint/hull/lower/l_a_p) "ljG" = ( /obj/structure/closet/crate/freezer, @@ -44689,6 +44803,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"lka" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "lkd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -44715,14 +44839,6 @@ icon_state = "red" }, /area/almayer/living/offices/flight) -"lkg" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "lkm" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ @@ -44755,14 +44871,6 @@ icon_state = "plate" }, /area/almayer/squads/charlie) -"lkN" = ( -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "lkV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -44781,30 +44889,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"lli" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_y = 32 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_umbilical) -"lls" = ( -/obj/item/trash/crushed_cup, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"llF" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "llK" = ( /obj/structure/platform_decoration{ dir = 4 @@ -44820,15 +44904,19 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"llQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"lma" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"lmi" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/turf/open/floor/almayer{ + icon_state = "mono" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/medical/upper_medical) "lml" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -44836,6 +44924,13 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"lmq" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "lmw" = ( /obj/structure/closet/l3closet/general, /obj/structure/machinery/light{ @@ -44847,13 +44942,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"lmy" = ( -/obj/structure/sign/safety/restrictedarea, -/obj/structure/sign/safety/security{ - pixel_x = 15 - }, -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) "lmz" = ( /turf/closed/wall/almayer/white/hull, /area/space) @@ -44868,21 +44956,6 @@ "lmK" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/securestorage) -"lmW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/bulbs{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"lnb" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_a_s) "lne" = ( /obj/structure/bed/chair, /turf/open/floor/almayer{ @@ -44912,24 +44985,10 @@ icon_state = "silvercorner" }, /area/almayer/shipboard/brig/cic_hallway) -"lnE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"lnG" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/panic) +"lnD" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_s) "lnP" = ( /obj/structure/machinery/vending/cola, /obj/structure/window/reinforced, @@ -45030,6 +45089,9 @@ }, /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) "loK" = ( /obj/structure/closet/crate/medical, /obj/item/storage/firstaid/adv, @@ -45044,19 +45106,6 @@ "loP" = ( /turf/closed/wall/almayer, /area/almayer/engineering/laundry) -"loQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_s) "loS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -45102,12 +45151,15 @@ icon_state = "cargo" }, /area/almayer/living/commandbunks) -"lpj" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"lpl" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "lpt" = ( /turf/open/floor/almayer{ icon_state = "blue" @@ -45121,30 +45173,11 @@ icon_state = "test_floor4" }, /area/almayer/powered/agent) -"lpH" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"lpM" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"lqd" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, +"lql" = ( /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/lower/starboard_umbilical) "lqF" = ( /turf/open/floor/almayer{ dir = 9; @@ -45162,10 +45195,6 @@ icon_state = "emerald" }, /area/almayer/hallways/hangar) -"lqL" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) "lqN" = ( /obj/item/device/assembly/mousetrap/armed, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -45176,21 +45205,31 @@ icon_state = "orange" }, /area/almayer/living/port_emb) +"lrd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "lrq" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/armory) -"lrD" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) +"lrE" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/s_bow) "lrF" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"lrH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "lrT" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, @@ -45214,6 +45253,15 @@ }, /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/hull/upper/u_a_s) "lsn" = ( /obj/structure/surface/table/almayer, /obj/item/paper{ @@ -45225,6 +45273,12 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) +"lso" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "lsp" = ( /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Conference Room" @@ -45252,12 +45306,6 @@ icon_state = "red" }, /area/almayer/living/offices/flight) -"lsQ" = ( -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "lsV" = ( /obj/structure/largecrate/random/barrel/red, /obj/structure/sign/safety/fire_haz{ @@ -45283,34 +45331,47 @@ /obj/effect/landmark/start/working_joe, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/airoom) -"ltn" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +"ltm" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_a_p) "lto" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/almayer{ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"ltw" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"ltt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/upper/aft_hallway) +"ltv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"ltw" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"lty" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "ltA" = ( /obj/item/tool/weldingtool, /turf/open/floor/almayer, @@ -45343,9 +45404,12 @@ icon_state = "test_floor4" }, /area/almayer/living/commandbunks) -"luJ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) +"luE" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "luS" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/cardboard{ @@ -45428,12 +45492,6 @@ /obj/structure/machinery/cm_vending/sorted/tech/circuits, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) -"lwv" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/upper/aft_hallway) "lwC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -45447,6 +45505,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"lwG" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "lwJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -45455,20 +45519,20 @@ icon_state = "emeraldfull" }, /area/almayer/squads/charlie) -"lwK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"lwY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/main_office) -"lxm" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "test_floor4" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/upper/u_f_p) +"lxd" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_umbilical) "lxo" = ( /obj/structure/sign/safety/hazard{ pixel_x = -17; @@ -45482,32 +45546,12 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) -"lxq" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"lxy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) "lxE" = ( /obj/structure/machinery/cm_vending/clothing/commanding_officer, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/living/commandbunks) -"lxO" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_umbilical) "lxT" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/almayer{ @@ -45522,23 +45566,6 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) -"lyc" = ( -/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/aft_hallway) "lyk" = ( /obj/structure/sign/safety/storage{ pixel_x = -17 @@ -45548,12 +45575,37 @@ icon_state = "green" }, /area/almayer/squads/req) +"lym" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) +"lyq" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" + }, +/area/almayer/hallways/lower/port_midship_hallway) "lyw" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"lyz" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/heart/prosthetic{ + pixel_x = -4 + }, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "lyE" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -45561,28 +45613,14 @@ icon_state = "silvercorner" }, /area/almayer/command/computerlab) -"lyL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "lyP" = ( -/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/lower/port_fore_hallway) -"lyV" = ( -/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ icon_state = "plate" }, +/area/almayer/maint/hull/lower/s_bow) +"lyW" = ( +/turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_m_p) "lyX" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ @@ -45625,19 +45663,26 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"lzY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +"lzF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/chief_mp_office) -"lAg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) +"lAa" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/emergency, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "lAl" = ( /turf/open/floor/almayer{ dir = 4; @@ -45674,28 +45719,25 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"lAR" = ( +"lBf" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer{ - dir = 9; + dir = 10; icon_state = "red" }, -/area/almayer/hallways/lower/port_fore_hallway) -"lAX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/upper/stern_hallway) "lBg" = ( /obj/structure/bedsheetbin, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"lBj" = ( -/obj/effect/landmark/yautja_teleport, +"lBl" = ( +/obj/structure/sink{ + pixel_y = 24 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/lower/s_bow) "lBv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -45708,28 +45750,46 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"lBF" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/clipboard, -/obj/item/tool/pen, +"lBw" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = -17 + }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + icon_state = "cargo" }, -/area/almayer/squads/req) -"lBO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/maint/hull/upper/u_m_p) +"lBB" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"lCp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/main_office) +/area/almayer/maint/upper/u_m_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{ + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"lCm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "lCr" = ( /turf/open/floor/almayer{ icon_state = "redfull" @@ -45758,14 +45818,41 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"lCT" = ( -/obj/structure/machinery/conveyor_switch{ - id = "lower_garbage" +"lCN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 }, +/obj/item/storage/firstaid/adv, +/obj/item/device/defibrillator, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "sterile_green_side" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/shipboard/brig/medical) +"lDa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lDk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "lDn" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -45773,6 +45860,26 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"lDA" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"lDL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) "lDN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -45791,6 +45898,15 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) +"lDT" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "lDV" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, @@ -45826,18 +45942,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) -"lEz" = ( -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "lEF" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -45848,15 +45952,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"lEI" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "lEO" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -45864,15 +45959,21 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"lEX" = ( -/obj/structure/machinery/light{ +"lEV" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) +"lFd" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/machinery/light, /turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" + icon_state = "red" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/shipboard/brig/starboard_hallway) "lFe" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -45909,6 +46010,16 @@ "lFp" = ( /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop/hangar) +"lFr" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "lFt" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, /obj/structure/sign/safety/maint{ @@ -45920,10 +46031,17 @@ icon_state = "cargo" }, /area/almayer/engineering/starboard_atmos) -"lFv" = ( -/obj/effect/landmark/yautja_teleport, +"lFw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/lower/starboard_midship_hallway) "lFA" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pouch/tools/tank, @@ -45965,17 +46083,18 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) "lFL" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_bow) -"lFZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "green" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "lGg" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer{ @@ -45983,71 +46102,25 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"lGi" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"lGo" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"lGH" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) -"lGI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"lGV" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"lGW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) -"lGZ" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"lHk" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/upper/s_bow) "lHu" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "greencorner" }, /area/almayer/living/grunt_rnr) -"lHE" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +"lHB" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "lHG" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; @@ -46062,18 +46135,9 @@ icon_state = "test_floor4" }, /area/almayer/living/grunt_rnr) -"lHU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"lHV" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) +"lIj" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/mess) "lIp" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 @@ -46083,6 +46147,20 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) +"lIu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "lII" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -46091,21 +46169,18 @@ icon_state = "mono" }, /area/almayer/engineering/port_atmos) +"lIQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "lIU" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/port) -"lJb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "lJu" = ( /obj/structure/barricade/metal{ dir = 1 @@ -46169,6 +46244,12 @@ icon_state = "dark_sterile" }, /area/almayer/shipboard/brig/cells) +"lJM" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "lJO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -46215,44 +46296,29 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"lLe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "lLl" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) -"lLs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"lLx" = ( -/obj/structure/machinery/light/small{ - dir = 8 + icon_state = "greencorner" }, -/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/hull/upper/u_a_s) +/area/almayer/hallways/lower/port_fore_hallway) "lLC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/squads/charlie) +"lLO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "lLS" = ( /obj/structure/sign/safety/galley{ pixel_x = 32 @@ -46286,12 +46352,33 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"lMw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) "lMx" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/starboard) +"lMO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "lMY" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -46301,6 +46388,12 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) +"lNk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "lNw" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -46316,38 +46409,19 @@ icon_state = "plate" }, /area/almayer/squads/charlie) -"lNz" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/part_fabricator/dropship, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) -"lNN" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) "lNR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop) -"lOa" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"lOn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"lOj" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) "lOr" = ( /obj/structure/window/framed/almayer, @@ -46359,10 +46433,6 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"lOt" = ( -/obj/effect/landmark/start/liaison, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "lOH" = ( /obj/structure/sink{ pixel_y = 32 @@ -46372,16 +46442,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_two) -"lOI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "lON" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -46413,24 +46473,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"lPo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/two{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "lPB" = ( /obj/structure/surface/table/almayer, /obj/item/device/lightreplacer, @@ -46456,14 +46498,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"lPE" = ( -/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/hull/upper/u_a_s) "lPO" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ @@ -46471,10 +46505,10 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"lPP" = ( -/obj/structure/largecrate/random/barrel/green, +"lPW" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_m_p) "lQa" = ( /obj/structure/machinery/light{ dir = 8 @@ -46487,18 +46521,32 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"lQk" = ( -/obj/structure/largecrate/supply/supplies/water, +"lQf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer{ - icon_state = "red" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_f_p) "lQz" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/squads/bravo) +"lQB" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "lQG" = ( /obj/structure/machinery/computer/tech_control, /turf/open/floor/plating/plating_catwalk, @@ -46517,24 +46565,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_three) -"lRe" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) -"lRo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "lRs" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -46548,6 +46578,10 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"lRt" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "lRE" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -46557,21 +46591,11 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"lRL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "lRP" = ( /obj/structure/surface/table/almayer, /obj/item/prop/helmetgarb/chaplain_patch, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"lRV" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "lRX" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, @@ -46604,23 +46628,21 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"lSF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"lSJ" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" + icon_state = "plate" }, -/area/almayer/squads/req) -"lSH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/s_bow) +"lSX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "lTt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -46640,18 +46662,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"lTL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"lTY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) "lUm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ name = "\improper Brig Cells"; @@ -46664,12 +46674,24 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/processing) -"lUr" = ( -/obj/structure/largecrate/random/case/double, +"lUA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, /turf/open/floor/almayer{ - icon_state = "cargo" + dir = 5; + icon_state = "red" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/port_fore_hallway) +"lUQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "lVl" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer, @@ -46678,28 +46700,17 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"lVv" = ( +"lVR" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, /obj/structure/platform{ - dir = 1 + dir = 8 }, -/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"lVK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, -/area/almayer/squads/req) +/area/almayer/maint/hull/upper/u_a_p) "lVS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -46710,6 +46721,17 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"lVW" = ( +/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/maint/hull/upper/u_f_p) "lVX" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/overwatch/almayer{ @@ -46731,12 +46753,12 @@ icon_state = "plate" }, /area/almayer/command/cic) -"lWq" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +"lVZ" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/hallways/lower/starboard_umbilical) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "lWr" = ( /obj/structure/largecrate/random/case, /turf/open/floor/almayer{ @@ -46744,15 +46766,25 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"lWA" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +"lWt" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_m_s) +"lWO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/upper/mess) +"lWY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "lXb" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -46788,9 +46820,8 @@ /area/almayer/living/offices) "lYg" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "lYk" = ( /obj/item/trash/c_tube{ pixel_x = 16; @@ -46800,9 +46831,14 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"lYm" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) +"lYt" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "lYL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -46820,25 +46856,18 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"lYS" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) -"lYT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"lYZ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" +"lZb" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "lZs" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/radio/intercom{ @@ -46861,38 +46890,50 @@ icon_state = "plate" }, /area/almayer/command/cic) -"lZt" = ( -/obj/structure/disposalpipe/segment{ +"lZI" = ( +/obj/structure/prop/invuln/lattice_prop{ dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) -"lZD" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/area/almayer/maint/hull/lower/l_m_p) +"lZM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/cryo_cells) "lZZ" = ( /obj/structure/machinery/autolathe/medilathe/full, /turf/open/floor/almayer{ icon_state = "test_floor4" }, /area/almayer/medical/hydroponics) -"maG" = ( -/obj/structure/largecrate/random/case, +"maB" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "red" }, -/area/almayer/maint/hull/upper/u_a_p) +/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/aft_hallway) "maI" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -46901,6 +46942,10 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"maK" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "maL" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/protein_pack, @@ -46930,42 +46975,15 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"maU" = ( -/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_m_p) -"mba" = ( -/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/aft_hallway) -"mbp" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +"mbu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) "mbx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -46975,42 +46993,21 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"mch" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "safe_armory"; - name = "\improper Hangar Armory Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/panic) -"mcs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +"mbR" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"mcJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, +/obj/item/tool/pen, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"mcz" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 + dir = 8; + icon_state = "red" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/shipboard/brig/starboard_hallway) "mcL" = ( /obj/structure/machinery/vending/snack, /obj/structure/sign/safety/maint{ @@ -47028,67 +47025,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"mcY" = ( -/turf/open/floor/almayer{ +"mdk" = ( +/obj/structure/machinery/door/poddoor/railing{ dir = 4; - icon_state = "red" + id = "vehicle_elevator_railing_aux" }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "mdo" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/squads/alpha) -"mdF" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) -"mdG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"mdH" = ( -/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/stern_hallway) -"mdT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/pistol{ - current_rounds = 0 - }, -/obj/item/weapon/gun/pistol/m4a3{ - current_mag = null +"mdC" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, /turf/open/floor/almayer{ - dir = 9; - icon_state = "red" + dir = 8; + icon_state = "emerald" }, -/area/almayer/living/offices/flight) +/area/almayer/hallways/lower/port_midship_hallway) "mdW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/warning_stripes{ @@ -47105,6 +47063,19 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"mem" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "meu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -47119,69 +47090,66 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"meC" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 +"meE" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"meM" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/area/almayer/hallways/lower/vehiclehangar) +"meG" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"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 = "plate" + icon_state = "mono" }, -/area/almayer/maint/hull/lower/l_m_p) -"meQ" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/almayer/hallways/upper/aft_hallway) +"meT" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_s) "meY" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/alpha) -"mfc" = ( +"mfk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) +"mfH" = ( /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/hull/lower/l_m_s) -"mfr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/upper/u_a_s) "mfM" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -47201,6 +47169,19 @@ 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_m_s) +"mgb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "mgd" = ( /obj/structure/machinery/autolathe/armylathe/full, /turf/open/floor/almayer{ @@ -47246,21 +47227,14 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie_delta_shared) -"mgN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"mgZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"mgX" = ( +/obj/structure/platform{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/maint/hull/upper/u_a_p) "mha" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -47331,12 +47305,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"miG" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "miV" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -47351,49 +47319,29 @@ icon_state = "redfull" }, /area/almayer/command/cic) +"mjs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "mjt" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ allow_construction = 0 }, /area/almayer/shipboard/brig/processing) -"mju" = ( -/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/hallways/upper/stern_hallway) -"mjw" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"mjz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"mjC" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"mjy" = ( +/obj/structure/machinery/conveyor_switch{ + id = "lower_garbage" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) -"mjE" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/lower/l_a_p) "mjS" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -47403,12 +47351,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"mkb" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "mkc" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -47465,14 +47407,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"mkk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "mkl" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -47492,19 +47426,30 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/workshop/hangar) -"mkq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +"mkw" = ( +/obj/structure/sign/safety/security{ + pixel_y = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/lower/starboard_fore_hallway) +"mkx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"mkF" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "mkG" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -47561,16 +47506,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/workshop) -"mkW" = ( -/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/hull/upper/u_a_s) "mlb" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -47632,55 +47567,53 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) +"mnc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"mne" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/mp_bunks) "mng" = ( /turf/open/floor/almayer{ icon_state = "redcorner" }, /area/almayer/living/briefing) -"mns" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"mnz" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_umbilical) -"mnA" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"mnA" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mnD" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, +"mnC" = ( /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + dir = 8; + icon_state = "greencorner" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/hallways/upper/aft_hallway) "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/aft_hallway) "mnW" = ( /obj/structure/surface/table/almayer, /obj/item/device/reagent_scanner{ @@ -47706,15 +47639,21 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"mod" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"moc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + 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/hull/lower/l_f_p) +/area/almayer/maint/upper/u_m_p) "mor" = ( /obj/structure/machinery/light{ dir = 8 @@ -47725,17 +47664,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mot" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "mov" = ( /obj/structure/bed/chair{ dir = 1 @@ -47751,6 +47679,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) +"moK" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_s) +"moL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -9; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "moM" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ @@ -47762,18 +47711,18 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"moT" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"mph" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/s_bow) "mpn" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/almayer, @@ -47781,16 +47730,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"mpt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/port_umbilical) "mpP" = ( /obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ @@ -47798,17 +47737,26 @@ }, /area/almayer/engineering/lower) "mpV" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_umbilical) "mqb" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /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/aft_hallway) "mqg" = ( /obj/structure/bed/chair{ dir = 4 @@ -47822,20 +47770,18 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"mqo" = ( -/obj/structure/bed/chair/bolted{ - dir = 1 - }, +"mqt" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "bluecorner" }, -/area/almayer/shipboard/brig/main_office) -"mqu" = ( +/area/almayer/hallways/lower/port_midship_hallway) +"mqB" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_umbilical) "mqK" = ( /obj/structure/machinery/cm_vending/gear/spec, /obj/structure/sign/safety/hazard{ @@ -47849,6 +47795,18 @@ icon_state = "plate" }, /area/almayer/squads/bravo) +"mqR" = ( +/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/aft_hallway) "mqU" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -47858,18 +47816,12 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_two) -"mre" = ( -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -9; - pixel_y = 19 +"mqZ" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"mrm" = ( -/obj/effect/landmark/start/professor, -/obj/effect/landmark/late_join/cmo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "mrD" = ( /obj/structure/machinery/light{ dir = 1 @@ -47894,18 +47846,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"mse" = ( -/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/aft_hallway) "msg" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/waterhazard{ @@ -47954,6 +47894,16 @@ icon_state = "orange" }, /area/almayer/squads/bravo) +"msC" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_s) "msP" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -47968,14 +47918,6 @@ icon_state = "plate" }, /area/almayer/living/gym) -"mtj" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "mtl" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/execution) @@ -48016,32 +47958,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"mtQ" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"mtR" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/crushed_cup, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/ashtray/plastic{ - pixel_x = 5; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "mtZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -48051,6 +47967,12 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"mua" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "mub" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -48059,10 +47981,6 @@ icon_state = "plate" }, /area/almayer/living/gym) -"muc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) "muq" = ( /obj/structure/bed/sofa/vert/grey/bot, /obj/structure/bed/sofa/vert/grey{ @@ -48089,14 +48007,6 @@ icon_state = "plate" }, /area/almayer/squads/alpha) -"muJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) "muQ" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -48117,6 +48027,19 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"mvg" = ( +/obj/docking_port/stationary/escape_pod/west, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"mvi" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/revolver/m44{ + desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "mvl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -48130,44 +48053,6 @@ icon_state = "bluecorner" }, /area/almayer/squads/delta) -"mvu" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"mvE" = ( -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "mvI" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -48181,15 +48066,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"mvR" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"mww" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/surgery) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "mwA" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -48211,12 +48093,11 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_medbay) -"mwO" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"mwP" = ( +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/upper/p_stern) "mwQ" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 @@ -48237,26 +48118,14 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) -"mwY" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +"mxg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/lower/port_fore_hallway) -"mxa" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) "mxT" = ( /obj/structure/surface/table/almayer, @@ -48265,6 +48134,13 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"mxV" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "myl" = ( /obj/structure/machinery/power/apc/almayer/hardened{ cell_type = /obj/item/cell/hyper; @@ -48286,41 +48162,6 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"myx" = ( -/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/aft_hallway) -"myy" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"myA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "myJ" = ( /obj/structure/machinery/light{ dir = 4 @@ -48332,13 +48173,6 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) -"myN" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) "myP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/sentencing{ @@ -48349,17 +48183,38 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"mza" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/armory) "mzg" = ( /turf/open/floor/almayer{ icon_state = "emerald" }, /area/almayer/squads/charlie) -"mzk" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "mzq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -48384,6 +48239,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) +"mzv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "mzz" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, @@ -48392,6 +48251,15 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) +"mzI" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "mzS" = ( /turf/open/floor/almayer{ dir = 9; @@ -48423,15 +48291,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"mAO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "mAV" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ @@ -48439,12 +48298,14 @@ }, /area/almayer/squads/delta) "mBa" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "mBc" = ( /obj/structure/bed/chair{ dir = 8 @@ -48465,9 +48326,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/pilotbunks) -"mBf" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_s) "mBp" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -48513,48 +48371,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"mBT" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) -"mBX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"mCg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"mCj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "mCo" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -48562,6 +48378,15 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) +"mCE" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "mCL" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -48569,18 +48394,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"mCS" = ( -/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/stern_hallway) "mDj" = ( /obj/structure/machinery/photocopier, /obj/item/paper{ @@ -48597,6 +48410,13 @@ 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/hull/upper/u_a_s) "mDJ" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) @@ -48645,24 +48465,13 @@ icon_state = "test_floor4" }, /area/almayer/living/commandbunks) -"mEr" = ( +"mDZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"mED" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "mEE" = ( /obj/structure/platform{ dir = 4; @@ -48674,50 +48483,16 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"mEL" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -7; - pixel_y = 12 +"mFc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/weapon/gun/rifle/l42a{ - pixel_x = 17; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"mEN" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"mFa" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"mFc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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" + icon_state = "test_floor4" }, /area/almayer/shipboard/brig/processing) "mFq" = ( @@ -48733,6 +48508,16 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"mFL" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "mFN" = ( /obj/effect/step_trigger/ares_alert/mainframe, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -48778,27 +48563,26 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"mFQ" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/s_bow) "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/aft_hallway) "mGu" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "silver" }, /area/almayer/command/securestorage) -"mGE" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "mGT" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -48814,6 +48598,20 @@ /obj/item/device/portable_vendor/corporate, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"mGV" = ( +/obj/item/stack/sheet/glass/reinforced{ + amount = 50 + }, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) "mHb" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -48823,14 +48621,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"mHj" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "mHo" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -48844,20 +48634,6 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"mHt" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"mHv" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) "mHx" = ( /obj/structure/bed/chair{ dir = 4 @@ -48876,19 +48652,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) -"mHA" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/structure/machinery/power/apc/almayer, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/shipboard/brig/surgery) "mHD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -48907,6 +48670,17 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"mHF" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/headband/red{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "mHO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, @@ -48914,6 +48688,17 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) +"mId" = ( +/obj/structure/closet, +/obj/item/clothing/suit/armor/riot/marine/vintage_riot, +/obj/item/clothing/head/helmet/riot/vintage_riot, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "mIy" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -48947,26 +48732,14 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/upper_engineering/port) -"mIQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"mIX" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -16; - pixel_y = 16 +"mIZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/shipboard/brig/medical) "mJa" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/boonie, @@ -49004,6 +48777,15 @@ /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/aft_hallway) "mJu" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/cic) @@ -49014,12 +48796,21 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"mJI" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "mJL" = ( /turf/open/floor/almayer{ dir = 5; icon_state = "blue" }, /area/almayer/living/pilotbunks) +"mJO" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) "mJP" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -49061,6 +48852,17 @@ "mKq" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/bridgebunks) +"mKs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "mKw" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -49126,17 +48928,6 @@ icon_state = "plate" }, /area/almayer/living/port_emb) -"mKO" = ( -/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/aft_hallway) "mLe" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -49150,22 +48941,9 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"mLr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, +"mLg" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"mLy" = ( -/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/lower/vehiclehangar) +/area/almayer/hallways/lower/port_umbilical) "mLz" = ( /obj/structure/machinery/door_control{ id = "pobunk1"; @@ -49192,12 +48970,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"mLJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"mLN" = ( +/obj/structure/machinery/light/small, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "mLR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -49207,12 +48990,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"mMC" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "mMP" = ( /obj/effect/landmark/start/intel, /turf/open/floor/plating/plating_catwalk, @@ -49228,27 +49005,31 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"mMZ" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "mNm" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"mNB" = ( +"mNG" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_y = 24; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "mNI" = ( /obj/structure/machinery/door/window/westleft{ dir = 2 @@ -49266,6 +49047,20 @@ 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/hull/upper/u_m_s) "mNX" = ( /turf/open/floor/almayer_hull{ dir = 4; @@ -49296,11 +49091,35 @@ /turf/closed/wall/almayer/outer, /area/almayer/command/airoom) "mOw" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/upper/aft_hallway) +"mOE" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + 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, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) +"mPc" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "mPf" = ( /turf/open/floor/almayer/uscm/directional{ dir = 6 @@ -49333,15 +49152,32 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"mPB" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"mPQ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +"mPw" = ( +/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_y = 7; + pixel_x = -17 + }, +/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" + }, +/area/almayer/hallways/lower/port_midship_hallway) "mPR" = ( /obj/structure/machinery/light{ dir = 8 @@ -49351,14 +49187,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"mPW" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "mQc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -49368,6 +49196,14 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"mQd" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/item/tool/weldpack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "mQn" = ( /obj/structure/sign/safety/rad_shield{ pixel_x = 32 @@ -49377,12 +49213,34 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) +"mQx" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_fore_hallway) "mQC" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/port_atmos) -"mQQ" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, +"mQF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/stern_hallway) +"mQY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, /area/almayer/maint/hull/lower/l_m_s) "mRn" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -49431,13 +49289,26 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"mRC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +"mRH" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 18 + }, /turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "silver" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/repair_bay) +"mRI" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) "mRQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -49454,33 +49325,22 @@ icon_state = "red" }, /area/almayer/command/lifeboat) +"mRU" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) "mRW" = ( /turf/open/floor/almayer/research/containment/corner1, /area/almayer/medical/containment/cell/cl) -"mSc" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Secretroom"; - indestructible = 1; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) "mSi" = ( /obj/structure/bed/sofa/vert/grey/top{ pixel_y = 11 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mSm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) +"mSr" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "mSs" = ( /obj/structure/machinery/light{ dir = 8 @@ -49490,9 +49350,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"mSu" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/mess) "mSz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/crew/alt, @@ -49500,12 +49357,6 @@ icon_state = "silverfull" }, /area/almayer/command/securestorage) -"mSG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "mSK" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/window/reinforced{ @@ -49516,25 +49367,19 @@ icon_state = "test_floor5" }, /area/almayer/medical/hydroponics) +"mSM" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "mSU" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ icon_state = "blue" }, /area/almayer/squads/charlie_delta_shared) -"mTa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "mTc" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/emails{ @@ -49562,6 +49407,16 @@ 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/aft_hallway) "mTp" = ( /obj/structure/window/reinforced{ dir = 4; @@ -49576,12 +49431,15 @@ icon_state = "cargo_arrow" }, /area/almayer/medical/hydroponics) -"mTK" = ( -/obj/structure/platform_decoration{ - dir = 8 +"mTL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "mTN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -49624,12 +49482,34 @@ }, /area/almayer/command/airoom) "mUE" = ( -/obj/structure/bed/stool, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/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/hull/upper/u_a_s) +"mUY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_m_s) +"mVh" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "mVr" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -49640,6 +49520,17 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"mVA" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "mVE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -49662,30 +49553,21 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"mVY" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"mWh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"mWl" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 +"mVF" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "officers_mess"; + name = "\improper Privacy Shutters" }, -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;30" }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/upper/mess) "mWs" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -49748,11 +49630,55 @@ "mXj" = ( /turf/closed/wall/almayer, /area/almayer/living/commandbunks) -"mYp" = ( -/obj/structure/machinery/light{ - dir = 8 +"mXm" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"mXy" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/almayer, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"mXP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"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/aft_hallway) +"mYt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/vehiclehangar) "mYv" = ( /obj/structure/disposalpipe/sortjunction{ @@ -49762,17 +49688,6 @@ }, /turf/closed/wall/almayer, /area/almayer/squads/req) -"mYT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) "mZb" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -49787,6 +49702,24 @@ icon_state = "blue" }, /area/almayer/command/cichallway) +"mZc" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = 35 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + anchored = 1; + chemical = null; + density = 0; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "mZf" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -49804,13 +49737,6 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"mZg" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "mZr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -49847,6 +49773,18 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) +"mZP" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "mZQ" = ( /obj/structure/machinery/vending/security, /obj/structure/machinery/light, @@ -49858,6 +49796,15 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) +"naa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "nac" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -49868,6 +49815,12 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"naj" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "nar" = ( /obj/structure/toilet{ dir = 4 @@ -49905,26 +49858,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"naN" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"naO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) "naR" = ( /obj/structure/machinery/iv_drip, /obj/effect/decal/warning_stripes{ @@ -49952,29 +49885,24 @@ icon_state = "test_floor4" }, /area/almayer/living/gym) -"naW" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/storage/box/cups, -/turf/open/floor/almayer{ - icon_state = "plate" +"nbu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/maint/hull/lower/s_bow) -"ncb" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"nbW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/upper/stern_hallway) "ncf" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -49987,6 +49915,9 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) +"nci" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "ncl" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -50001,15 +49932,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"ncw" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "ncE" = ( /obj/structure/machinery/light{ dir = 8 @@ -50037,72 +49959,31 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"nda" = ( -/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 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"ndb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ndc" = ( -/obj/structure/machinery/door_control{ - id = "InnerShutter"; - name = "Inner Shutter"; - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/obj/item/ashtray/plastic, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 - }, +"ncV" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/panic) -"ndd" = ( +/area/almayer/maint/hull/upper/u_a_s) +"ndl" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"ndl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/maint/hull/lower/l_m_p) +"ndm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"ndT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/lower/cryo_cells) "ndZ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, @@ -50123,18 +50004,25 @@ icon_state = "test_floor4" }, /area/almayer/powered) -"nel" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"neu" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"nef" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/vehiclehangar) +"neh" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/warden_office) "new" = ( /obj/item/reagent_container/glass/bucket/janibucket, /obj/item/reagent_container/glass/bucket/janibucket{ @@ -50166,6 +50054,12 @@ icon_state = "red" }, /area/almayer/command/lifeboat) +"neH" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "neO" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -50190,13 +50084,6 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"neX" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "nff" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -50207,28 +50094,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"nfQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ngc" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "panicroomback"; - name = "\improper Safe Room Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_s) "ngf" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -50274,10 +50139,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) -"ngu" = ( -/obj/docking_port/stationary/vehicle_elevator/almayer, -/turf/open/floor/almayer/empty, -/area/almayer/hallways/lower/vehiclehangar) "ngw" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/frag, @@ -50326,6 +50187,20 @@ icon_state = "redcorner" }, /area/almayer/living/briefing) +"ngK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/repair_bay) "ngU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -50355,14 +50230,6 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) -"nhb" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) "nhi" = ( /obj/structure/bed/chair/comfy, /obj/structure/window/reinforced/ultra, @@ -50380,6 +50247,10 @@ icon_state = "plating" }, /area/almayer/engineering/lower/workshop) +"nhw" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "nhx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck{ @@ -50396,6 +50267,16 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"nhE" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "nhG" = ( /obj/item/newspaper{ name = "character sheet" @@ -50423,32 +50304,22 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"nhI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"nhT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/stern_hallway) -"nhJ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_p) -"nhU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, +"nhV" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/lower/p_bow) +"nic" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stern) "nig" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -50496,41 +50367,15 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"niy" = ( -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/obj/structure/sign/poster/hunk{ - pixel_x = -25; - pixel_y = 10 - }, -/obj/item/trash/buritto, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"niz" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"niK" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +"niF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/medical/medical_science) "niL" = ( /obj/structure/machinery/light{ dir = 1 @@ -50540,9 +50385,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/medical_science) -"niN" = ( -/turf/open/floor/almayer/empty, -/area/almayer/hallways/lower/vehiclehangar) "niR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -50551,16 +50393,6 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) -"niW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/computer/supplycomp/vehicle, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "niY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -50601,19 +50433,9 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"njr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/lights/tubes{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +"njn" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_s) "njD" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ @@ -50633,22 +50455,35 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) +"njO" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/shipboard/panic) +"njS" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower/engine_core) +"nkj" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "nkn" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"nkp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_umbilical) "nkx" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -50660,16 +50495,12 @@ icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) -"nkE" = ( -/obj/structure/ladder{ - height = 2; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 +"nkA" = ( +/obj/structure/closet/emcloset/legacy, +/turf/open/floor/almayer{ + icon_state = "cargo" }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/shipboard/brig/starboard_hallway) "nkF" = ( /obj/structure/bed/chair/bolted{ dir = 4 @@ -50693,24 +50524,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"nkJ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"nkR" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "nkX" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ @@ -50727,12 +50540,12 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"nlt" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" +"nlh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "nlz" = ( /obj/structure/machinery/brig_cell/cell_3{ pixel_x = 32; @@ -50772,29 +50585,28 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"nmj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "nmp" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, /turf/open/floor/almayer{ - dir = 9; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"nmq" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ - pixel_x = 7; - pixel_y = 4 +/area/almayer/maint/hull/lower/l_f_s) +"nmH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/lower/port_aft_hallway) "nmK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -50807,12 +50619,6 @@ icon_state = "cargo" }, /area/almayer/squads/req) -"nmS" = ( -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "nmV" = ( /turf/open/floor/almayer{ dir = 1; @@ -50831,9 +50637,18 @@ icon_state = "plate" }, /area/almayer/command/cichallway) -"nnw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_m_s) +"nnr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/port_aft_hallway) "nny" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -50852,25 +50667,24 @@ 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/hull/upper/u_m_s) "nnL" = ( /obj/structure/toilet{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/corporateliaison) -"nnT" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "nnX" = ( /obj/structure/machinery/sentry_holder/almayer, /turf/open/floor/almayer{ @@ -50912,6 +50726,27 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"noy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"noE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"noI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "noP" = ( /obj/structure/machinery/light{ dir = 1 @@ -50929,9 +50764,6 @@ }, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) -"npi" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "npt" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -50947,6 +50779,12 @@ icon_state = "dark_sterile" }, /area/almayer/medical/containment) +"npw" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "npA" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -50977,19 +50815,10 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/armory) -"nqp" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/port) "nqx" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"nqC" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_s) "nqG" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -51001,12 +50830,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"nqL" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "nqO" = ( /obj/structure/closet/secure_closet/fridge/fish/stock, /turf/open/floor/almayer{ @@ -51031,37 +50854,17 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"nre" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"nrg" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/device/binoculars, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) -"nrh" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"nrb" = ( +/obj/item/robot_parts/arm/l_arm, +/obj/item/robot_parts/leg/l_leg, +/obj/item/robot_parts/arm/r_arm, +/obj/item/robot_parts/leg/r_leg, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) +/area/almayer/living/synthcloset) "nri" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/working_joe{ @@ -51080,18 +50883,6 @@ icon_state = "emeraldcorner" }, /area/almayer/squads/charlie) -"nrD" = ( -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"nrG" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "nrN" = ( /obj/structure/machinery/sleep_console, /turf/open/floor/almayer{ @@ -51113,42 +50904,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"nsh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"nsk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) -"nsx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"nsO" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"nsd" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/bulbs{ + pixel_x = 3; + pixel_y = 7 }, +/obj/item/storage/box/lights/mixed, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/lower/l_f_s) +"nso" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "nsQ" = ( /obj/structure/sink{ dir = 4; @@ -51239,13 +51010,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"nuH" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "nuK" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/franks{ @@ -51267,28 +51031,19 @@ /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"nvA" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, +"nvd" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 6; + icon_state = "silver" }, -/area/almayer/maint/hull/lower/l_f_s) -"nvE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_m_p) +"nve" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/upper/u_m_p) "nvG" = ( /obj/structure/machinery/light{ dir = 8 @@ -51307,6 +51062,14 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) +"nvI" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "nvM" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -51326,6 +51089,18 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"nvX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "nwb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -51335,10 +51110,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"nwd" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "nwi" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 @@ -51347,18 +51118,56 @@ 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/aft_hallway) +"nww" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_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/hull/upper/u_a_p) "nwD" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orange" }, /area/almayer/command/cic) +"nwG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) "nwL" = ( /obj/structure/bed, /obj/item/bedsheet/brown, @@ -51366,6 +51175,10 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"nwT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "nwU" = ( /obj/structure/machinery/light{ dir = 4 @@ -51403,34 +51216,28 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"nxg" = ( -/obj/structure/machinery/power/apc/almayer, +"nxe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/sheet/metal{ + desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; + icon = 'icons/obj/structures/props/semiotic_standard.dmi'; + icon_state = "coffee"; + name = "coffee semiotic"; + pixel_x = 20; + pixel_y = 12; + singular_name = "coffee semiotic" + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_a_p) "nxx" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/lower) -"nxJ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"nxL" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"nxM" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "nyj" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal2" @@ -51453,21 +51260,9 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) -"nyF" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "nyQ" = ( /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"nyR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "nyS" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ @@ -51475,6 +51270,12 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"nzt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "nzv" = ( /obj/structure/filingcabinet/filingcabinet, /obj/item/clipboard, @@ -51486,9 +51287,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"nzC" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_stern) "nzD" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer, @@ -51510,26 +51308,10 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"nAC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-y" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"nAN" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) +"nAm" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "nAY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -51568,6 +51350,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"nBo" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "nBw" = ( /turf/open/floor/almayer{ dir = 1; @@ -51580,12 +51371,36 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) +"nBF" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"nBJ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/s_bow) "nBK" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/lifeboat_pumps/north2) +"nBV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_umbilical) +"nCe" = ( +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) "nCf" = ( /obj/effect/landmark/start/marine/tl/charlie, /obj/effect/landmark/late_join/charlie, @@ -51634,18 +51449,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"nCA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 - }, +"nCM" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" + icon_state = "plate" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/hull/upper/u_f_s) "nCR" = ( /obj/structure/sink{ dir = 4; @@ -51673,6 +51482,15 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"nCZ" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "nDa" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -51681,6 +51499,13 @@ icon_state = "tcomms" }, /area/almayer/engineering/lower/engine_core) +"nDb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) "nDo" = ( /obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ @@ -51698,6 +51523,18 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"nEc" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"nEl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "nEo" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -51736,6 +51573,16 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"nEO" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) +"nEZ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "nFm" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/surgery/scalpel, @@ -51824,43 +51671,48 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"nGp" = ( -/obj/structure/platform{ - dir = 8 +"nGk" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"nGM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/stack/sheet/metal, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"nGz" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"nGH" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) +/area/almayer/maint/hull/lower/l_a_p) "nGY" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/lifeboat_pumps/north2) -"nHf" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"nHl" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/oxygen/red, -/obj/item/tool/screwdriver, +"nGZ" = ( +/obj/structure/largecrate/supply/supplies/water, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "red" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/upper/u_a_p) +"nHu" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"nHG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "nHJ" = ( /obj/structure/machinery/light{ dir = 8 @@ -51884,14 +51736,16 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"nHN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"nHX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/maint/hull/lower/p_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "nIj" = ( /turf/open/floor/almayer{ icon_state = "green" @@ -51937,6 +51791,13 @@ 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/aft_hallway) "nIG" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -51946,15 +51807,9 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"nIL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +"nIN" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_p) "nIS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -51969,13 +51824,6 @@ icon_state = "orangecorner" }, /area/almayer/engineering/lower/engine_core) -"nJm" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "nJs" = ( /obj/structure/largecrate/random/case, /turf/open/floor/almayer{ @@ -51986,12 +51834,6 @@ /obj/item/newspaper, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"nJz" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) "nJH" = ( /obj/structure/machinery/computer/cameras/almayer{ dir = 8; @@ -52001,11 +51843,6 @@ icon_state = "plating" }, /area/almayer/command/airoom) -"nJJ" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "nKq" = ( /obj/structure/machinery/status_display{ pixel_x = 16; @@ -52026,20 +51863,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"nLf" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "nLk" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/power/apc/almayer{ @@ -52050,6 +51873,9 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"nLp" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_p) "nLt" = ( /turf/open/floor/almayer{ dir = 1; @@ -52080,29 +51906,15 @@ icon_state = "plating" }, /area/almayer/engineering/upper_engineering) -"nLN" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) -"nLT" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 +"nLM" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"nMa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1; + icon_state = "blue" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/aft_hallway) "nMe" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -52122,17 +51934,6 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"nMN" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"nMT" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "nMV" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -52178,29 +51979,22 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"nNz" = ( -/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/aft_hallway) "nNH" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "emeraldcorner" }, /area/almayer/living/briefing) -"nNN" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" +"nNI" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"nNT" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "nNV" = ( /obj/structure/bed/chair{ dir = 8; @@ -52210,6 +52004,19 @@ icon_state = "emeraldfull" }, /area/almayer/squads/charlie_delta_shared) +"nNW" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "nNX" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Evacuation Airlock PU-1"; @@ -52247,17 +52054,22 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) +"nOx" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "nOC" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"nOH" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"nOX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/shipboard/panic) "nPa" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -52297,9 +52109,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"nPh" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/upper/mess) "nPs" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -52336,12 +52145,13 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"nPF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"nPO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/l_m_s) "nPT" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; @@ -52365,22 +52175,18 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"nQb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"nQq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"nQn" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/lower/s_bow) +"nQo" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "nQv" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -52390,33 +52196,30 @@ 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/hull/upper/u_a_s) "nQA" = ( /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"nQS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"nRA" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + allow_construction = 0 }, /area/almayer/hallways/lower/port_midship_hallway) -"nRC" = ( +"nRE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 + dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) @@ -52428,6 +52231,12 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"nRN" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "nRR" = ( /turf/open/floor/almayer{ dir = 1; @@ -52438,14 +52247,29 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"nSm" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"nSk" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/stack/tile/carpet{ + amount = 20 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_p) +"nSq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "nSu" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -52454,18 +52278,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"nSC" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hallways/lower/repair_bay) -"nSE" = ( -/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/aft_hallway) "nSG" = ( /obj/structure/machinery/door_control{ id = "tcomms"; @@ -52478,26 +52290,39 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) -"nSI" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "nSS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /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_m_p) "nTl" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "red" }, /area/almayer/squads/alpha) +"nTo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/transmitter{ + dir = 8; + name = "Medical Telephone"; + phone_category = "Almayer"; + phone_id = "Medical Lower"; + pixel_x = 16 + }, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) "nTs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -52512,13 +52337,6 @@ /obj/structure/bed/chair/comfy/blue, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"nTB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_umbilical) "nTH" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -52530,12 +52348,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"nTU" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/hallways/upper/aft_hallway) "nTZ" = ( /turf/open/floor/almayer{ dir = 5; @@ -52588,6 +52400,16 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) +"nUm" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 12; + pixel_y = -5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "nUn" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -52596,14 +52418,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"nUs" = ( -/obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "nUv" = ( /obj/structure/machinery/light{ dir = 1 @@ -52612,9 +52426,9 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"nUS" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"nUT" = ( +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" @@ -52625,6 +52439,13 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) +"nVn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "nVq" = ( /obj/structure/sign/safety/security{ pixel_x = -17; @@ -52639,24 +52460,29 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"nVz" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"nVA" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/area/almayer/maint/hull/upper/u_a_p) +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/upper/aft_hallway) "nVB" = ( /turf/open/floor/almayer, /area/almayer/command/securestorage) -"nVC" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, +"nVE" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_m_p) "nVF" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -52665,67 +52491,61 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"nVR" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/perma) -"nVX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D1"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 +"nVG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "\improper Brig Armoury"; + req_access = null; + req_one_access_txt = "1;3" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"nVY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) -"nWf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"nWt" = ( -/obj/structure/largecrate/random/barrel/blue, +/area/almayer/shipboard/brig/starboard_hallway) +"nVH" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/mp_bunks) +"nVQ" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/security{ + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/maint/hull/upper/p_bow) -"nWx" = ( -/obj/structure/machinery/vending/snack, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"nWK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/hallways/lower/starboard_midship_hallway) +"nVR" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/perma) +"nVX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D1"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/engineering/upper_engineering/starboard) "nWN" = ( /obj/structure/surface/table/almayer, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"nWZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"nXv" = ( -/obj/structure/closet, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/regular/hipster, +"nXo" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -52792,6 +52612,12 @@ icon_state = "silverfull" }, /area/almayer/command/securestorage) +"nYi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "nYn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -52810,16 +52636,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"nYu" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "nYD" = ( /obj/structure/closet/secure_closet/medical2, /turf/open/floor/almayer{ @@ -52831,18 +52647,14 @@ dir = 8 }, /area/almayer/command/lifeboat) -"nZp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"nYR" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/starboard_aft_hallway) "nZy" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -52851,21 +52663,29 @@ /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"oac" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"nZG" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"nZR" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/p_bow) -"oao" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/shipboard/panic) +"nZW" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "oap" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -52873,37 +52693,34 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"oaE" = ( +"oaw" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, /turf/open/floor/almayer{ - dir = 9; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) -"oaI" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/upper/p_stern) "oaK" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"oaO" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/machinery/recycler, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) "oaW" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/charlie) -"obc" = ( -/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/stern_hallway) "obo" = ( /obj/structure/disposalpipe/up/almayer{ dir = 8; @@ -52911,17 +52728,6 @@ }, /turf/closed/wall/almayer, /area/almayer/squads/req) -"obx" = ( -/obj/structure/ladder{ - height = 1; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/p_bow) "oby" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -52932,12 +52738,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"obA" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/upper/aft_hallway) "obC" = ( /turf/open/floor/almayer{ dir = 4; @@ -52953,29 +52753,20 @@ 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/hull/upper/u_a_s) "obQ" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"obX" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"occ" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/energy/taser, -/obj/item/weapon/gun/energy/taser{ - pixel_y = 8 - }, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "ocf" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 @@ -53026,22 +52817,53 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"ocS" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/s_bow) +"ocI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/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/aft_hallway) "odb" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"ode" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/s_bow) "odl" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) +"odt" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/lower/vehiclehangar) "odu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -53070,6 +52892,22 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"odG" = ( +/obj/structure/platform, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + 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/hull/upper/u_a_s) "odN" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -53080,14 +52918,6 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/sea_office) -"odT" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/pistachios, -/obj/item/tool/lighter/random{ - pixel_x = 13 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "odV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -53115,17 +52945,17 @@ icon_state = "cargo" }, /area/almayer/squads/alpha_bravo_shared) -"oeq" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "oer" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/delta) +"oes" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "oex" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light, @@ -53139,31 +52969,20 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) +"oeH" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "oeM" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "silver" }, /area/almayer/command/computerlab) -"oeY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"ofp" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "medical manuals bookcase"; - opacity = 0 - }, -/obj/item/book/manual/surgery, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) "ofH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -53181,12 +53000,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"ofP" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "ofU" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -53201,23 +53014,18 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"ogi" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"ogj" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"ogI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"ogd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/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/hallways/upper/stern_hallway) "ogK" = ( /obj/structure/bed/bedroll{ desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; @@ -53232,28 +53040,25 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"ogM" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "ohj" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/charlie) -"ohw" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"ohu" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig Maintenance" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/p_bow) "ohA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -53291,6 +53096,19 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) +"ohI" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "ohJ" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, @@ -53313,6 +53131,17 @@ icon_state = "test_floor4" }, /area/almayer/living/captain_mess) +"oif" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"oig" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "oih" = ( /obj/structure/bed{ icon_state = "abed" @@ -53342,28 +53171,16 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"oil" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"oin" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +"oiq" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_m_p) "oir" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -53373,12 +53190,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"ois" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "oit" = ( /obj/effect/landmark/railgun_computer{ dir = 1 @@ -53388,6 +53199,12 @@ icon_state = "redfull" }, /area/almayer/shipboard/port_missiles) +"oiB" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "oiL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -53406,14 +53223,10 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"oiR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) +"oiX" = ( +/obj/docking_port/stationary/vehicle_elevator/almayer, +/turf/open/floor/almayer/empty, +/area/almayer/hallways/lower/vehiclehangar) "oiY" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -53430,33 +53243,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"oiZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ojg" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "ojh" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -53464,18 +53250,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"ojn" = ( -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "ojF" = ( /obj/structure/machinery/cm_vending/clothing/tl/charlie{ density = 0; @@ -53516,6 +53290,16 @@ icon_state = "plate" }, /area/almayer/squads/charlie) +"okd" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "n_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_umbilical) "okg" = ( /obj/structure/sign/safety/reception{ pixel_x = 8; @@ -53525,6 +53309,19 @@ 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/hull/upper/u_a_p) +"okx" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "okD" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer6" @@ -53533,26 +53330,20 @@ icon_state = "outerhull_dir" }, /area/space) -"olk" = ( +"old" = ( +/obj/structure/machinery/light/small, +/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 = 4 + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"olv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/upper/u_m_s) "olM" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -53589,6 +53380,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) +"olQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "olU" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -53596,6 +53393,12 @@ icon_state = "blue" }, /area/almayer/command/cichallway) +"olW" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/s_bow) "omb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -53605,21 +53408,47 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"omi" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"ome" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/p_bow) "omo" = ( /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" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) "omt" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) +"omx" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_f_s) "omy" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -53630,10 +53459,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"omL" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) "omP" = ( /obj/item/tool/mop, /obj/structure/surface/rack, @@ -53642,33 +53467,36 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"ond" = ( -/obj/structure/machinery/sleep_console{ - dir = 8 +"onh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + dir = 8; + icon_state = "orange" }, -/area/almayer/shipboard/brig/surgery) +/area/almayer/hallways/upper/stern_hallway) "onn" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"onq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light, /turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"onr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/almayer/hallways/lower/starboard_midship_hallway) +"onv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/lower/l_f_s) "onN" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -53732,9 +53560,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"opf" = ( +"ooA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/maint/hull/lower/l_m_s) +"opd" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/lower/port_midship_hallway) "opC" = ( /obj/structure/machinery/door/airlock/almayer/command/reinforced{ name = "\improper Combat Information Center" @@ -53784,30 +53622,46 @@ /turf/open/space/basic, /area/space) "opN" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/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 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/upper/stern_hallway) -"opU" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/hallways/upper/aft_hallway) +"opV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, /turf/open/floor/almayer{ - icon_state = "cargo" + dir = 1; + icon_state = "green" }, -/area/almayer/maint/hull/upper/u_a_s) -"oqn" = ( -/obj/item/stool{ - pixel_x = -15; - pixel_y = 6 +/area/almayer/hallways/lower/port_midship_hallway) +"oqc" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/upper/u_a_s) "oqt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -53846,6 +53700,24 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"oqI" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"oqN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "oqS" = ( /obj/structure/toilet{ dir = 1 @@ -53860,20 +53732,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"oqW" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_f_s) "oqY" = ( /obj/structure/machinery/conveyor{ id = "req_belt" @@ -53920,16 +53778,14 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"ory" = ( -/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 +"orq" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 13 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "orH" = ( /turf/open/floor/almayer/uscm/directional{ dir = 10 @@ -53952,16 +53808,23 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"osd" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, +"osn" = ( +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 10 + }, /obj/structure/surface/table/almayer, -/obj/item/fuel_cell, +/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 = "cargo" + icon_state = "plate" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/upper/u_m_s) "osx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -54024,15 +53887,12 @@ }, /area/almayer/engineering/lower/workshop) "osQ" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/maint/upper/mess) +/area/almayer/hallways/lower/starboard_midship_hallway) "osT" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/prop/ice_colony/hula_girl{ @@ -54051,23 +53911,85 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"oth" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" +"osX" = ( +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = -8 }, /turf/open/floor/almayer{ - icon_state = "mono" + dir = 8; + icon_state = "red" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/starboard_midship_hallway) +"otl" = ( +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/brig/mp_bunks) +"otq" = ( +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "otu" = ( /turf/closed/wall/almayer/research/containment/wall/connect_w, /area/almayer/medical/containment/cell) -"oue" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"otC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) +"otE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"otW" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "ouf" = ( /obj/structure/stairs{ dir = 1; @@ -54116,16 +54038,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) -"ouy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "ouB" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, @@ -54139,6 +54051,18 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"ouU" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "ouW" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -54153,6 +54077,10 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) +"ove" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "ovi" = ( /turf/open/floor/almayer{ dir = 4; @@ -54170,16 +54098,6 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"ovx" = ( -/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/hull/upper/u_a_s) "ovG" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -54193,25 +54111,26 @@ dir = 4 }, /area/almayer/medical/containment/cell) +"ovQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "owg" = ( /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"owD" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +"owU" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/maint/hull/lower/l_a_p) -"owO" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"owS" = ( -/obj/docking_port/stationary/escape_pod/west, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "owW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -54235,62 +54154,69 @@ /obj/item/bedsheet/orange, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"oxe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/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/aft_hallway) "oxi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) -"oxo" = ( -/obj/structure/closet/crate, -/obj/item/ammo_box/magazine/l42a, -/obj/item/ammo_box/magazine/l42a, -/turf/open/floor/almayer{ - icon_state = "plate" +"oxl" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/maint/hull/upper/u_m_s) -"oxt" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) +"oxn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" + icon_state = "plate" }, -/area/almayer/squads/req) +/area/almayer/maint/hull/lower/l_m_s) "oxu" = ( /obj/structure/sign/safety/galley{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"oxy" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"oxz" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "oxU" = ( /obj/structure/machinery/photocopier, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"oyd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"oyg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "oyE" = ( /obj/effect/landmark/start/intel, /obj/structure/sign/poster{ @@ -54303,15 +54229,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/port_atmos) -"oyJ" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) +"oyO" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "oyR" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/lower) +"oyX" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "ozq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -54321,22 +54257,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) -"ozt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"ozw" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "ozz" = ( /obj/structure/surface/table/almayer, /obj/item/tank/emergency_oxygen/double, @@ -54344,6 +54264,18 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) +"ozH" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "ozN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ id_tag = "Boat2-D2"; @@ -54354,15 +54286,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) -"ozP" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "ozT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -54381,23 +54304,15 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"oAr" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"oAw" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"oAa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/port_umbilical) "oAB" = ( /obj/structure/platform{ dir = 8; @@ -54407,12 +54322,43 @@ dir = 10 }, /area/almayer/living/briefing) +"oAK" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "oAO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) +"oAT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/clothing/head/soft/ferret{ + pixel_x = -7 + }, +/turf/open/floor/almayer{ + 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/aft_hallway) "oBq" = ( /obj/structure/bed, /obj/structure/machinery/flasher{ @@ -54424,6 +54370,9 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) +"oBr" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_s) "oBA" = ( /obj/structure/sign/safety/conference_room{ pixel_x = -17; @@ -54438,29 +54387,30 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"oBM" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer{ - icon_state = "plate" +"oCa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_s) -"oBQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/maint/hull/lower/l_m_s) -"oBS" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_umbilical) +"oCb" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) "oCf" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -54488,28 +54438,13 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"oCV" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"oDd" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) +"oCK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "oDh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "oDi" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -54562,14 +54497,23 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"oDI" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" +"oDJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/spiderling_remains{ + pixel_x = 18; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/ash{ + pixel_x = 11; + pixel_y = 25 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "sterile_green_corner" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/medical/lower_medical_medbay) "oDL" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -54590,6 +54534,15 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/medical_science) +"oDU" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/lower/port_midship_hallway) "oDY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -54641,6 +54594,16 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"oEA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/starboard_hallway) "oEE" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -54667,25 +54630,6 @@ icon_state = "red" }, /area/almayer/living/port_emb) -"oFb" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) -"oFg" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_s) "oFm" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -54694,35 +54638,20 @@ }, /area/almayer/engineering/lower/workshop) "oFn" = ( -/obj/structure/platform, -/obj/structure/largecrate/random/case/double{ - layer = 2.98 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 32 - }, +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters/clippers, +/obj/item/handcuffs/zip, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"oFs" = ( -/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/lower/starboard_midship_hallway) -"oFv" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"oFL" = ( +/area/almayer/maint/hull/lower/l_f_p) +"oFr" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, /turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) "oFV" = ( /obj/structure/sign/poster{ pixel_x = -32; @@ -54730,28 +54659,46 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"oFW" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "n_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 +"oFY" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/lobby) +"oGf" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"oGh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"oGi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_umbilical) -"oFY" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/lobby) -"oFZ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/area/almayer/maint/hull/upper/u_a_p) +"oGj" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"oGl" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/warden_office) +"oGm" = ( /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + dir = 4; + icon_state = "orange" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/starboard_umbilical) "oGx" = ( /obj/structure/closet/secure_closet/surgical{ pixel_x = 30 @@ -54776,10 +54723,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"oGF" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "oGJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) +"oGL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "oGP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -54829,6 +54794,21 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie) +"oHf" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"oHg" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "oHl" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/electrical, @@ -54837,6 +54817,23 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"oHs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oHt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "oHx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -54845,10 +54842,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/laundry) -"oHy" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "oIa" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -54899,6 +54892,15 @@ "oIB" = ( /turf/closed/wall/almayer, /area/almayer/command/combat_correspondent) +"oJj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "oJk" = ( /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop) @@ -54913,6 +54915,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"oJL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "oJR" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -54936,18 +54954,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"oJX" = ( -/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/hull/upper/u_m_s) "oKb" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -54956,15 +54962,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"oKi" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/maint/hull/lower/l_a_p) "oKv" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 @@ -54981,50 +54978,31 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"oKz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"oKA" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/lower/vehiclehangar) -"oKB" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"oKF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"oLa" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"oLf" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/upper/p_bow) "oLi" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) +"oLj" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "oLm" = ( /obj/structure/machinery/door_control{ id = "ARES StairsLower"; @@ -55099,12 +55077,6 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) -"oMp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "oMs" = ( /obj/structure/machinery/computer/cameras/almayer{ dir = 1 @@ -55126,6 +55098,10 @@ /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/aft_hallway) "oNb" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -55149,6 +55125,12 @@ icon_state = "test_floor4" }, /area/almayer/medical/hydroponics) +"oNG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) "oNJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -55162,6 +55144,12 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) +"oNM" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "oNP" = ( /obj/structure/machinery/vending/cola{ density = 0; @@ -55182,24 +55170,22 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"oOb" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 +"oOi" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"oOh" = ( -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 + icon_state = "test_floor4" }, -/obj/item/reagent_container/glass/bucket, +/area/almayer/hallways/upper/stern_hallway) +"oOp" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_m_p) "oOw" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -55211,6 +55197,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"oOG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "oON" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -55230,77 +55225,12 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"oPb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) "oPf" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"oPk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = -6; - pixel_y = -6; - req_access_txt = "3" - }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"oPp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"oPr" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"oPs" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"oPu" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"oPv" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"oPx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "oPy" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -55339,26 +55269,26 @@ icon_state = "red" }, /area/almayer/command/cic) -"oPG" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"oPF" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oPS" = ( -/obj/structure/platform_decoration{ - dir = 8 +/area/almayer/maint/hull/lower/l_a_s) +"oPT" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"oQn" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "greencorner" }, -/area/almayer/maint/hull/upper/u_a_s) -"oPY" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/port_midship_hallway) "oQs" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/book/manual/surgery{ @@ -55368,19 +55298,30 @@ icon_state = "plate" }, /area/almayer/command/cichallway) +"oQw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/port_umbilical) "oQH" = ( /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, /area/almayer/living/briefing) +"oQJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "oQL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, /turf/open/floor/almayer{ - icon_state = "blue" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_s) "oQM" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -55404,18 +55345,31 @@ icon_state = "silver" }, /area/almayer/living/auxiliary_officer_office) -"oRh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "oRk" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"oRm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_s) +"oRG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/starboard_hallway) "oRJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -55460,16 +55414,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"oSf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) "oSq" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -55497,15 +55441,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"oSy" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "oSC" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -55515,6 +55450,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) +"oSG" = ( +/obj/structure/surface/table/almayer, +/obj/item/card/id/visa, +/obj/item/tool/crew_monitor, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "oSL" = ( /obj/structure/window/reinforced{ dir = 8 @@ -55538,10 +55481,26 @@ icon_state = "plate" }, /area/almayer/squads/alpha_bravo_shared) -"oSP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +"oSM" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"oSR" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + 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/hull/upper/u_a_s) "oTe" = ( /obj/item/prop/almayer/box, /obj/item/prop{ @@ -55571,21 +55530,6 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) -"oTn" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"oTv" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "oTA" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light{ @@ -55595,17 +55539,15 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) -"oTN" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 +"oTH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/device/radio, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/lower/port_umbilical) "oTO" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -55619,21 +55561,35 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"oTR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"oUi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oUt" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"oUx" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"oUz" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/area/almayer/maint/hull/lower/l_m_s) -"oUo" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 1; + icon_state = "silver" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/repair_bay) "oUG" = ( /obj/structure/machinery/light{ dir = 8 @@ -55643,24 +55599,21 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"oUM" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"oVc" = ( -/obj/item/tool/wirecutters{ - pixel_y = -7 - }, -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_y = 30 +"oUO" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/upper/stern_hallway) +"oUZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "oVf" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/evidence{ @@ -55678,12 +55631,28 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"oVn" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" +"oVk" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_fore_hallway) +"oVY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "oWf" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -55712,6 +55681,10 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"oWq" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "oWx" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -55728,25 +55701,41 @@ icon_state = "plate" }, /area/almayer/living/starboard_garden) -"oXb" = ( -/obj/effect/landmark/start/marine/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"oXn" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" +"oWE" = ( +/obj/structure/stairs, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, /area/almayer/hallways/lower/starboard_midship_hallway) -"oXo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"oWF" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"oWN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "green" }, +/area/almayer/hallways/lower/port_midship_hallway) +"oXb" = ( +/obj/effect/landmark/start/marine/charlie, +/obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/squads/charlie) "oXp" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/wood/ship, @@ -55787,6 +55776,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"oYb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) +"oYi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "oYp" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -55796,35 +55801,55 @@ icon_state = "red" }, /area/almayer/living/offices/flight) -"oYD" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/hallways/upper/aft_hallway) -"oYG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 +"oYr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) -"oYP" = ( +/area/almayer/maint/hull/upper/u_a_p) +"oYs" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; + icon_state = "N"; pixel_y = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_s) +"oYA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/dropship_equipment/fuel/cooling_system{ + layer = 3.5 + }, +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + 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/hull/upper/u_m_p) "oZp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, @@ -55841,42 +55866,12 @@ icon_state = "red" }, /area/almayer/living/offices/flight) -"oZv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) "oZy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"oZz" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"oZC" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "oZD" = ( /obj/structure/sign/poster/music{ pixel_x = -27 @@ -55906,15 +55901,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"oZF" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) -"oZJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "oZV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/roller, @@ -55955,10 +55941,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) -"pau" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "paI" = ( /obj/structure/sign/safety/debark_lounge{ pixel_x = 15; @@ -55968,23 +55950,26 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) +"paJ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "paL" = ( /turf/open/floor/almayer/uscm/directional{ dir = 1 }, /area/almayer/command/cic) -"paN" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"pbo" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"pbd" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/upper/s_stern) "pbp" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -56012,6 +55997,22 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) +"pcc" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) +"pcf" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "pcj" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -56027,11 +56028,6 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) -"pcp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "pcv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -56061,12 +56057,6 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"pcK" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) "pcO" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -56077,31 +56067,18 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"pcR" = ( -/obj/item/frame/rack{ - layer = 3.1; - pixel_y = 19 - }, -/obj/structure/surface/rack, -/obj/item/tool/weldpack{ - pixel_x = 5 - }, -/obj/item/tool/weldpack{ - pixel_x = -2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "pcY" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/upper/mess) +"pdp" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "pdy" = ( /obj/structure/machinery/door_control{ id = "OTStore"; @@ -56127,12 +56104,45 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"pep" = ( +"pdR" = ( +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = 24; + pixel_y = 12; + req_access_txt = "3" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/shipboard/brig/interrogation) +"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 = 5 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) +"peM" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_s) "peO" = ( /obj/structure/sign/safety/medical{ pixel_x = -17; @@ -56175,28 +56185,27 @@ allow_construction = 0 }, /area/almayer/stair_clone) -"pfu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 - }, +"pfD" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"pfy" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/upper/u_f_p) "pfH" = ( /obj/structure/platform_decoration, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) +"pfL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "pfM" = ( /obj/structure/machinery/light{ dir = 4 @@ -56212,36 +56221,6 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"pfU" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) -"pga" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"pgg" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pgq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_aft_hallway) "pgw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -56251,24 +56230,9 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/upper_engineering/port) -"pgx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "pgD" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south1) -"pgE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) "pgH" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -56286,6 +56250,13 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"pgJ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "pgM" = ( /obj/structure/reagent_dispensers/water_cooler/walk_past{ pixel_x = 10; @@ -56344,21 +56315,15 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) -"phn" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) -"phx" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - id_tag = "or03"; - name = "Lobby" +"phw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/shipboard/panic) "phN" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -56369,6 +56334,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) +"pij" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"piJ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "piK" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -56383,6 +56361,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/computerlab) +"pjh" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "pjj" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -56392,15 +56376,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"pjr" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "pjw" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"pjz" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_bow) "pjF" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -56420,6 +56404,18 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) +"pjP" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/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/aft_hallway) "pjR" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -56430,18 +56426,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"pkv" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +"pjY" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_a_s) -"pkx" = ( -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 10; + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/upper/aft_hallway) "pkz" = ( /turf/open/floor/almayer{ icon_state = "redfull" @@ -56457,13 +56450,18 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"plI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, +"plv" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"pmd" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" + icon_state = "plate" }, -/area/almayer/shipboard/brig/surgery) +/area/almayer/hallways/lower/port_aft_hallway) "pmq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -56494,14 +56492,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"pmS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) "pmV" = ( /obj/structure/prop/server_equipment/yutani_server/broken{ density = 0; @@ -56514,6 +56504,16 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"pnh" = ( +/obj/structure/ladder{ + height = 2; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/p_bow) "pns" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -56524,16 +56524,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"pnI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random/case/small, +"pnC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "sterile_green_side" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/medical/lower_medical_medbay) "pnL" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_2" @@ -56551,21 +56547,21 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"pnV" = ( -/obj/structure/machinery/cm_vending/clothing/maintenance_technician, -/turf/open/floor/almayer{ - icon_state = "plate" +"pok" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/area/almayer/engineering/upper_engineering/port) -"poj" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_f_p) "poA" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/bucket/mopbucket, @@ -56604,6 +56600,21 @@ /obj/item/device/camera, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) +"ppG" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) +"ppM" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"ppV" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "pqc" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -56628,6 +56639,19 @@ /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/stern_hallway) +"pqw" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "pqD" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -56645,16 +56669,22 @@ /obj/item/trash/cigbutt, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"pqG" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/p_bow) "pqK" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/bravo) +"pqM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Workshop Vendors" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/repair_bay) "pqP" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light{ @@ -56664,25 +56694,39 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"pqU" = ( -/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/hull/upper/u_m_s) "pqX" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/gym) +"prf" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"pri" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"prl" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "prx" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -56707,22 +56751,19 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"prS" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/tool/wet_sign{ - pixel_x = -8; - pixel_y = 6 +"prV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/hallways/upper/stern_hallway) +"prX" = ( +/obj/structure/ladder{ + height = 2; + id = "AftStarboardMaint" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_s) "prY" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray, @@ -56738,12 +56779,6 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) -"psl" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "psK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56772,12 +56807,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"psT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) "pth" = ( /obj/structure/surface/table/almayer, /obj/item/folder/blue, @@ -56810,18 +56839,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"ptr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "ptv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform{ @@ -56849,6 +56866,14 @@ "ptK" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/starboard) +"ptQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/s_stern) "ptZ" = ( /obj/structure/platform{ dir = 4; @@ -56862,6 +56887,16 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"pum" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "pun" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -56875,54 +56910,63 @@ icon_state = "silver" }, /area/almayer/living/cryo_cells) -"puv" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"puE" = ( -/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 +"puz" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/item/storage/donut_box{ + pixel_y = 8 }, -/area/almayer/shipboard/brig/chief_mp_office) +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) "puI" = ( /obj/structure/machinery/light{ dir = 4 }, /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_m_s) "puO" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"puV" = ( +"puT" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"pva" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Brig Breakroom" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/shipboard/brig/mp_bunks) "pvh" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/item/tool/warning_cone{ @@ -56932,22 +56976,31 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"pvv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"pvi" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" }, -/obj/structure/bed/chair{ - dir = 4 +/area/almayer/hallways/upper/aft_hallway) +"pvE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/water{ +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) +"pvI" = ( +/obj/structure/sign/safety/rad_haz{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/obj/structure/machinery/light/small, +/obj/structure/machinery/power/reactor, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/engineering/lower/engine_core) "pvJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56987,34 +57040,29 @@ icon_state = "redcorner" }, /area/almayer/shipboard/starboard_missiles) -"pwe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"pwd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "mono" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/upper/aft_hallway) "pwx" = ( -/obj/structure/largecrate/random/case/small, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/hallways/lower/starboard_midship_hallway) "pwG" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"pwJ" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "pxj" = ( /obj/structure/bed, /obj/item/bedsheet/brown, @@ -57057,12 +57105,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"pxO" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "pyc" = ( /obj/structure/bed/stool, /turf/open/floor/almayer{ @@ -57070,19 +57112,6 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) -"pye" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "pyi" = ( /obj/structure/prop/almayer/missile_tube{ icon_state = "missiletubesouth" @@ -57117,6 +57146,12 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/bravo) +"pym" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/upper/stern_hallway) "pyx" = ( /obj/structure/machinery/door_display/research_cell{ dir = 4; @@ -57173,6 +57208,15 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) +"pzc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "pzd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -57183,30 +57227,16 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"pzi" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +"pzj" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"pzl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" + icon_state = "redfull" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"pzA" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/lower/starboard_midship_hallway) "pzG" = ( /obj/docking_port/stationary/emergency_response/port1, /turf/open/floor/almayer{ @@ -57226,40 +57256,36 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"pzR" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "pzV" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "bluecorner" }, /area/almayer/living/briefing) -"pAa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +"pzW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hallways/lower/vehiclehangar) "pAm" = ( /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"pAH" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"pBE" = ( -/obj/structure/pipes/vents/pump, +"pAV" = ( +/obj/structure/platform{ + dir = 1 + }, +/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 = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/upper/stern_hallway) "pBG" = ( /turf/closed/wall/almayer, /area/almayer/command/corporateliaison) -"pCe" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) "pCq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -57277,6 +57303,17 @@ 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/hull/upper/u_m_s) "pDh" = ( /obj/structure/machinery/power/monitor{ name = "Core Power Monitoring" @@ -57295,24 +57332,6 @@ icon_state = "tcomms" }, /area/almayer/engineering/upper_engineering/starboard) -"pDk" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/s_bow) -"pDl" = ( -/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/aft_hallway) "pDo" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -57326,18 +57345,6 @@ icon_state = "plating" }, /area/almayer/shipboard/starboard_point_defense) -"pDq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "pDr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -57385,38 +57392,12 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"pDZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"pEf" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/upper/aft_hallway) -"pEh" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, +"pEd" = ( /turf/open/floor/almayer{ - icon_state = "greencorner" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/stern_hallway) "pEl" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -57435,35 +57416,12 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"pEp" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"pEu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) "pEB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"pEH" = ( -/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) "pEJ" = ( /obj/structure/machinery/flasher{ alpha = 1; @@ -57491,72 +57449,55 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) -"pFh" = ( -/obj/structure/machinery/power/apc/almayer{ +"pFf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ 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 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/upper/stern_hallway) -"pFx" = ( -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" + dir = 4; + icon_state = "blue" }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +/area/almayer/hallways/upper/aft_hallway) +"pFq" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars, +/obj/item/device/whistle{ + pixel_y = 5 }, -/obj/structure/closet/crate, -/obj/item/clothing/suit/storage/hazardvest/black, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) -"pFO" = ( -/obj/structure/stairs, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/area/almayer/maint/hull/upper/u_f_s) +"pFr" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pGD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/maint/hull/lower/l_a_p) +"pGh" = ( +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -9; + pixel_y = 19 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"pGj" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/lower/l_a_s) +"pGG" = ( +/obj/effect/landmark/start/doctor, +/obj/structure/sign/safety/maint{ + pixel_y = 26 + }, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) "pGK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -57568,18 +57509,6 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"pGQ" = ( -/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/stern_hallway) "pGT" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -57590,12 +57519,20 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"pHk" = ( -/obj/structure/closet/firecloset, +"pHh" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "cargo" + dir = 1; + icon_state = "green" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/port_midship_hallway) "pHp" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/perma) @@ -57605,6 +57542,23 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"pHD" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"pHF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "pHG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -57623,15 +57577,40 @@ /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"pIM" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"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{ - dir = 10; - icon_state = "green" + icon_state = "dark_sterile" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_s) +"pIo" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) +"pIC" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/constr) "pIU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -57646,13 +57625,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"pIX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/aft_hallway) "pIZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -57662,10 +57634,16 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/north1) -"pJa" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) +"pJq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "pJr" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -57674,19 +57652,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/engine_core) -"pJv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) "pJD" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -57706,17 +57671,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) -"pJE" = ( -/obj/item/trash/uscm_mre, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "pJR" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; @@ -57730,65 +57684,36 @@ dir = 4 }, /area/almayer/command/airoom) -"pJV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"pJY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"pKh" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"pKB" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/firealarm, +/obj/item/circuitboard, +/obj/item/clipboard, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"pKd" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"pKs" = ( -/obj/structure/stairs{ - dir = 4 +/area/almayer/maint/hull/upper/s_stern) +"pKW" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/repair_bay) "pKZ" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -57821,13 +57746,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"pLB" = ( -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "pLO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -57848,15 +57766,6 @@ icon_state = "cargo" }, /area/almayer/living/pilotbunks) -"pMh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "pMj" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -57881,27 +57790,19 @@ icon_state = "plate" }, /area/almayer/medical/morgue) -"pMz" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "pMA" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/hallways/upper/port) -"pMI" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"pMH" = ( +/obj/item/tool/wet_sign, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "pMJ" = ( /obj/structure/bed/chair{ dir = 1 @@ -57929,33 +57830,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"pNk" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/light/small{ - dir = 4; - pixel_y = -12 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/execution) -"pNu" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "pNM" = ( /obj/structure/platform{ dir = 4 @@ -57978,18 +57852,32 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) -"pOa" = ( -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "pOi" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/offices) +"pOp" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + 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/aft_hallway) "pOD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -58000,25 +57888,27 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) +"pOH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) "pON" = ( /turf/open/floor/almayer/uscm/directional{ dir = 8 }, /area/almayer/command/cic) -"pOR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/ladder{ - height = 2; - id = "cicladder3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 +"pOW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "pOY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/microwave{ @@ -58029,14 +57919,20 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"pPq" = ( -/obj/structure/bed/chair{ - dir = 8 +"pPd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/shipboard/panic) +"pPn" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) "pPv" = ( /obj/structure/closet/cabinet, /obj/item/reagent_container/food/drinks/bottle/wine, @@ -58061,16 +57957,14 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"pPw" = ( -/obj/structure/largecrate/supply/generator, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +"pPy" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/maint/hull/upper/u_a_p) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "pPA" = ( /obj/structure/sign/poster{ desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; @@ -58087,6 +57981,15 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"pPG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "pPM" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ @@ -58101,13 +58004,19 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"pPR" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/port_umbilical) -"pQh" = ( -/obj/structure/machinery/light, +"pPQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer{ - icon_state = "red" + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) +"pPU" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" }, /area/almayer/hallways/upper/aft_hallway) "pQr" = ( @@ -58175,6 +58084,10 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"pRs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "pRy" = ( /turf/open/floor/almayer/research/containment/corner_var1{ dir = 4 @@ -58218,20 +58131,24 @@ }, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop) -"pSK" = ( +"pSF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"pSP" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/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/aft_hallway) "pSQ" = ( /obj/structure/reagent_dispensers/fueltank{ anchored = 1 @@ -58265,24 +58182,16 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"pTD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ +"pTX" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"pTQ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/lower/l_f_p) "pUd" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -58351,16 +58260,27 @@ icon_state = "redfull" }, /area/almayer/shipboard/brig/processing) -"pVg" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"pVx" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +"pUL" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m41a, /turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"pVr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pVx" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer{ + icon_state = "redfull" }, /area/almayer/squads/req) "pVA" = ( @@ -58395,49 +58315,26 @@ }, /area/almayer/living/briefing) "pVF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"pVG" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/atm{ + pixel_y = 32 }, -/area/almayer/maint/hull/upper/u_a_s) -"pVK" = ( /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/command/corporateliaison) "pWb" = ( /obj/effect/landmark/start/marine/tl/delta, /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"pWg" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, +"pWd" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) -"pWp" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/upper/u_f_s) "pWr" = ( /obj/structure/surface/rack, /obj/item/tool/minihoe{ @@ -58465,44 +58362,55 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"pWA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 8 +"pWw" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/squads/req) +/area/almayer/maint/hull/upper/u_a_s) "pWN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "blue" }, /area/almayer/living/pilotbunks) -"pWR" = ( +"pXe" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, -/area/almayer/hallways/lower/port_umbilical) -"pWT" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/area/almayer/engineering/upper_engineering/port) +"pXh" = ( +/obj/structure/machinery/power/apc/almayer{ + cell_type = /obj/item/cell/hyper; + dir = 1 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" + dir = 1; + icon_state = "red" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/shipboard/brig/mp_bunks) "pXl" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -58539,18 +58447,23 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) "pYh" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/sign/safety/one{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "red" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/starboard_midship_hallway) "pYi" = ( /obj/structure/machinery/light{ dir = 4 @@ -58582,6 +58495,24 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"pYN" = ( +/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/lower/port_fore_hallway) +"pYQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "pYS" = ( /obj/structure/pipes/binary/pump/on{ dir = 4 @@ -58597,21 +58528,18 @@ icon_state = "silvercorner" }, /area/almayer/shipboard/brig/cic_hallway) -"pZa" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_umbilical) -"pZk" = ( +"pZq" = ( +/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/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/stern_hallway) "pZH" = ( /obj/structure/machinery/shower{ dir = 8 @@ -58653,19 +58581,28 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"qay" = ( +"qan" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"qas" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qax" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/hallways/lower/port_midship_hallway) -"qaT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) "qaV" = ( /turf/open/floor/almayer{ dir = 10; @@ -58680,9 +58617,6 @@ icon_state = "red" }, /area/almayer/living/briefing) -"qbs" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_m_p) "qbx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -58733,12 +58667,6 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qcr" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "qcy" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 8; @@ -58748,12 +58676,13 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) -"qcM" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +"qcL" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/maint/upper/u_m_p) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "qdk" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -58804,9 +58733,6 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) -"qdy" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_s) "qdz" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -58830,6 +58756,12 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"qdV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "qec" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -58872,16 +58804,6 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) -"qev" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "qeF" = ( /obj/structure/sign/safety/reception{ pixel_x = 8; @@ -58907,13 +58829,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"qeO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/headset/almayer/mt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "qeY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/beach_ball/holoball, @@ -58935,13 +58850,12 @@ icon_state = "plate" }, /area/almayer/squads/alpha_bravo_shared) -"qfp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +"qfq" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/port_umbilical) "qfy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -58977,6 +58891,21 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"qfI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qfQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade/three, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "qga" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ dir = 1 @@ -59002,14 +58931,16 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qgM" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +"qgK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic/press{ + dir = 1; + name = "\improper Combat Correspondent Room" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/command/combat_correspondent) "qgN" = ( /obj/structure/bed/chair{ dir = 4 @@ -59068,21 +58999,31 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) -"qhR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -8 +"qhG" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 5 }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -7; + pixel_y = 14 }, -/area/almayer/hallways/lower/port_fore_hallway) +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "qhU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -59098,6 +59039,22 @@ icon_state = "orange" }, /area/almayer/squads/bravo) +"qid" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"qig" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "qih" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -59117,16 +59074,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"qip" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "qit" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light{ @@ -59144,14 +59091,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"qiD" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/lower/s_bow) "qjz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/clipboard, @@ -59168,11 +59107,28 @@ icon_state = "silvercorner" }, /area/almayer/command/computerlab) +"qjL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "qjN" = ( /turf/open/floor/almayer{ 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/hull/upper/u_m_s) "qjV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -59184,47 +59140,11 @@ "qjZ" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/stern_point_defense) -"qkb" = ( -/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/aft_hallway) -"qkc" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "qki" = ( /obj/effect/landmark/start/marine/smartgunner/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"qkn" = ( -/obj/structure/machinery/power/apc/almayer{ - cell_type = /obj/item/cell/hyper; - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"qkz" = ( -/obj/structure/machinery/cm_vending/clothing/maintenance_technician, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) "qkP" = ( /obj/item/frame/light_fixture{ anchored = 1; @@ -59278,18 +59198,12 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qlt" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, +"qlu" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_a_s) "qlz" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -59307,43 +59221,16 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"qlS" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -7; - pixel_y = 17 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 12; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"qmb" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - access_modified = 1; - name = "\improper Requisition's Office"; - req_one_access = null; - req_one_access_txt = "1;26" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"qlL" = ( +/obj/item/reagent_container/food/drinks/cans/souto, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo_arrow" }, -/area/almayer/squads/req) +/area/almayer/hallways/lower/repair_bay) +"qmh" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/lower/repair_bay) "qmk" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -59358,6 +59245,27 @@ icon_state = "bluecorner" }, /area/almayer/squads/delta) +"qmq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/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/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "qmy" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -59393,21 +59301,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/medical_science) -"qmC" = ( -/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{ - name = "\improper Brig"; - closeOtherId = "brigmaint_n" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) "qmD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -59420,6 +59313,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) +"qmM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "qmP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm, @@ -59457,6 +59363,15 @@ }, /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/hallways/upper/stern_hallway) "qnh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -59481,15 +59396,14 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"qny" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Under Construction Shutters"; - name = "\improper Construction Site" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"qnA" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 }, -/area/almayer/maint/lower/constr) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "qnC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -59505,28 +59419,6 @@ icon_state = "test_floor4" }, /area/almayer/living/pilotbunks) -"qnN" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"qob" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"qoj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "qom" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/chem_dispenser/soda{ @@ -59551,12 +59443,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) -"qor" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "qoJ" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -59578,6 +59464,11 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"qoN" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) "qoR" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -59587,6 +59478,20 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"qoX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "qoY" = ( /obj/structure/machinery/vending/hydroseeds, /turf/open/floor/almayer{ @@ -59604,6 +59509,13 @@ 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/stern_hallway) "qpQ" = ( /obj/item/reagent_container/glass/beaker/bluespace, /obj/structure/machinery/chem_dispenser/medbay, @@ -59611,15 +59523,29 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/chemistry) -"qqi" = ( -/obj/structure/sign/safety/hvac_old{ +"qpV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; pixel_y = 32 }, +/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{ - icon_state = "plate" + dir = 9; + icon_state = "blue" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/hallways/upper/aft_hallway) +"qqf" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "qqn" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -59642,17 +59568,6 @@ icon_state = "redcorner" }, /area/almayer/command/lifeboat) -"qqC" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/main_office) "qqK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -59677,10 +59592,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"qqV" = ( -/obj/structure/machinery/cm_vending/clothing/military_police_warden, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) +"qqS" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "qra" = ( /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer{ @@ -59705,36 +59622,10 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"qrS" = ( -/obj/item/clothing/head/welding{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"qsj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) -"qsr" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) +"qsp" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "qsC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction, @@ -59743,43 +59634,6 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"qsJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_x = -7; - pixel_y = -26; - req_one_access_txt = "3;22;2;19;7" - }, -/obj/structure/surface/rack, -/obj/item/rappel_harness{ - pixel_y = 8 - }, -/obj/item/rappel_harness, -/obj/item/rappel_harness{ - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/hallways/lower/repair_bay) -"qsK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) "qsL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -59805,17 +59659,6 @@ icon_state = "plate" }, /area/almayer/living/gym) -"qtO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"qtZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/p_stern) "quj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -59895,33 +59738,12 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"qvd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"qvl" = ( -/obj/item/stack/folding_barricade/three, -/obj/item/stack/folding_barricade/three, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/panic) "qvC" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"qvG" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "qvI" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 @@ -59943,6 +59765,13 @@ 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/aft_hallway) "qwo" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -59976,9 +59805,6 @@ icon_state = "plate" }, /area/almayer/living/offices) -"qwE" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_s) "qwJ" = ( /obj/structure/machinery/door_control{ id = "ARES Operations Left"; @@ -59992,22 +59818,12 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"qwT" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/cryo_cells) -"qxb" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +"qwY" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/upper/u_f_s) "qxe" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 @@ -60088,6 +59904,21 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) +"qxI" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) +"qxJ" = ( +/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/aft_hallway) "qxL" = ( /obj/structure/machinery/medical_pod/autodoc, /turf/open/floor/almayer{ @@ -60107,11 +59938,6 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"qyd" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "qyi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -60124,12 +59950,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"qyj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "qyo" = ( /turf/open/floor/almayer{ dir = 1; @@ -60142,21 +59962,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"qyu" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"qyw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "qyD" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -60164,6 +59969,13 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"qyG" = ( +/obj/structure/sign/safety/hazard{ + desc = "A sign that warns of a hazardous environment nearby"; + name = "\improper Warning: Hazardous Environment" + }, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) "qyK" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -60171,16 +59983,21 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"qyL" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"qyP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/port_fore_hallway) "qyW" = ( /obj/structure/bed/chair{ dir = 4 @@ -60189,6 +60006,13 @@ icon_state = "emeraldfull" }, /area/almayer/squads/charlie_delta_shared) +"qyX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "qyZ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/view_objectives, @@ -60212,42 +60036,12 @@ icon_state = "plating" }, /area/almayer/shipboard/port_point_defense) -"qzm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, +"qzA" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"qAa" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"qAc" = ( -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/lower/p_bow) "qAs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -60257,6 +60051,16 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) +"qAy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "qAA" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" @@ -60277,6 +60081,29 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"qAG" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"qAK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "qAT" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, @@ -60299,6 +60126,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"qBl" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "qBq" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -60311,12 +60144,6 @@ icon_state = "test_floor4" }, /area/almayer/living/commandbunks) -"qBE" = ( -/obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) "qBM" = ( /obj/item/storage/fancy/crayons{ layer = 3.1; @@ -60328,6 +60155,18 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"qBS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "qCc" = ( /obj/structure/sign/safety/security{ pixel_x = 15; @@ -60355,6 +60194,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"qCH" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Secretroom"; + indestructible = 1; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_s) "qCU" = ( /obj/structure/machinery/light{ dir = 4 @@ -60389,6 +60238,12 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) +"qDB" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_p) "qDN" = ( /obj/structure/machinery/light{ dir = 8 @@ -60407,10 +60262,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) -"qEa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +"qDS" = ( +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"qDT" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/mp_bunks) +"qEc" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "qEk" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -60424,6 +60291,15 @@ icon_state = "plating" }, /area/almayer/command/cic) +"qEl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "qEn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -60438,13 +60314,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/hydroponics) -"qEw" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "qEy" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -60452,6 +60321,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) +"qEz" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_y = -21; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "qEA" = ( /obj/structure/bed, /obj/structure/machinery/flasher{ @@ -60476,45 +60364,34 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"qEP" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) -"qFi" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"qFm" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Medical Storage" +"qEM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" }, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/medical/lower_medical_medbay) -"qFp" = ( -/obj/structure/surface/table/almayer, -/obj/item/attachable/lasersight, -/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ - pixel_x = 10; - pixel_y = 11 +/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 = "plate" + icon_state = "dark_sterile" }, -/area/almayer/maint/hull/upper/u_m_s) -"qFr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 +/area/almayer/maint/hull/upper/u_a_s) +"qFi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/shipboard/brig/chief_mp_office) "qFu" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -60552,6 +60429,16 @@ icon_state = "bluefull" }, /area/almayer/squads/delta) +"qFS" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "qGc" = ( /turf/open/floor/almayer{ dir = 1; @@ -60575,27 +60462,39 @@ icon_state = "cargo" }, /area/almayer/engineering/lower/workshop/hangar) +"qGC" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "qGF" = ( /obj/structure/machinery/optable, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_two) -"qGS" = ( +"qGP" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/living/cryo_cells) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_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/aft_hallway) "qHg" = ( /turf/open/floor/almayer{ dir = 1; @@ -60612,30 +60511,20 @@ icon_state = "test_floor4" }, /area/almayer/powered) -"qHK" = ( -/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 +"qHu" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) +"qHG" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/upper/p_stern) "qHM" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -60646,16 +60535,29 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) -"qHZ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" +"qHP" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/brig/starboard_hallway) +"qIa" = ( +/obj/structure/platform{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/upper/u_a_s) +"qIf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "qIx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; @@ -60667,18 +60569,6 @@ icon_state = "test_floor4" }, /area/almayer/command/corporateliaison) -"qIB" = ( -/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) "qIL" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/camera/autoname/almayer{ @@ -60699,15 +60589,6 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"qJb" = ( -/obj/effect/decal/cleanable/vomit, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/engineering/upper_engineering/port) "qJf" = ( /obj/structure/machinery/light{ dir = 4 @@ -60737,18 +60618,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/perma) -"qJr" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 7; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "qJx" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/almayer{ @@ -60812,6 +60681,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"qKb" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/tubes{ + pixel_x = -8 + }, +/obj/item/storage/box/lights/tubes{ + pixel_x = 5 + }, +/obj/item/storage/box/lights/tubes{ + pixel_y = 10 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "qKi" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -60824,6 +60706,15 @@ icon_state = "plating" }, /area/almayer/engineering/upper_engineering) +"qKl" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "qKz" = ( /obj/structure/machinery/light/small, /turf/open/floor/almayer{ @@ -60831,15 +60722,15 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"qKT" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/camera_film, +"qKK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/l_a_p) "qKY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -60850,16 +60741,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"qLb" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "qLg" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -60915,16 +60796,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"qLO" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/machinery/recycler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/maint/hull/lower/l_a_p) "qLS" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom, /turf/open/floor/almayer/no_build{ @@ -60939,6 +60810,13 @@ icon_state = "silver" }, /area/almayer/command/computerlab) +"qLY" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "qMD" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/flashbangs, @@ -60980,12 +60858,6 @@ icon_state = "cargo" }, /area/almayer/squads/delta) -"qNw" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "qNI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -60995,6 +60867,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) +"qNK" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_f_s) "qNR" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -61029,17 +60915,43 @@ /obj/structure/disposalpipe/junction, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"qPC" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 +"qOS" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/lower/starboard_fore_hallway) +"qOY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) +"qPk" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qPn" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/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/aft_hallway) "qPD" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) @@ -61056,9 +60968,6 @@ icon_state = "silverfull" }, /area/almayer/command/securestorage) -"qPO" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/surgery) "qPS" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -61068,6 +60977,10 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"qPU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "qPX" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -61101,6 +61014,13 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"qQG" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "qQS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -61113,12 +61033,19 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"qRi" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" +"qRb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qRd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "qRj" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -61135,12 +61062,6 @@ icon_state = "silvercorner" }, /area/almayer/shipboard/brig/cic_hallway) -"qRq" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) "qRr" = ( /obj/structure/machinery/door/airlock/almayer/generic/corporate, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -61154,21 +61075,24 @@ 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/aft_hallway) "qSm" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) -"qSB" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) +"qSw" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "qSE" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/cholula, @@ -61176,6 +61100,14 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"qSI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "qSK" = ( /obj/item/stack/sheet/metal{ layer = 2.9; @@ -61197,21 +61129,14 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"qTd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) -"qTv" = ( -/obj/structure/closet, -/obj/item/device/flashlight/pen, -/obj/item/attachable/reddot, -/obj/structure/machinery/light/small{ +"qTu" = ( +/obj/structure/machinery/power/apc/almayer{ dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/hallways/lower/port_umbilical) "qTQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -61282,15 +61207,11 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"qUT" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) +"qUO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "qUZ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -61313,6 +61234,12 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) +"qVE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "qVF" = ( /turf/open/floor/almayer{ icon_state = "cargo" @@ -61350,25 +61277,34 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"qWG" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 - }, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 - }, +"qWx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "silver" + icon_state = "plate" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/lower/port_midship_hallway) "qWI" = ( /obj/structure/machinery/status_display{ pixel_y = -30 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"qWK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"qWL" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/item/frame/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "qWQ" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -61383,32 +61319,43 @@ dir = 4 }, /area/almayer/medical/containment/cell/cl) -"qXe" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +"qWS" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/pill/happy{ + pixel_x = 6; + pixel_y = -4 }, -/area/almayer/maint/hull/upper/u_m_s) -"qXg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 }, -/obj/structure/bed/chair{ - dir = 1 +/obj/item/tool/surgery/bonegel/empty{ + pixel_y = 15; + pixel_x = 4 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_y = 13; + pixel_x = -8 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_y = 19; + pixel_x = -5; + layer = 3.01 + }, +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = -5; + pixel_y = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"qXk" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "sterile_green_corner" }, -/area/almayer/engineering/lower/workshop) -"qXm" = ( -/obj/structure/largecrate/random/barrel/green, +/area/almayer/medical/lower_medical_medbay) +"qXk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/engineering/lower/workshop) "qXo" = ( /obj/structure/machinery/seed_extractor, /obj/structure/machinery/light{ @@ -61429,21 +61376,19 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"qXz" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) "qXE" = ( /obj/structure/machinery/brig_cell/perma_1{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) +"qXG" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "qXO" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/mre_pack/xmas3{ @@ -61475,10 +61420,6 @@ allow_construction = 0 }, /area/almayer/hallways/upper/port) -"qXW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "qXZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -61535,6 +61476,17 @@ icon_state = "mono" }, /area/almayer/command/lifeboat) +"qYN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/toy/deck, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/living/offices/flight) "qYQ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -61558,23 +61510,20 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"qZh" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +"qZy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/hallways/lower/port_midship_hallway) -"qZj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"qZx" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "qZA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -61612,6 +61561,21 @@ icon_state = "greenfull" }, /area/almayer/living/offices) +"qZK" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qZT" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "qZX" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -61626,17 +61590,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) -"raq" = ( +"raE" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"raD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/port_fore_hallway) "raK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -61649,37 +61608,31 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"raT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"raO" = ( +/obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_f_p) "rbd" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"rbi" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/ids{ - pixel_x = -6; - pixel_y = 8 +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/item/device/flash, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "test_floor5" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/hallways/lower/starboard_midship_hallway) +"rbp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "rby" = ( /obj/structure/machinery/door_control{ id = "ARES Mainframe Left"; @@ -61697,18 +61650,6 @@ icon_state = "silvercorner" }, /area/almayer/command/computerlab) -"rbE" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/reagent_container/glass/rag, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "rbF" = ( /obj/effect/landmark/late_join, /obj/effect/landmark/ert_spawns/distress_cryo, @@ -61753,14 +61694,6 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"rcw" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "rcx" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -61774,6 +61707,13 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"rcG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "rcS" = ( /obj/structure/machinery/computer/cryopod/eng{ dir = 8 @@ -61794,6 +61734,18 @@ }, /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/aft_hallway) "rdt" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -61833,6 +61785,12 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) +"rdN" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "rdS" = ( /obj/structure/machinery/light{ dir = 8 @@ -61847,14 +61805,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"rdX" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, +"rdT" = ( +/obj/structure/machinery/power/apc/almayer, /turf/open/floor/almayer{ - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/port_fore_hallway) "rec" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 1 @@ -61875,21 +61831,21 @@ icon_state = "plate" }, /area/almayer/living/gym) -"rez" = ( +"reu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) -"reF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +"reH" = ( +/obj/structure/noticeboard{ + pixel_x = -10; + pixel_y = 31 }, -/obj/item/storage/firstaid/regular, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/squads/req) "reL" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/sliceable/bread{ @@ -61903,6 +61859,24 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"reM" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) +"reN" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "rfa" = ( /obj/effect/landmark/start/marine/medic/alpha, /obj/effect/landmark/late_join/alpha, @@ -61916,6 +61890,11 @@ icon_state = "containment_window_h" }, /area/almayer/medical/containment/cell/cl) +"rfB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "rfI" = ( /obj/structure/sign/safety/airlock{ pixel_y = -32 @@ -61928,6 +61907,10 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) +"rfQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "rfT" = ( /obj/item/frame/camera{ desc = "The Staff Officer insisted he needed to monitor everyone at all times."; @@ -61958,28 +61941,23 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) -"rgs" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 +"rgk" = ( +/obj/structure/platform_decoration{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) +"rgt" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/port_umbilical) "rgy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"rgC" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "rgK" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 @@ -62000,33 +61978,31 @@ }, /area/almayer/living/auxiliary_officer_office) "rgL" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"rgQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) "rgW" = ( /turf/open/floor/almayer{ icon_state = "emeraldcorner" }, /area/almayer/living/briefing) -"rhf" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"rhl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"rhm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"rht" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/almayer{ - icon_state = "redcorner" + icon_state = "plate" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/maint/hull/upper/s_stern) "rhy" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -62041,6 +62017,12 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"rhD" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "rhO" = ( /obj/structure/machinery/vending/cola/research{ pixel_x = 4 @@ -62055,6 +62037,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"rhX" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) "rib" = ( /obj/structure/sink{ dir = 8; @@ -62065,26 +62057,41 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"riv" = ( -/obj/structure/machinery/door/airlock/almayer/maint, +"rir" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_f_p) -"riw" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/upper/s_bow) +"riB" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"riC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/shipboard/panic) "riE" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -62097,31 +62104,18 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"riG" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/lower/vehiclehangar) -"riI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "riJ" = ( /turf/open/floor/almayer{ dir = 5; icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"riK" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silvercorner" + }, +/area/almayer/hallways/upper/aft_hallway) "riP" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/rewire{ @@ -62140,12 +62134,6 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) -"rji" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "rjn" = ( /obj/structure/machinery/light, /obj/structure/reagent_dispensers/water_cooler/stacks, @@ -62153,6 +62141,17 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"rjF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "rjG" = ( /obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/almayer{ @@ -62219,39 +62218,10 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) -"rkn" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "rkz" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/gym) -"rkF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) -"rkS" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "rlc" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -62288,36 +62258,21 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"rly" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"rlO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"rlD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "silver" }, -/area/almayer/maint/hull/upper/s_stern) +/area/almayer/hallways/lower/repair_bay) "rlQ" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "green" }, /area/almayer/living/grunt_rnr) -"rlY" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "rlZ" = ( /turf/open/floor/almayer{ icon_state = "dark_sterile" @@ -62343,18 +62298,6 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering/starboard) -"rmv" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation Observation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) "rmx" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -62363,38 +62306,18 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"rmB" = ( -/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_y = 15; - pixel_x = 4 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_y = 13; - pixel_x = -8 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_y = 19; - pixel_x = -5; - layer = 3.01 - }, -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = -5; - pixel_y = 2 +"rmz" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = 14; + pixel_y = 32 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rmB" = ( /turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" + icon_state = "blue" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/hallways/upper/aft_hallway) "rmD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -62415,28 +62338,18 @@ "rna" = ( /turf/closed/wall/almayer/white, /area/almayer/command/airoom) -"rng" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_p) -"rnu" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 +"rnd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_y = 24; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "green" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/upper/aft_hallway) "rnF" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -62473,19 +62386,25 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"rnP" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"rnO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 10; - icon_state = "red" + icon_state = "test_floor4" }, /area/almayer/hallways/upper/stern_hallway) "rob" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) +"roj" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "rou" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -62497,10 +62416,6 @@ icon_state = "cargo" }, /area/almayer/squads/bravo) -"row" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) "roG" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -62523,17 +62438,6 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"roK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "roU" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -62541,19 +62445,27 @@ }, /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/hallways/upper/stern_hallway) "rpp" = ( /obj/effect/landmark/start/executive, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) -"rpF" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 8 +"rpG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" + icon_state = "test_floor4" }, -/area/almayer/shipboard/brig/surgery) +/area/almayer/maint/hull/upper/u_m_s) "rpK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -62563,18 +62475,6 @@ icon_state = "plate" }, /area/almayer/command/cichallway) -"rqa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/stern_hallway) "rqb" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 @@ -62591,10 +62491,38 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"rqn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +"rqv" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) +"rqz" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 + }, +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"rqD" = ( +/obj/structure/disposalpipe/segment, +/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_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "rqE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -62606,16 +62534,13 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"rqL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +"rqQ" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" }, -/area/almayer/hallways/lower/starboard_umbilical) +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "rqS" = ( /obj/structure/surface/table/almayer, /obj/item/folder/red{ @@ -62631,18 +62556,15 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/evidence_storage) -"rro" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +"rrh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Under Construction Shutters"; + name = "\improper Construction Site" }, -/area/almayer/hallways/upper/stern_hallway) -"rrp" = ( -/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/lower/constr) "rrq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -62673,6 +62595,13 @@ 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/stern_hallway) "rrK" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -62698,26 +62627,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"rrO" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) -"rsr" = ( -/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" +"rrU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "rsK" = ( /obj/structure/sign/safety/hvac_old, /turf/closed/wall/almayer, /area/almayer/squads/req) +"rsL" = ( +/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/hallways/lower/port_aft_hallway) "rsM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -62731,6 +62659,31 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/computerlab) +"rsP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"rsS" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = -25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) +"rsV" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "rtd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -62740,6 +62693,12 @@ "rth" = ( /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"rtj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) "rtA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/pen{ @@ -62752,6 +62711,9 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"rtP" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/interrogation) "rtV" = ( /obj/structure/surface/table/almayer, /obj/item/pizzabox{ @@ -62827,62 +62789,62 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) -"ruC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"ruD" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "ruL" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop/hangar) -"ruS" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) -"rvt" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) +"rvf" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) "rvA" = ( /turf/open/floor/almayer, /area/almayer/living/numbertwobunks) +"rvI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "rvT" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ icon_state = "emerald" }, /area/almayer/squads/charlie) -"rwh" = ( -/obj/structure/largecrate/random/barrel/white, +"rwe" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/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{ - icon_state = "plate" + dir = 1; + icon_state = "silver" }, -/area/almayer/maint/hull/lower/l_f_p) -"rwk" = ( -/obj/structure/closet/emcloset, +/area/almayer/hallways/upper/aft_hallway) +"rwj" = ( /turf/open/floor/almayer{ - icon_state = "cargo" + dir = 4; + icon_state = "orange" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "rwq" = ( /obj/structure/sign/safety/cryo{ pixel_x = 7; @@ -62918,26 +62880,26 @@ }, /turf/open/floor/plating, /area/almayer/living/pilotbunks) -"rxm" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ - dir = 4 - }, +"rwZ" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_p) +"rxe" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_p) -"rxr" = ( -/obj/item/stool, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/maint/hull/lower/l_m_p) +"rxq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/lower/l_m_p) "rxK" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -62948,17 +62910,6 @@ icon_state = "silverfull" }, /area/almayer/command/computerlab) -"rye" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"ryg" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "ryt" = ( /obj/structure/pipes/standard/manifold/visible, /turf/open/floor/almayer{ @@ -62985,61 +62936,52 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"rzC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +"rzk" = ( +/obj/item/tool/screwdriver, +/obj/structure/platform_decoration{ + dir = 8 }, -/area/almayer/hallways/upper/aft_hallway) -"rzG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/upper/u_a_p) +"rzy" = ( +/obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) -"rzK" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/port_aft_hallway) "rzN" = ( /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/containment) -"rzY" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "rAb" = ( /turf/open/floor/almayer{ icon_state = "bluecorner" }, /area/almayer/living/briefing) -"rAc" = ( -/obj/structure/disposalpipe/segment{ +"rAo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"rAw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 8 }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"rAk" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/p_bow) +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = -7 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) "rAx" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -63082,20 +63024,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"rAX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "rBa" = ( /obj/structure/machinery/cm_vending/clothing/synth, /obj/structure/prop/invuln/overhead_pipe{ @@ -63115,15 +63043,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"rBd" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "rBj" = ( /obj/structure/machinery/processor, /turf/open/floor/plating/plating_catwalk, @@ -63145,6 +63064,12 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) +"rBD" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/u_m_p) "rBH" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_2" @@ -63153,13 +63078,18 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"rBV" = ( -/obj/structure/bed/chair/bolted, +"rCd" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/medical) +"rCh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/open/floor/almayer{ - dir = 9; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/maint/hull/lower/l_m_p) "rCi" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ dir = 8 @@ -63216,41 +63146,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"rCP" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"rCU" = ( -/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{ - dir = 1; - name = "\improper Warden's Office"; - closeOtherId = "brigwarden" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/chief_mp_office) -"rCX" = ( -/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/aft_hallway) "rDb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -63283,20 +63178,15 @@ icon_state = "green" }, /area/almayer/squads/req) -"rDk" = ( +"rDf" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"rDp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) +/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/aft_hallway) "rDr" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -63333,50 +63223,52 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"rDC" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"rDM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +"rDH" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"rDO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) "rDQ" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/shipboard/brig/cryo) +"rDR" = ( +/obj/structure/machinery/vending/coffee, +/obj/item/toy/bikehorn/rubberducky{ + desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; + name = "Quackers"; + pixel_x = 5; + pixel_y = 17 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "rDV" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"rDY" = ( -/obj/item/stack/sheet/glass/reinforced{ - amount = 50 - }, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/chief_mp_office) "rEd" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/lower/port_fore_hallway) "rEf" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -63402,13 +63294,16 @@ }, /area/space) "rEs" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "orange" }, /area/almayer/maint/hull/upper/u_a_s) +"rEt" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_f_s) "rEv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -63422,35 +63317,25 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"rEF" = ( +"rEK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12; pixel_y = 12 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/lower/l_f_p) "rEL" = ( /obj/structure/machinery/cm_vending/gear/intelligence_officer, /turf/open/floor/almayer{ icon_state = "silverfull" }, /area/almayer/command/computerlab) -"rEO" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"rEQ" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) "rEY" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -63500,29 +63385,32 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"rFO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"rGc" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + dir = 10; + icon_state = "red" }, /area/almayer/hallways/upper/stern_hallway) -"rFS" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_s) "rGj" = ( /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/squads/alpha) +"rGr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"rGz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "rGE" = ( /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Conference Room" @@ -63547,6 +63435,15 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) +"rGL" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "rGU" = ( /obj/structure/machinery/computer/skills{ req_one_access_txt = "200" @@ -63554,13 +63451,6 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"rGZ" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/squads/req) "rHc" = ( /turf/open/floor/carpet, /area/almayer/command/cichallway) @@ -63571,26 +63461,13 @@ icon_state = "plate" }, /area/almayer/squads/alpha_bravo_shared) -"rHg" = ( +"rHn" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - dir = 1; icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) -"rHm" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/lower/vehiclehangar) "rHo" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 @@ -63610,6 +63487,19 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_medbay) +"rHq" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"rHr" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "rHw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -63621,17 +63511,17 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"rHA" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 +"rHB" = ( +/obj/item/ammo_box/magazine/misc/mre/empty{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 11; + pixel_y = -3 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/upper/p_stern) "rHN" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/plating/plating_catwalk, @@ -63664,26 +63554,27 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_lobby) +"rIw" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "rID" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"rIG" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +"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 }, -/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_m_s) "rIH" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -63701,6 +63592,27 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"rIP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rIV" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "rIW" = ( /obj/structure/machinery/cm_vending/gear/synth, /obj/effect/decal/cleanable/cobweb2, @@ -63709,11 +63621,11 @@ }, /area/almayer/living/synthcloset) "rJf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_a_p) "rJh" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -63768,63 +63680,39 @@ /obj/structure/machinery/cm_vending/own_points/experimental_tools, /turf/open/floor/almayer, /area/almayer/living/synthcloset) -"rJE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rJF" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "rJK" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/briefing) -"rJN" = ( -/obj/structure/sign/safety/rewire{ - pixel_y = 32 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, +"rJY" = ( +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/surface/rack, /turf/open/floor/almayer{ dir = 5; icon_state = "red" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/maint/hull/upper/u_a_p) "rKd" = ( /turf/open/floor/almayer/uscm/directional{ dir = 5 }, /area/almayer/command/cic) +"rKh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/ids{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/device/flash, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "rKn" = ( /obj/structure/machinery/door_control{ id = "agentshuttle"; @@ -63849,19 +63737,6 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) -"rKI" = ( -/obj/structure/machinery/light/small, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_umbilical) "rKO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63877,38 +63752,11 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"rKX" = ( -/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/aft_hallway) -"rLi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "rLk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"rLl" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "rLp" = ( /obj/structure/machinery/chem_dispenser/soda{ pixel_y = 20 @@ -63921,6 +63769,30 @@ icon_state = "containment_window_h" }, /area/almayer/medical/containment/cell/cl) +"rLH" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/device/binoculars, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) +"rLK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "rLP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -63933,41 +63805,25 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"rLQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "rLU" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 8 }, /area/almayer/medical/containment/cell/cl) -"rMh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"rMj" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/hallways/lower/vehiclehangar) -"rMk" = ( -/obj/structure/sign/poster/ad{ - pixel_x = 30 - }, -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/almayer{ - icon_state = "plate" +"rMO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/maint/hull/lower/l_m_s) -"rMG" = ( -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/lower/s_bow) "rMT" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -64038,38 +63894,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"rNT" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"rNY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"rNZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"rOa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "rOc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -64088,6 +63912,14 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) +"rOv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "rOC" = ( /obj/structure/machinery/light{ dir = 1 @@ -64096,15 +63928,6 @@ icon_state = "plate" }, /area/almayer/command/cic) -"rOD" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "rOI" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -64119,21 +63942,14 @@ icon_state = "plate" }, /area/almayer/living/gym) -"rOR" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) -"rPc" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"rPq" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/area/almayer/hallways/lower/starboard_umbilical) -"rPl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/upper/p_stern) "rPt" = ( /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) @@ -64173,6 +63989,14 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) +"rQs" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "rQt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -64180,6 +64004,20 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) +"rQw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) "rQy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/hydroponics) @@ -64190,11 +64028,11 @@ }, /area/almayer/squads/delta) "rQP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/shipboard/brig/starboard_hallway) "rQV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -64220,44 +64058,24 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"rQX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"rRb" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/starboard_umbilical) -"rRg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + icon_state = "plate" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Starboard Railguns and Viewing Room" +/area/almayer/maint/hull/upper/u_m_s) +"rRf" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "red" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/upper/aft_hallway) "rRq" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south2) -"rRr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/deck/uno, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "rRz" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -64265,25 +64083,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"rRP" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = -9; - pixel_y = 16 - }, -/obj/item/clothing/suit/storage/hazardvest/blue{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "rRU" = ( /obj/structure/machinery/light{ dir = 8 @@ -64322,18 +64121,30 @@ icon_state = "orangefull" }, /area/almayer/squads/alpha_bravo_shared) -"rSz" = ( -/obj/structure/machinery/light{ - dir = 4 +"rSx" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/rods/plasteel{ + amount = 36 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/stack/catwalk{ + amount = 60; + pixel_x = 5; + pixel_y = 4 }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"rSA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "orangecorner" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/hallways/lower/port_fore_hallway) "rSG" = ( /obj/structure/toilet{ pixel_y = 16 @@ -64348,38 +64159,35 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"rSI" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"rSR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rTj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) +"rTe" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_p) "rTk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"rTr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"rTA" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" - }, /turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "plate" }, /area/almayer/hallways/lower/starboard_midship_hallway) "rTJ" = ( @@ -64388,12 +64196,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"rTX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "rTZ" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 @@ -64409,6 +64211,14 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) +"rUi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "rUk" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -64416,11 +64226,10 @@ /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) "rUq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) "rUy" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -64429,30 +64238,52 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"rVm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +"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; + pixel_y = 3 + }, /turf/open/floor/almayer{ - icon_state = "redcorner" + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"rVt" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/part_fabricator/dropship, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/hallways/lower/repair_bay) +"rVC" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "rVN" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"rWm" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +"rWb" = ( +/obj/item/tool/minihoe{ + pixel_x = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "rWn" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -64472,26 +64303,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"rWy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"rWF" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +"rWv" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/shipboard/brig/chief_mp_office) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rWz" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) "rWL" = ( /obj/structure/barricade/metal, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/living/cryo_cells) +"rWP" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "rWT" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -64499,30 +64331,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"rWV" = ( -/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/hallways/lower/port_aft_hallway) "rXd" = ( /obj/structure/machinery/vending/security, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"rXg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) "rXj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -64540,21 +64354,6 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) -"rXs" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "rXv" = ( /obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/disposalpipe/segment{ @@ -64564,18 +64363,28 @@ icon_state = "test_floor4" }, /area/almayer/living/gym) -"rXM" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 3 +"rXF" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/item/folder/yellow, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) +"rXH" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/stern) +"rXQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "rXS" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -64588,6 +64397,23 @@ icon_state = "test_floor4" }, /area/almayer/squads/delta) +"rXU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + 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/stern_hallway) "rYh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -64610,16 +64436,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"rYs" = ( -/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/aft_hallway) "rYv" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/warning_stripes{ @@ -64632,54 +64448,52 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"rYJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, +"rYG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "green" }, -/area/almayer/living/offices/flight) -"rYK" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/almayer/hallways/upper/aft_hallway) +"rYI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_f_p) -"rYM" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) -"rYT" = ( -/obj/structure/largecrate/supply/supplies/flares, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rYJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, /turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"rYV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/living/offices/flight) +"rZt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"rZb" = ( -/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_fore_hallway) "rZB" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -64688,6 +64502,15 @@ 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/aft_hallway) "rZP" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldpack, @@ -64696,12 +64519,18 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) -"saa" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"sab" = ( +/obj/effect/landmark/start/doctor, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"sai" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/hallways/lower/port_fore_hallway) "saL" = ( /obj/structure/machinery/door/airlock/almayer/generic/corporate{ name = "Corporate Liaison's Closet" @@ -64710,15 +64539,13 @@ icon_state = "test_floor4" }, /area/almayer/command/corporateliaison) -"sbb" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"saT" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/panic) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "sbq" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; @@ -64728,33 +64555,30 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/notunnel) -"sbA" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, +"sbt" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "safe_armory"; + name = "\improper Hangar Armory Shutters" + }, /turf/open/floor/almayer{ - icon_state = "orange" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/shipboard/panic) +"sbE" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "sbJ" = ( /turf/closed/wall/almayer/white/hull, /area/almayer/powered/agent) -"sbM" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_y = 7; - pixel_x = -17 - }, -/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) "sbP" = ( /obj/effect/landmark/start/police, /obj/effect/decal/warning_stripes{ @@ -64763,39 +64587,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) -"sbU" = ( -/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/hull/upper/u_m_p) -"sbV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"sce" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "sco" = ( /obj/structure/sign/prop1{ layer = 3.1 @@ -64806,6 +64597,19 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) +"sct" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) "scu" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -64875,12 +64679,15 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"sde" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +"scX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/toy/deck{ + pixel_x = -9 }, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "sdf" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -64930,9 +64737,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"sdz" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) "sdC" = ( /obj/structure/bed/chair{ dir = 4 @@ -64941,14 +64745,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"sdF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) "sdO" = ( /obj/structure/ladder{ height = 1; @@ -64958,34 +64754,13 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"sdP" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"sen" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"sep" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) -"sfv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"seL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/port_fore_hallway) "sfT" = ( /turf/open/floor/almayer, /area/almayer/hallways/upper/port) @@ -65012,6 +64787,22 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) +"sge" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/storage/firstaid/regular, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/medical) "sgi" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/processing) @@ -65092,15 +64883,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"sgI" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +"sgL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "green" + icon_state = "redfull" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/port_midship_hallway) "sgR" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck{ @@ -65117,6 +64909,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) +"she" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "shh" = ( /obj/structure/machinery/autolathe, /turf/open/floor/almayer, @@ -65156,14 +64954,6 @@ "sht" = ( /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"shJ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "shL" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/electrical, @@ -65175,12 +64965,36 @@ icon_state = "cargo" }, /area/almayer/engineering/lower/engine_core) -"sic" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 +"sir" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "panicroomback"; + name = "\improper Safe Room Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_s) +"sit" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/upper/u_f_s) +"siy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "siz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/hangar{ @@ -65197,12 +65011,12 @@ icon_state = "redfull" }, /area/almayer/living/offices/flight) -"siB" = ( -/obj/structure/reagent_dispensers/fueltank, +"siC" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 9; + icon_state = "red" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/port_fore_hallway) "siN" = ( /obj/structure/machinery/light{ dir = 1 @@ -65218,21 +65032,23 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"siP" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +"siS" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) +"siT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) "siW" = ( /obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ @@ -65245,10 +65061,9 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"sjc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) +"sje" = ( +/turf/open/floor/almayer/empty, +/area/almayer/hallways/lower/vehiclehangar) "sjj" = ( /obj/structure/machinery/keycard_auth{ pixel_x = -7; @@ -65278,6 +65093,16 @@ 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/hull/upper/u_m_p) "sjz" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -65287,19 +65112,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) -"sjC" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"sjZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "skj" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -65320,13 +65132,6 @@ icon_state = "plating_striped" }, /area/almayer/shipboard/sea_office) -"skq" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) "skC" = ( /obj/structure/pipes/standard/simple/visible{ dir = 6 @@ -65347,13 +65152,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/workshop) -"skO" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "skR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -65373,6 +65171,21 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"slb" = ( +/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{ + name = "\improper Brig"; + closeOtherId = "brigmaint_n" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/starboard_hallway) "sld" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -65391,62 +65204,91 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"slr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"slo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"slu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SW-out" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "slv" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer{ + icon_state = "cargo" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/area/almayer/engineering/lower/engine_core) +"slF" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" }, +/area/almayer/shipboard/brig/processing) +"smi" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "green" }, -/area/almayer/hallways/upper/stern_hallway) -"slx" = ( -/obj/structure/sign/safety/hvac_old{ +/area/almayer/living/grunt_rnr) +"smw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/sign/safety/terminal{ pixel_x = 8; - pixel_y = 32 + pixel_y = -32 + }, +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) -"slF" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/area/almayer/maint/hull/upper/u_a_s) +"smA" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/area/almayer/shipboard/brig/processing) -"slG" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -16; + pixel_y = 16 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) -"smi" = ( +/area/almayer/maint/hull/lower/l_m_s) +"smH" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "test_floor4" }, -/area/almayer/living/grunt_rnr) +/area/almayer/maint/hull/lower/l_f_s) +"smU" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) "smW" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -65456,23 +65298,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"smZ" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/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/plating, -/area/almayer/shipboard/brig/chief_mp_office) "snb" = ( /obj/structure/ladder{ height = 1; @@ -65504,15 +65329,10 @@ icon_state = "plate" }, /area/almayer/squads/req) -"snC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/starboard_umbilical) +"snx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "snE" = ( /obj/structure/machinery/cryopod/right, /obj/effect/decal/warning_stripes{ @@ -65548,6 +65368,25 @@ icon_state = "plate" }, /area/almayer/command/cic) +"snM" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/squads/req) +"snN" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "snR" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -65585,9 +65424,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"soC" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_bow) "soK" = ( /obj/item/storage/firstaid/fire/empty, /obj/item/storage/firstaid/o2/empty, @@ -65603,23 +65439,34 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) +"soT" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "soX" = ( /obj/structure/window/reinforced/toughened, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/command/cic) -"spa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"spd" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) -"spn" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "spF" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -65642,15 +65489,9 @@ }, /obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"spN" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/engineering/upper_engineering/starboard) "spS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -65660,6 +65501,39 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) +"spT" = ( +/obj/structure/closet/crate{ + desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; + name = "special operations crate" + }, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/almayer{ + 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/aft_hallway) "sqa" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -65695,6 +65569,24 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) +"sqO" = ( +/obj/structure/machinery/sleep_console{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/medical) +"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_m_s) "sqW" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/tomatoseed, @@ -65703,28 +65595,39 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"sre" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"srh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 6; - icon_state = "red" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_fore_hallway) -"sro" = ( -/obj/structure/machinery/light/small, +/area/almayer/hallways/lower/port_umbilical) +"srl" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) -"srA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, +/area/almayer/maint/hull/lower/l_a_p) +"srO" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/upper/mess) +"srR" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "srT" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 @@ -65736,42 +65639,42 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/evidence_storage) -"ssx" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ssk" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/area/almayer/maint/hull/upper/p_bow) -"ssD" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/maint/hull/lower/l_m_p) "ssF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a{ +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"ssH" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/sign/safety/reduction{ + pixel_x = 32; + pixel_y = -8 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "red" }, -/area/almayer/maint/hull/lower/stern) +/area/almayer/hallways/upper/aft_hallway) "ssU" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/almayer{ @@ -65803,10 +65706,13 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"stm" = ( +"stk" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" + dir = 8; + icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) "str" = ( @@ -65828,6 +65734,12 @@ 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/hull/upper/u_a_s) "stO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm/brig, @@ -65839,31 +65751,43 @@ icon_state = "red" }, /area/almayer/shipboard/brig/perma) -"suc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"stP" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "\improper Brig Armoury"; - req_access = null; - req_one_access_txt = "1;3"; - closeOtherId = "brignorth" +/area/almayer/maint/hull/lower/l_f_s) +"stR" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sub" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/hallways/lower/vehiclehangar) "suy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) +"suH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "suJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Core Hatch" @@ -65876,6 +65800,18 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/engine_core) +"suU" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "suY" = ( /obj/structure/platform_decoration, /turf/open/floor/almayer{ @@ -65897,13 +65833,43 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"swn" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"svt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/surgery) +/area/almayer/hallways/lower/port_midship_hallway) +"svw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"svF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/effect/landmark/yautja_teleport, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + 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 + }, +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "swt" = ( /turf/open/floor/almayer{ icon_state = "greencorner" @@ -65919,6 +65885,12 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"swG" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "swH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/radio/intercom{ @@ -65954,6 +65926,15 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering) +"sxD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Officer's Bunk" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/bridgebunks) "sxE" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -65967,6 +65948,10 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"sxS" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "sxW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -65978,30 +65963,12 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"syf" = ( -/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/hallways/upper/stern_hallway) -"syo" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +"syj" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "syH" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -66011,6 +65978,13 @@ }, /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" + }, +/area/almayer/hallways/upper/stern_hallway) "szf" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -66025,12 +65999,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"szs" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "szE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -66062,20 +66030,6 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"szR" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"szS" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/p_bow) "szU" = ( /obj/structure/toilet{ dir = 8 @@ -66105,18 +66059,32 @@ icon_state = "orange" }, /area/almayer/engineering/ce_room) +"sAD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"sAS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "sBg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"sBD" = ( -/obj/structure/largecrate/random/barrel/white, +"sBK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "redfull" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/upper/stern_hallway) "sBL" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/light, @@ -66124,30 +66092,20 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"sBP" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"sCi" = ( -/obj/structure/machinery/pipedispenser/orderable, +"sBY" = ( +/obj/item/tool/wet_sign, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"sCs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/area/almayer/maint/hull/lower/l_m_s) +"sCg" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/starboard_midship_hallway) "sCA" = ( /obj/structure/bed/chair/comfy/delta{ dir = 4 @@ -66185,6 +66143,12 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"sCT" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_f_s) "sCV" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -66198,20 +66162,50 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"sCW" = ( +/obj/effect/decal/cleanable/cobweb, +/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/stern_hallway) +"sDp" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) "sDu" = ( /obj/item/clothing/under/marine/dress, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"sDv" = ( -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "MTline"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +"sDx" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/vehiclehangar) "sDA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy/charlie{ @@ -66228,28 +66222,12 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"sDE" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "sDM" = ( /turf/open/floor/almayer{ dir = 9; icon_state = "blue" }, /area/almayer/squads/delta) -"sDV" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "sEd" = ( /obj/structure/machinery/cryopod/right, /obj/structure/machinery/light{ @@ -66259,6 +66237,15 @@ icon_state = "cargo" }, /area/almayer/squads/bravo) +"sEg" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "sEi" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -66304,14 +66291,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"sEs" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) "sEt" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, @@ -66320,37 +66299,13 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"sEz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sEC" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"sEu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/maint/hull/upper/u_a_s) -"sEE" = ( -/obj/structure/prop/invuln/joey, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"sEJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/lower/l_a_p) "sEK" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -66378,13 +66333,15 @@ icon_state = "plate" }, /area/almayer/command/cic) -"sEW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"sER" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "sEZ" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 26 @@ -66406,59 +66363,15 @@ icon_state = "cargo" }, /area/almayer/shipboard/starboard_missiles) -"sFo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/upper/stern_hallway) -"sFC" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/main_office) -"sFO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "sGh" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/lifeboat) -"sGm" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"sGD" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/storage/firstaid/rad, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"sGJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +"sGw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_s) +"sGK" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "sGL" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -66475,17 +66388,12 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/port) -"sGP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +"sGQ" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) -"sGQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/lower/s_bow) "sGU" = ( /obj/structure/mirror, /turf/closed/wall/almayer, @@ -66496,6 +66404,10 @@ icon_state = "silverfull" }, /area/almayer/command/airoom) +"sHe" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "sHm" = ( /obj/structure/disposalpipe/up/almayer{ id = "almayerlink_OT_req" @@ -66559,13 +66471,12 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"sIw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"sIu" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "sIA" = ( /obj/structure/sign/poster{ desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; @@ -66584,21 +66495,26 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) +"sIR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) "sIU" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/hallways/hangar) -"sJm" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"sJo" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"sJa" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = -26 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "sJC" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -66668,6 +66584,13 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"sLk" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder4" + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) "sLo" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -66678,15 +66601,15 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"sLs" = ( -/obj/structure/largecrate/supply, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 +"sLx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/upper/u_f_p) "sLA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -66694,19 +66617,37 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"sLJ" = ( -/obj/docking_port/stationary/escape_pod/cl, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) -"sMe" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"sLT" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/structure/machinery/power/apc/almayer, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/shipboard/brig/medical) +"sLX" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emeraldcorner" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"sMp" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Execution Firearms" }, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/ammo_box/magazine/m4ra, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/shipboard/brig/execution_storage) "sMu" = ( /obj/item/trash/uscm_mre, /obj/structure/bed/chair/comfy/charlie{ @@ -66716,15 +66657,6 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"sMC" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "sMM" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -66743,18 +66675,6 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"sNu" = ( -/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/aft_hallway) "sNz" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -66763,19 +66683,22 @@ dir = 1 }, /area/almayer/medical/containment/cell) -"sNC" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"sNF" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_p) "sNI" = ( /obj/structure/bed/chair/comfy/delta, /turf/open/floor/almayer{ icon_state = "bluefull" }, /area/almayer/living/briefing) +"sNL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "sNO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -66786,6 +66709,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"sNP" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "sNR" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell/cl) @@ -66799,9 +66728,22 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"sOq" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_bow) +"sOr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_s) "sOt" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/status_display{ @@ -66845,17 +66787,22 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"sOH" = ( -/obj/structure/ladder{ - height = 1; - id = "ForeStarboardMaint" +"sOD" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"sOL" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/s_bow) +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "sOZ" = ( /obj/structure/sign/safety/ammunition{ pixel_y = 32 @@ -66884,14 +66831,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"sPI" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) "sPJ" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -66902,6 +66841,23 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"sPY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/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/aft_hallway) "sQF" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -66913,14 +66869,20 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"sRk" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = 2; - pixel_y = 3 +"sRM" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) +"sRP" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "sSa" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ dir = 2; @@ -66948,19 +66910,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"sSu" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "sSC" = ( /turf/open/floor/almayer{ dir = 6; @@ -66991,18 +66940,21 @@ icon_state = "plate" }, /area/almayer/command/cic) -"sSP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) "sTd" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "blue" }, /area/almayer/living/basketball) +"sTe" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "sTm" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, @@ -67022,9 +66974,13 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"sTT" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_s) +"sTU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "sTV" = ( /obj/structure/machinery/power/apc/almayer/hardened{ cell_type = /obj/item/cell/hyper; @@ -67032,15 +66988,6 @@ }, /turf/open/floor/plating, /area/almayer/command/airoom) -"sTX" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "sUg" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -67051,6 +66998,12 @@ icon_state = "silverfull" }, /area/almayer/shipboard/brig/cic_hallway) +"sUi" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_a_p) "sUj" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -67062,20 +67015,14 @@ }, /area/almayer/squads/delta) "sUk" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"sUq" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/maint/hull/lower/stern) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "sUs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67086,36 +67033,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"sUA" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "sUE" = ( /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer{ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"sUH" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"sUI" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "sUO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -67139,22 +67062,15 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"sVp" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sVv" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light/small{ - dir = 8 +"sVA" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "green" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/upper/aft_hallway) "sVT" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, @@ -67175,31 +67091,23 @@ "sVV" = ( /turf/open/floor/almayer, /area/almayer/hallways/upper/starboard) -"sWb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"sWp" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/maint/upper/u_m_s) -"sWn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) -"sWy" = ( +/area/almayer/maint/hull/upper/u_a_s) +"sWw" = ( /obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "sWC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -67239,14 +67147,12 @@ icon_state = "dark_sterile" }, /area/almayer/medical/containment) -"sXg" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer{ - icon_state = "plate" +"sXq" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "sXt" = ( /obj/structure/machinery/cm_vending/clothing/tl/alpha{ density = 0; @@ -67262,22 +67168,10 @@ /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"sXy" = ( -/obj/item/device/camera{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/camera_film, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) +"sXx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) "sXB" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -67291,6 +67185,15 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"sXC" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "sXE" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Auxiliary Support Officer's Room" @@ -67299,21 +67202,6 @@ icon_state = "test_floor4" }, /area/almayer/living/auxiliary_officer_office) -"sXG" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) -"sXJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_umbilical) "sXQ" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/appleseed, @@ -67325,42 +67213,34 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"sYe" = ( -/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/hull/upper/u_m_s) "sYh" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"sYi" = ( -/obj/structure/machinery/door_control{ - id = "firearm_storage_armory"; - name = "Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" +"sYj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/sign/safety/ammunition{ - pixel_y = 32 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 +/area/almayer/hallways/upper/aft_hallway) +"sYr" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + icon_state = "test_floor4" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/hallways/lower/port_umbilical) "sYw" = ( /obj/structure/platform{ dir = 8 @@ -67387,20 +67267,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"sYE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "sYP" = ( /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer{ @@ -67417,6 +67283,18 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/medical/upper_medical) +"sZc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"sZe" = ( +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "sZq" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; @@ -67477,33 +67355,11 @@ icon_state = "blue" }, /area/almayer/living/port_emb) -"sZN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sZQ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"sZW" = ( -/obj/structure/machinery/light, +"sZX" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "red" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/shipboard/brig/starboard_hallway) "tab" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/flashbangs{ @@ -67522,12 +67378,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"tak" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "tan" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -67560,6 +67410,9 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/perma) +"taw" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_s) "taH" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ id = "Containment Cell 2"; @@ -67588,11 +67441,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/containment/cell) -"taM" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) "taV" = ( /obj/effect/projector{ name = "Almayer_Down1"; @@ -67604,66 +67452,43 @@ icon_state = "plate" }, /area/almayer/hallways/upper/starboard) -"tbd" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"tbD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) +"tbF" = ( /turf/open/floor/almayer{ - icon_state = "sterile_green_side" + icon_state = "silvercorner" }, -/area/almayer/medical/lockerroom) -"tbz" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/area/almayer/hallways/upper/aft_hallway) +"tcd" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 3 }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tcm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ icon_state = "plate" }, +/area/almayer/maint/hull/lower/l_a_s) +"tcO" = ( +/turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_a_p) -"tbG" = ( +"tcS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"tcn" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"tcq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) -"tcP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"tcY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/lower/constr) "tcZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -67700,6 +67525,14 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"tdi" = ( +/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/lower/starboard_midship_hallway) "tdv" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/terminal{ @@ -67740,35 +67573,27 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) +"tdH" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/item/bedsheet/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "tdI" = ( /turf/open/floor/almayer{ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"tdN" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "tdT" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"tdU" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "teg" = ( /obj/structure/bed/chair{ dir = 8 @@ -67786,13 +67611,14 @@ }, /area/almayer/lifeboat_pumps/north1) "ter" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_f_p) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/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{ @@ -67800,6 +67626,10 @@ }, /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_m_s) "tez" = ( /obj/effect/landmark/ert_spawns/distress_cryo, /obj/effect/landmark/late_join, @@ -67814,9 +67644,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"teI" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_p) "teY" = ( /obj/structure/machinery/light{ dir = 1 @@ -67838,16 +67665,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) -"tfj" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/plasticflaps, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/maint/hull/lower/l_a_p) "tfH" = ( /obj/structure/machinery/light/containment, /obj/effect/decal/warning_stripes{ @@ -67857,6 +67674,10 @@ dir = 1 }, /area/almayer/medical/containment/cell) +"tfQ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "tge" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -67868,16 +67689,37 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"tgh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"tgm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"tgy" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 + icon_state = "SW-out" + }, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) +"tgz" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/port_midship_hallway) "tgK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -67887,15 +67729,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"tgP" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "tgV" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -67929,12 +67762,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"tht" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "thv" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -67957,12 +67784,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) -"thK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "thL" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) @@ -67991,6 +67812,12 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) +"tih" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "tii" = ( /obj/structure/machinery/firealarm{ pixel_x = 6; @@ -68072,14 +67899,31 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"tje" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"tiX" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"tiY" = ( +/obj/structure/closet, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/newspaper, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/tile/carpet{ + amount = 20 }, -/turf/open/floor/plating/plating_catwalk, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + 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/aft_hallway) "tjj" = ( /turf/open/floor/almayer{ @@ -68105,6 +67949,55 @@ }, /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/hull/upper/u_m_s) +"tjH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/headset/almayer/mt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"tjI" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -7; + pixel_y = 17 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 12; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) +"tjO" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/maint/hull/lower/l_m_s) +"tkg" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "tkn" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, @@ -68141,16 +68034,6 @@ icon_state = "redfull" }, /area/almayer/hallways/upper/starboard) -"tkX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"tla" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/s_bow) "tld" = ( /obj/structure/machinery/prop/almayer/computer{ dir = 8; @@ -68167,6 +68050,15 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/general_equipment) +"tlm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) "tln" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -68206,13 +68098,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"tlX" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "tmg" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/hypospray, @@ -68224,27 +68109,34 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"tms" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "officers_mess"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;30" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/mess) +"tml" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "tmB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"tmE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"tmG" = ( +/obj/structure/transmitter{ + name = "Brig Offices Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Main Offices"; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "tmH" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/camera/autoname/almayer{ @@ -68278,44 +68170,38 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"tmS" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +"tmQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"tmX" = ( +/obj/effect/landmark/start/professor, +/obj/effect/landmark/late_join/cmo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) "tnb" = ( /obj/structure/bed/chair/comfy/black, /turf/open/floor/almayer{ icon_state = "redfull" }, /area/almayer/shipboard/port_missiles) -"tni" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +"tne" = ( +/obj/structure/machinery/door_control/cl/quarter/backdoor{ + pixel_x = -25; + pixel_y = 23 }, -/area/almayer/medical/operating_room_three) -"tnD" = ( -/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) -"tnS" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"tnT" = ( +/area/almayer/maint/hull/upper/u_m_p) +"tni" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "sterile_green_side" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/medical/operating_room_three) "tnY" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -68324,22 +68210,12 @@ dir = 8 }, /turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/alpha) -"toe" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "blue" + icon_state = "cargo" }, -/area/almayer/hallways/upper/aft_hallway) -"toh" = ( -/obj/structure/machinery/light/small, +/area/almayer/squads/alpha) +"tob" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/u_m_s) "tos" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -68351,6 +68227,12 @@ icon_state = "plate" }, /area/almayer/engineering/lower/engine_core) +"tot" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "tou" = ( /obj/structure/bed/chair{ dir = 4 @@ -68366,15 +68248,17 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"toz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"toD" = ( +/obj/structure/largecrate/supply/generator, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + layer = 2.9; + pixel_x = -10; + pixel_y = 3 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/upper/u_a_p) "toO" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/engineering_construction, @@ -68395,6 +68279,20 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"toQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "tpa" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/window/reinforced{ @@ -68411,21 +68309,46 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"tpk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" +"tpj" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/area/almayer/maint/hull/upper/p_stern) +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/upper/aft_hallway) "tpn" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/evidence_storage) -"tpB" = ( +"tpx" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, /turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/mp_bunks) +"tpB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - icon_state = "silver" + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) "tpD" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -68436,45 +68359,29 @@ icon_state = "silver" }, /area/almayer/living/bridgebunks) -"tpQ" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/gloves/yellow, -/obj/item/device/multitool, -/obj/item/tool/screwdriver{ - icon_state = "screwdriver7" +"tpG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/tool/crowbar/red, -/obj/item/book/manual/engineering_hacking, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_p) -"tqp" = ( +/area/almayer/hallways/lower/port_umbilical) +"tpR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"tqs" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tqf" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 }, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 8; - pixel_y = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tqt" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "tqE" = ( /obj/structure/machinery/light{ dir = 8 @@ -68485,9 +68392,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"tqG" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "tqO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -68500,6 +68404,47 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"tqQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) +"tqV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical/green, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"tra" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = null; + req_one_access_txt = "19;34;30" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) "trb" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -68576,17 +68521,9 @@ /obj/item/clothing/suit/chef/classic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"tsc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) +"tsr" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/upper/mess) "tst" = ( /obj/structure/machinery/cryopod/right, /obj/effect/decal/warning_stripes{ @@ -68627,12 +68564,10 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/upper_medical) -"tsI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) +"tsE" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "tsM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -68665,20 +68600,40 @@ }, /turf/open/floor/plating, /area/almayer/powered/agent) -"ttE" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -7 +"ttq" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/item/tool/pen, -/obj/item/tool/pen{ - pixel_y = 3 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, +/obj/item/device/taperecorder, /turf/open/floor/almayer{ - dir = 10; - icon_state = "red" + icon_state = "plate" + }, +/area/almayer/shipboard/brig/interrogation) +"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/hull/upper/u_a_s) +"ttB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"ttD" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/maint/hull/lower/l_m_p) "ttS" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -68745,14 +68700,59 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"tup" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "tuA" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/port_missiles) +"tuC" = ( +/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 = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"tuJ" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/tool/shovel/spade{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "tuN" = ( /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/hallways/hangar) +"tuW" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/interrogation) "tuZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -68760,23 +68760,26 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) -"tvc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"tvl" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/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/hallways/lower/starboard_midship_hallway) -"tvm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_s) +"tvt" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_s) "tvw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -68785,6 +68788,13 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) +"tvA" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "tvM" = ( /obj/structure/bed/chair{ dir = 1 @@ -68816,16 +68826,21 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"twi" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"tvS" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) +"twp" = ( +/obj/structure/ladder{ + height = 1; + id = "AftStarboardMaint" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/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{ @@ -68870,28 +68885,13 @@ icon_state = "cargo" }, /area/almayer/command/cic) -"twL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/one{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +"twQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"twO" = ( -/obj/structure/largecrate/random/case/double, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_f_p) "twW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -68906,6 +68906,47 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) +"txd" = ( +/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/stern_hallway) +"txp" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"txy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"txE" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"txH" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "txO" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 @@ -68920,6 +68961,17 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"txS" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) "tyb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -68934,9 +68986,6 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"tyH" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "tyK" = ( /obj/effect/spawner/random/toolbox, /obj/structure/machinery/light{ @@ -68947,13 +68996,6 @@ icon_state = "cargo_arrow" }, /area/almayer/shipboard/starboard_missiles) -"tyY" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "tzd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -68961,34 +69003,34 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"tze" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) "tzw" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"tzx" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"tzC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" }, +/area/almayer/medical/lockerroom) +"tzF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/upper/aft_hallway) +"tzK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/starboard_hallway) "tzL" = ( /obj/structure/sign/safety/waterhazard{ pixel_x = 8; @@ -69005,10 +69047,14 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"tzZ" = ( -/obj/effect/landmark/start/reporter, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +"tAb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "tAq" = ( /obj/structure/surface/table/reinforced/black, /obj/item/clothing/mask/breath{ @@ -69023,12 +69069,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"tAH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "tAL" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ @@ -69058,18 +69098,13 @@ icon_state = "cargo" }, /area/almayer/medical/lower_medical_medbay) -"tBd" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +"tAW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"tBp" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "tBq" = ( /obj/item/tool/crowbar, /turf/open/floor/plating/plating_catwalk, @@ -69081,18 +69116,42 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"tCi" = ( +"tBU" = ( +/obj/structure/platform, +/obj/structure/largecrate/random/case/double{ + layer = 2.98 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 32 + }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"tBY" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/area/almayer/maint/hull/upper/u_f_s) -"tCv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/upper/mess) +"tCd" = ( +/obj/item/folder/red{ + desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; + name = "folder: 28"; + pixel_x = -4; + pixel_y = 5 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/crayon{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "tCx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/sign/safety/maint{ @@ -69111,10 +69170,23 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/port) -"tCM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +"tCC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "orange" + }, +/area/almayer/maint/hull/upper/u_a_s) +"tCD" = ( +/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/aft_hallway) "tCT" = ( @@ -69125,17 +69197,6 @@ icon_state = "plate" }, /area/almayer/command/cic) -"tDq" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"tDw" = ( -/obj/structure/largecrate/supply/ammo/m41a/half, -/obj/structure/largecrate/supply/ammo/pistol/half{ - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) "tDZ" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -69169,27 +69230,15 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"tEk" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 +"tEu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_p) -"tEo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) +/area/almayer/maint/hull/lower/l_m_s) "tEB" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -69231,16 +69280,11 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"tFH" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, +"tFQ" = ( /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "orange" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/upper/stern_hallway) "tFS" = ( /obj/structure/machinery/computer/supplycomp, /obj/structure/sign/safety/terminal{ @@ -69305,6 +69349,47 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"tGH" = ( +/obj/structure/sign/safety/restrictedarea, +/obj/structure/sign/safety/security{ + pixel_x = 15 + }, +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) +"tGS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) +"tGT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/photocopier{ + anchored = 0 + }, +/obj/structure/sign/poster/art{ + pixel_y = 32 + }, +/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/stern_hallway) +"tHk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "tHr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/status_display{ @@ -69331,27 +69416,12 @@ icon_state = "orangecorner" }, /area/almayer/living/briefing) -"tHw" = ( -/obj/structure/largecrate/random/case/double, +"tHF" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) -"tHA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) +/area/almayer/hallways/lower/starboard_aft_hallway) "tHQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -69379,6 +69449,15 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) +"tIl" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "tIp" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Dorms" @@ -69394,12 +69473,12 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) -"tIE" = ( -/obj/structure/girder/displaced, +"tIF" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_a_s) "tIK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -69412,15 +69491,13 @@ /turf/open/floor/wood/ship, /area/almayer/living/basketball) "tIN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "tIQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -69436,10 +69513,17 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"tJa" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) +"tIX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "tJi" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/paper_bin/uscm, @@ -69448,48 +69532,24 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"tJn" = ( -/obj/structure/pipes/vents/scrubber{ +"tJq" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"tJw" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "tJz" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"tJM" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, +"tJH" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "mono" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/hallways/upper/stern_hallway) "tJN" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -69536,25 +69596,6 @@ icon_state = "cargo" }, /area/almayer/living/bridgebunks) -"tKu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) -"tKv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "tLa" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -69606,63 +69647,33 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"tLj" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) -"tLA" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/squads/req) -"tLD" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/item/bedsheet/yellow, +"tLZ" = ( /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "green" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "tMc" = ( /obj/structure/machinery/chem_master/industry_mixer, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"tMu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"tMH" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Warden's Office"; - closeOtherId = "brigwarden" - }, -/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 +"tMT" = ( +/obj/item/tool/weldingtool, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "red" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +/area/almayer/maint/hull/upper/u_a_p) +"tMU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/shipboard/brig/chief_mp_office) +/area/almayer/maint/hull/upper/u_m_p) "tMW" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -69672,31 +69683,19 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"tNf" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/s_bow) -"tNm" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" - }, -/obj/structure/pipes/standard/simple/hidden/supply, +"tNw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) -"tNy" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"tNE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/area/almayer/maint/hull/upper/u_m_p) +"tNB" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/upper/u_f_p) "tNP" = ( /obj/structure/sign/safety/debark_lounge{ pixel_x = 15; @@ -69715,12 +69714,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"tOp" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "tOr" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -69749,12 +69742,52 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"tON" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "tOW" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "green" }, /area/almayer/living/grunt_rnr) +"tPc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tPj" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + access_modified = 1; + name = "\improper Requisition's Office"; + req_one_access = null; + req_one_access_txt = "1;26" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) "tPm" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -69768,6 +69801,20 @@ 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/aft_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/aft_hallway) "tPI" = ( /obj/structure/bed/chair{ dir = 4 @@ -69783,6 +69830,16 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"tQe" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "tQi" = ( /obj/effect/landmark/start/warrant, /obj/effect/decal/warning_stripes{ @@ -69791,53 +69848,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) -"tQm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) -"tQw" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +"tQA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/upper/u_m_s) "tQL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"tQM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/poster/pinup{ - pixel_x = -30 +"tQO" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "green" }, -/area/almayer/command/corporateliaison) -"tQN" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/hallways/upper/aft_hallway) "tQV" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/south1) -"tRd" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "tRs" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, @@ -69858,11 +69892,14 @@ }, /area/almayer/living/basketball) "tSm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -16 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "tSp" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -69885,15 +69922,15 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"tST" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"tSY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "tTk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -69916,6 +69953,9 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"tTC" = ( +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "tTD" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/uscm_mre, @@ -69929,6 +69969,13 @@ icon_state = "kitchen" }, /area/almayer/living/captain_mess) +"tTG" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "tUh" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -69981,13 +70028,12 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) -"tVl" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +"tVn" = ( +/obj/structure/platform{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_p) "tVq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -69997,38 +70043,84 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha) -"tVJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +"tVs" = ( +/obj/structure/closet, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 1; - pixel_y = -1 +/area/almayer/maint/upper/u_m_s) +"tVx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"tVZ" = ( /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo_arrow" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/lower/repair_bay) +"tWd" = ( +/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/aft_hallway) "tWi" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"tWL" = ( -/obj/structure/sign/poster{ - desc = "It says DRUG."; - icon_state = "poster2"; - pixel_y = 30 +"tWl" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Disposals" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_a_p) +"tWp" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) +"tWF" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) +"tWL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + 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_m_s) "tWY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -70085,20 +70177,11 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) -"tXA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +"tXo" = ( +/turf/open/floor/almayer{ + icon_state = "redcorner" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "tXM" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -70142,22 +70225,6 @@ icon_state = "plate" }, /area/almayer/living/port_emb) -"tXX" = ( -/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/hull/upper/u_m_p) -"tYh" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "tYi" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -70169,9 +70236,15 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"tYu" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hallways/lower/vehiclehangar) +"tYr" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "tYw" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft"; @@ -70193,6 +70266,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"tYV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "tYX" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" @@ -70221,16 +70300,12 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/port) -"tZO" = ( -/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" +"tZM" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "tZZ" = ( /obj/structure/machinery/cryopod, /obj/effect/decal/warning_stripes{ @@ -70253,6 +70328,12 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"uag" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) "uah" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -70263,13 +70344,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"uai" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "hypersleep curtain" - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) "ual" = ( /obj/structure/sink{ pixel_y = 24 @@ -70293,6 +70367,15 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"uaA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_s) +"uaG" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) "uaI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/processor{ @@ -70303,9 +70386,6 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"uaR" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "uaU" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -70331,19 +70411,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"ubB" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig Maintenance" - }, -/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/p_bow) "ubI" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random{ @@ -70357,6 +70424,27 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"ubQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/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/aft_hallway) "ucp" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -70367,6 +70455,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) +"ucy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) "ucz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/overwatch/almayer{ @@ -70389,17 +70485,47 @@ icon_state = "plate" }, /area/almayer/command/cic) -"ucU" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +"udf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/maint/hull/lower/p_bow) +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "udi" = ( /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/living/briefing) +"udo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = -32 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) "udr" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -70428,13 +70554,6 @@ icon_state = "plate" }, /area/almayer/squads/alpha) -"udH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "udK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -70490,12 +70609,12 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"ueq" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +"uew" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "ueG" = ( /obj/item/bedsheet/orange, /obj/structure/bed{ @@ -70509,12 +70628,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"ueH" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "ueJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -70526,15 +70639,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"ueX" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_umbilical) "ueZ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ @@ -70575,38 +70679,12 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"ufM" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, +"ugj" = ( /turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) -"ugq" = ( -/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/aft_hallway) -"ugt" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/lower/l_m_s) "ugu" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer, @@ -70622,11 +70700,21 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"ugT" = ( +"ugZ" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "red" + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) +"uhh" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "uhl" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -70637,24 +70725,22 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"uhn" = ( -/obj/structure/platform{ +"uhq" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_p) -"uhv" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "redfull" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "uhE" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, /turf/open/floor/plating/plating_catwalk, @@ -70673,25 +70759,6 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"uhS" = ( -/obj/structure/sign/safety/hazard{ - desc = "A sign that warns of a hazardous environment nearby"; - name = "\improper Warning: Hazardous Environment" - }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) -"uhW" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) -"uif" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "uiC" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -70707,6 +70774,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"uiK" = ( +/obj/item/ammo_box/magazine/misc/mre, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "uiR" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -70735,23 +70808,12 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"ujc" = ( -/obj/structure/largecrate/random/case/double, +"ujf" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) -"ujr" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/upper/u_m_s) "ujz" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -70770,15 +70832,19 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"ukk" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" +"uky" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"ukC" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_m_p) "ukP" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer{ @@ -70825,61 +70891,43 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"ulD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"ulB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = -6; + pixel_y = -6; + req_access_txt = "3" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/hallways/upper/aft_hallway) -"ulG" = ( -/obj/item/tool/weldpack{ - pixel_y = 15 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/welding, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "red" }, -/area/almayer/maint/hull/upper/u_m_s) -"ulI" = ( -/obj/structure/ladder{ - height = 1; - id = "AftPortMaint" +/area/almayer/shipboard/brig/interrogation) +"ulH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "ulZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"umb" = ( -/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/lower/port_aft_hallway) -"umf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) "umh" = ( /obj/structure/platform_decoration{ dir = 8 @@ -70889,6 +70937,15 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) +"umk" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "umm" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light/small, @@ -70896,14 +70953,6 @@ icon_state = "rasputin15" }, /area/almayer/powered/agent) -"umn" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "umy" = ( /obj/structure/machinery/light{ dir = 1 @@ -70913,6 +70962,22 @@ 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/aft_hallway) +"umI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) "umS" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -70946,12 +71011,6 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"unm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) "uns" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/carrotseed, @@ -70971,30 +71030,13 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"unA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"unI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, +"unQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/upper/u_a_p) "unT" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/crowbar, @@ -71006,6 +71048,25 @@ 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) +"unY" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/interrogation) "unZ" = ( /obj/structure/platform{ dir = 1 @@ -71027,30 +71088,18 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"uos" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"uoj" = ( +/obj/item/tool/pen, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/lower/l_a_s) "uoA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) -"uoF" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "uoH" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -71060,34 +71109,13 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"uoM" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/upper/aft_hallway) -"upv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/mess) -"upz" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +"uoO" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "upM" = ( /obj/structure/machinery/light{ dir = 4 @@ -71102,13 +71130,6 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"upP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) "upR" = ( /obj/structure/machinery/light{ dir = 1 @@ -71122,6 +71143,10 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"upS" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "uqd" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/warning_stripes{ @@ -71152,6 +71177,13 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) +"uqg" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "uqh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71164,17 +71196,6 @@ "uqo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"uqy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - name = "\improper Brig Cells" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) "uqA" = ( /obj/structure/machinery/firealarm{ dir = 8; @@ -71191,42 +71212,60 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"uqW" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood, +"uqJ" = ( +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/maint/hull/upper/u_a_s) +"urg" = ( +/obj/docking_port/stationary/escape_pod/east, /turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"uqY" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +/area/almayer/maint/hull/upper/u_m_p) +"urk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" }, +/area/almayer/hallways/lower/starboard_umbilical) +"urs" = ( /turf/open/floor/almayer{ - allow_construction = 0 + dir = 1; + icon_state = "orange" }, -/area/almayer/hallways/lower/port_midship_hallway) -"urv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/hallways/upper/stern_hallway) +"ury" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"urD" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/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/hull/lower/l_f_p) +/area/almayer/maint/upper/u_m_s) "urM" = ( /obj/structure/machinery/light{ dir = 8 @@ -71241,19 +71280,6 @@ /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"urZ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_p) -"usl" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) "usm" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/waterhazard{ @@ -71264,6 +71290,19 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) +"usq" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/shipboard/panic) "usy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -71275,13 +71314,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"usF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "usL" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -71332,6 +71364,15 @@ 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/hull/upper/u_a_s) "utK" = ( /obj/structure/machinery/light{ dir = 4 @@ -71406,6 +71447,12 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower) +"uuI" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_midship_hallway) "uuR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -71429,21 +71476,46 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"uvh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"uuT" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"uvh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/starboard_aft_hallway) +"uvp" = ( +/obj/structure/largecrate/supply, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/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/stern_hallway) "uvt" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -71462,23 +71534,6 @@ icon_state = "orangecorner" }, /area/almayer/squads/bravo) -"uvB" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/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 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "uvP" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -71513,30 +71568,10 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"uwi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"uwj" = ( -/obj/item/stack/cable_coil{ - pixel_x = 1; - pixel_y = 10 - }, -/obj/item/trash/pistachios, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/lower/repair_bay) -"uwk" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/almayer, -/area/almayer/maint/upper/mess) +"uwf" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "uws" = ( /obj/structure/machinery/light{ dir = 4 @@ -71557,12 +71592,6 @@ "uwv" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room/notunnel) -"uwJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "uwN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71572,24 +71601,16 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"uwS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "\improper Brig Armoury"; - req_access = null; - req_one_access_txt = "1;3" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"uwV" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 1; + icon_state = "red" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/shipboard/brig/starboard_hallway) "uwZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -71607,6 +71628,18 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) +"uxb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"uxl" = ( +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "uxp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -71623,21 +71656,12 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"uxx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"uxy" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, +"uxs" = ( +/obj/structure/machinery/pipedispenser/orderable, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) "uxC" = ( /obj/structure/machinery/light{ dir = 4 @@ -71671,15 +71695,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"uyb" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "uyd" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -71693,6 +71708,12 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"uyn" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/warden_office) "uys" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/squads/req) @@ -71709,19 +71730,13 @@ icon_state = "dark_sterile" }, /area/almayer/medical/chemistry) -"uyK" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"uzv" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/maint/hull/upper/u_f_p) -"uyV" = ( -/obj/item/stack/sheet/metal, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_a_s) "uzy" = ( /obj/item/reagent_container/glass/bucket, /obj/effect/decal/cleanable/blood/oil, @@ -71742,6 +71757,15 @@ }, /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/aft_hallway) "uAj" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, @@ -71760,12 +71784,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"uAx" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "uAC" = ( /obj/item/bedsheet/purple{ layer = 3.2 @@ -71810,10 +71828,6 @@ /obj/item/toy/plush/farwa, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"uAN" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "uAW" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -71832,20 +71846,37 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"uBE" = ( +"uBj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NW-out"; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uBx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/maint/hull/lower/l_a_s) -"uBI" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/area/almayer/hallways/lower/port_fore_hallway) +/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/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "uBM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -71874,21 +71905,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"uBS" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"uBX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) "uCh" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/sign/safety/water{ @@ -71900,6 +71916,27 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"uCt" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uCw" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "uCM" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -71918,13 +71955,12 @@ icon_state = "test_floor4" }, /area/almayer/squads/charlie) -"uCU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"uCR" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "uCW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -71932,20 +71968,9 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"uDl" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass/large_stack, -/obj/item/device/lightreplacer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/stack/rods{ - amount = 40 - }, -/obj/item/tool/weldingtool, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) +"uDg" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_bow) "uDn" = ( /obj/structure/ladder{ height = 1; @@ -71963,19 +71988,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lockerroom) -"uDT" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "uDW" = ( /obj/structure/machinery/cm_vending/clothing/tl/delta{ density = 0; @@ -71985,15 +71997,45 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"uFb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +"uEd" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ dir = 1; - name = "\improper Port Viewing Room" + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) +"uEO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"uES" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/recharge_station{ + layer = 2.9 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 1; + icon_state = "silver" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/repair_bay) "uFd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -72024,6 +72066,12 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) +"uFp" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "uFq" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -72034,27 +72082,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"uFE" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/head/helmet/marine/tech/tanker, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "uFH" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, /turf/open/floor/almayer, /area/almayer/living/briefing) -"uFK" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) +"uFI" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/execution_storage) "uGc" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /obj/structure/sign/safety/hazard{ @@ -72072,19 +72107,18 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"uGy" = ( -/obj/structure/ladder{ - height = 2; - id = "AftPortMaint" - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_p) -"uGI" = ( +"uGf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "uGN" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -72095,54 +72129,54 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"uHi" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 +"uGU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"uHk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/lower/cryo_cells) "uHr" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"uHZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic/press{ - dir = 1; - name = "\improper Combat Correspondent Room" +"uHT" = ( +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/lower/s_bow) +"uIa" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "greencorner" }, -/area/almayer/command/combat_correspondent) +/area/almayer/hallways/upper/aft_hallway) "uIv" = ( /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"uIw" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_s) "uIA" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"uIF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "uII" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -72163,24 +72197,19 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha_bravo_shared) -"uIX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uIZ" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = 7 +"uJb" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/lower/port_umbilical) "uJk" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer4" @@ -72189,46 +72218,13 @@ icon_state = "outerhull_dir" }, /area/space) -"uJr" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_y = -21; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ +"uJM" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"uJs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"uJP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"uJT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/lower/starboard_fore_hallway) "uJU" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -72263,13 +72259,11 @@ }, /area/almayer/living/gym) "uKl" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_a_s) "uKv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/multitool{ @@ -72280,6 +72274,12 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"uKH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "uKV" = ( /obj/structure/sign/safety/storage{ pixel_x = 32; @@ -72295,15 +72295,26 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"uLs" = ( +"uLG" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." + }, +/obj/item/reagent_container/food/snacks/mre_pack/xmas2, +/obj/item/reagent_container/food/snacks/mre_pack/xmas1, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/upper/s_stern) "uMc" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/starboard) +"uMf" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "uMj" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -72340,18 +72351,24 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"uNd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"uNf" = ( +/obj/structure/sign/safety/conference_room{ + pixel_y = 32 }, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "uNg" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/living/bridgebunks) +"uNp" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "uNq" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light{ @@ -72366,6 +72383,10 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"uNz" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "uNB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -72387,14 +72408,17 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"uNO" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"uNQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/port_aft_hallway) "uNV" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -72404,6 +72428,14 @@ "uOi" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/south2) +"uOE" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "uOJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ @@ -72416,18 +72448,15 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"uPB" = ( -/obj/structure/machinery/light, +"uPE" = ( /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"uPD" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, +/area/almayer/hallways/lower/port_aft_hallway) +"uPN" = ( +/obj/item/tool/wirecutters/clippers, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/upper/u_a_s) "uPP" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -72438,6 +72467,13 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower) +"uPQ" = ( +/obj/item/weapon/dart/green, +/obj/structure/dartboard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "uPW" = ( /obj/structure/bed/chair{ dir = 4 @@ -72446,19 +72482,15 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"uQg" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 +"uPX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"uQi" = ( +/turf/open/floor/almayer{ + icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) "uQm" = ( @@ -72479,31 +72511,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"uQp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_stern) -"uQE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uRe" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/stern_hallway) -"uRh" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "uRo" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -72536,6 +72543,23 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) +"uRx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 16 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) +"uRD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "uRM" = ( /obj/structure/bed{ can_buckle = 0 @@ -72563,6 +72587,14 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) +"uRR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/s_bow) "uRY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -72576,15 +72608,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"uSB" = ( -/obj/structure/machinery/keycard_auth{ - pixel_x = 25 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/chief_mp_office) "uSH" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/reagent_dispensers/water_cooler{ @@ -72596,16 +72619,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"uSI" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "uSS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/lockerroom) +"uSU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "uSW" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -72620,13 +72643,31 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"uTc" = ( +"uSZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"uTk" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"uTs" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/p_bow) "uTv" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -72635,6 +72676,13 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"uTE" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "uTN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, @@ -72642,10 +72690,16 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"uTS" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +"uTP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "uTU" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -72676,10 +72730,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"uUa" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "uUe" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -72696,6 +72746,28 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/port) +"uUf" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -9; + pixel_y = -4 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_y = -2 + }, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "uUi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -72748,10 +72820,6 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) -"uUD" = ( -/obj/structure/largecrate/supply/weapons/pistols, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "uVc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -72766,16 +72834,30 @@ 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/aft_hallway) "uVh" = ( /obj/structure/filingcabinet/seeds, /turf/open/floor/almayer{ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"uVi" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +"uVp" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "uVv" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 1 @@ -72784,18 +72866,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"uVx" = ( -/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/hull/upper/u_a_s) "uVA" = ( /turf/open/floor/almayer{ dir = 4; @@ -72812,6 +72882,23 @@ icon_state = "plating_striped" }, /area/almayer/living/cryo_cells) +"uVF" = ( +/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 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/brig/warden_office) "uVV" = ( /obj/structure/machinery/light{ dir = 4 @@ -72827,15 +72914,29 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"uVZ" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "uWc" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"uWv" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/stairs) +"uWm" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) "uWV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -72885,6 +72986,16 @@ icon_state = "plate" }, /area/almayer/engineering/lower/engine_core) +"uXm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "uXL" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -72894,6 +73005,13 @@ icon_state = "tcomms" }, /area/almayer/engineering/upper_engineering/starboard) +"uXU" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "uYa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -72926,20 +73044,22 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"uYP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"uYM" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) -"uZb" = ( -/turf/open/floor/almayer, -/area/almayer/maint/upper/mess) +/area/almayer/hallways/lower/port_fore_hallway) +"uZm" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "uZo" = ( /obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -72965,6 +73085,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"uZI" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "uZV" = ( /obj/structure/reagent_dispensers/fueltank/gas/methane{ anchored = 1 @@ -72988,30 +73114,49 @@ icon_state = "test_floor4" }, /area/almayer/living/basketball) -"vag" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ +"vaq" = ( +/obj/structure/disposalpipe/junction{ dir = 4; - pixel_x = -14; - pixel_y = 13 + icon_state = "pipe-j2" }, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"vaA" = ( +/area/almayer/hallways/lower/starboard_fore_hallway) +"vaM" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/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 + }, /turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) -"vaH" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/area/almayer/hallways/lower/starboard_umbilical) +"vaQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Medical Storage" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) +"vaV" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "vaZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -73033,23 +73178,16 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"vbk" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) -"vbq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, +"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{ - icon_state = "test_floor4" + dir = 4; + icon_state = "orange" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) "vbB" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) @@ -73069,12 +73207,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"vbJ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "vbM" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -73118,25 +73250,18 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"vcg" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 +"vbZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/almayer/maint/hull/upper/s_bow) -"vcl" = ( -/obj/structure/machinery/light/small, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/hallways/lower/vehiclehangar) "vcm" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -30 @@ -73167,41 +73292,22 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"vcL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Armory" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -2; - pixel_y = 1 +"vcI" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"vcO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/shipboard/brig/armory) -"vdc" = ( -/obj/item/tool/wet_sign, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 9; + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/upper/aft_hallway) "vdl" = ( /obj/structure/window/reinforced/ultra{ pixel_y = -12 @@ -73214,22 +73320,6 @@ icon_state = "plating_striped" }, /area/almayer/shipboard/brig/execution) -"vdB" = ( -/obj/item/reagent_container/food/drinks/cans/souto, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/lower/repair_bay) -"vdI" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "vdL" = ( /obj/structure/sign/safety/reception{ pixel_x = -17; @@ -73265,20 +73355,26 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"vef" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" +"vdT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/upper/u_m_s) "ven" = ( /obj/structure/bed/chair, /turf/open/floor/almayer{ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"veq" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "veu" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -73289,16 +73385,27 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"veN" = ( -/obj/item/stool, -/obj/effect/landmark/yautja_teleport, +"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) -"veX" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/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/hull/upper/u_m_p) "vfa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -73311,33 +73418,6 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"vfc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vfn" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/structure/janitorialcart, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) "vfo" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -73348,15 +73428,6 @@ icon_state = "test_floor4" }, /area/almayer/powered) -"vfw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/main_office) "vfx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -73383,6 +73454,16 @@ dir = 1 }, /area/almayer/medical/containment/cell) +"vfS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "vgi" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, @@ -73464,53 +73545,9 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"vgN" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "vgO" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell) -"vgW" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"vgY" = ( -/obj/structure/largecrate/random/case/double, -/obj/item/tool/wet_sign{ - pixel_y = 18 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"vhb" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) "vhe" = ( /obj/structure/filingcabinet{ density = 0; @@ -73536,15 +73573,10 @@ /obj/structure/machinery/disposal, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"vhM" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) +"vhA" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "vhR" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -73590,15 +73622,6 @@ icon_state = "plate" }, /area/almayer/medical/morgue) -"vij" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "vil" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -73644,15 +73667,6 @@ allow_construction = 0 }, /area/almayer/command/airoom) -"viH" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) "viJ" = ( /obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ @@ -73676,25 +73690,6 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"viV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"vja" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "vjb" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 @@ -73723,19 +73718,29 @@ icon_state = "plating" }, /area/almayer/shipboard/port_missiles) -"vji" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, +"vjk" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 1; name = "ship-grade camera" }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/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 = "cargo" + icon_state = "plate" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/hallways/lower/starboard_umbilical) "vjv" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -73759,20 +73764,45 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"vjG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_umbilical) "vjK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"vjL" = ( +"vjS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, /obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/lower/constr) +"vjT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/port_umbilical) "vjW" = ( /obj/structure/reagent_dispensers/watertank{ anchored = 1 @@ -73807,6 +73837,27 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"vky" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/p_bow) +"vkI" = ( +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "vkM" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -73820,14 +73871,26 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/general_equipment) -"vkQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"vkO" = ( +/obj/structure/closet, +/obj/item/stack/sheet/glass/large_stack, +/obj/item/device/lightreplacer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/stack/rods{ + amount = 40 }, +/obj/item/tool/weldingtool, +/obj/item/clothing/glasses/welding, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/lower/s_bow) +"vkQ" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "vkR" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -73838,27 +73901,9 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"vkW" = ( -/obj/structure/sink{ - pixel_y = 24 - }, +"vkV" = ( +/obj/effect/landmark/start/liaison, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"vlf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/medical_science) -"vlj" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "plate" - }, /area/almayer/maint/hull/upper/u_m_p) "vlk" = ( /obj/structure/closet/emcloset, @@ -73894,12 +73939,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"vlN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "vlO" = ( /obj/structure/window/reinforced{ dir = 4; @@ -73934,6 +73973,13 @@ 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/aft_hallway) "vlX" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /turf/open/floor/almayer{ @@ -73956,6 +74002,15 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"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/hull/upper/u_a_p) "vmE" = ( /turf/open/floor/almayer{ icon_state = "orangecorner" @@ -73994,35 +74049,12 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"vmZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"vna" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) -"vnj" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/device/taperecorder{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 8 - }, +"vno" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "blue" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/lower/port_midship_hallway) "vnD" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -74032,45 +74064,45 @@ icon_state = "plate" }, /area/almayer/living/gym) -"vnE" = ( -/obj/structure/bed/chair{ +"vnY" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"vnZ" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"vnU" = ( -/obj/structure/closet/emcloset, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "orange" }, -/area/almayer/maint/hull/upper/s_bow) -"voo" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/hallways/upper/stern_hallway) +"voa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"vor" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/almayer/shipboard/brig/warden_office) +"vop" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"voU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;21" +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silvercorner" }, +/area/almayer/hallways/lower/repair_bay) +"vor" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/broken_arcade, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/squads/req) +/area/almayer/maint/hull/upper/u_m_p) "vpe" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ @@ -74082,11 +74114,10 @@ }, /area/almayer/engineering/lower/workshop/hangar) "vpf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/upper/u_m_p) "vpn" = ( /turf/open/floor/almayer{ dir = 9; @@ -74104,15 +74135,22 @@ /obj/item/clothing/mask/cigarette/weed, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"vpK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"vpI" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"vpT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/shipboard/panic) "vpV" = ( /turf/open/floor/almayer{ dir = 10; @@ -74138,6 +74176,19 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/processing) +"vqz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/lower/port_fore_hallway) "vqC" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -74168,17 +74219,6 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"vqT" = ( -/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/aft_hallway) "vqW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -74218,10 +74258,6 @@ "vra" = ( /turf/closed/wall/almayer, /area/almayer/squads/charlie_delta_shared) -"vrb" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "vrx" = ( /obj/structure/machinery/status_display{ pixel_x = -32; @@ -74229,17 +74265,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"vrG" = ( -/obj/item/ammo_box/magazine/misc/mre/empty{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 11; - pixel_y = -3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) "vrI" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -74289,10 +74314,19 @@ icon_state = "bluecorner" }, /area/almayer/living/briefing) -"vsa" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) +"vrZ" = ( +/obj/structure/largecrate/machine/bodyscanner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"vsd" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_s) "vse" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -74302,10 +74336,32 @@ icon_state = "cargo" }, /area/almayer/living/offices) +"vsf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "vsh" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) +"vsi" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "vsz" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -74313,19 +74369,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"vsB" = ( -/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/aft_hallway) "vsF" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -74336,33 +74379,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"vsK" = ( -/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/aft_hallway) -"vsM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/obj/item/device/defibrillator, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) "vta" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -74370,15 +74386,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"vtg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/hallways/upper/aft_hallway) "vti" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -74402,19 +74409,6 @@ icon_state = "rasputin3" }, /area/almayer/powered/agent) -"vts" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/tool/shovel/spade{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "vtx" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bathroom" @@ -74423,15 +74417,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/upper_medical) -"vtD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "vtG" = ( /obj/structure/toilet{ dir = 4 @@ -74440,33 +74425,12 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"vtH" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"vtL" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"vtV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"vtZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, +"vtJ" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_f_s) "vub" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) @@ -74475,27 +74439,6 @@ /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"vuw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - access_modified = 1; - dir = 2; - name = "\improper Requisitions Break Room"; - req_one_access_txt = "19;21" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) "vuA" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -74509,6 +74452,16 @@ 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/aft_hallway) "vuF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ access_modified = 1; @@ -74542,6 +74495,15 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"vuV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "vuZ" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -74551,10 +74513,6 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) -"vvj" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "vvp" = ( /obj/structure/pipes/vents/pump, /obj/structure/sign/safety/intercom{ @@ -74601,12 +74559,25 @@ }, /area/almayer/engineering/upper_engineering/starboard) "vvH" = ( -/obj/structure/machinery/light, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, /turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"vvX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "vvY" = ( /obj/structure/sink{ dir = 1; @@ -74661,22 +74632,16 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) "vwJ" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/item/tool/soap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"vwU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) - }, +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_m_p) +"vwU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "vwV" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ dir = 4 @@ -74739,6 +74704,17 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"vxY" = ( +/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/lower/starboard_midship_hallway) "vyg" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data, @@ -74746,6 +74722,14 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"vyh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "vyi" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -74766,7 +74750,13 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/living/offices) +/area/almayer/living/offices) +"vyr" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "vyu" = ( /obj/structure/bed/sofa/south/white/right, /turf/open/floor/almayer{ @@ -74774,6 +74764,9 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"vyB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) "vyH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -74783,27 +74776,13 @@ "vyI" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"vyS" = ( -/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/hull/upper/u_m_s) -"vyZ" = ( -/obj/structure/largecrate/guns/merc{ - name = "\improper dodgy crate" - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"vze" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"vzi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 }, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "vzj" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 @@ -74833,9 +74812,24 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) +"vzB" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "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_m_s) "vzP" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/cups, @@ -74855,6 +74849,17 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) +"vAg" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 + }, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "vAq" = ( /obj/structure/bed/chair{ dir = 1 @@ -74864,24 +74869,20 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"vAu" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 +"vAx" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"vAw" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/constr) -"vAB" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/lower/l_m_p) +"vAz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/s_bow) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "vAE" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -74936,15 +74937,6 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"vBa" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"vBm" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/main_office) "vBp" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -74957,6 +74949,10 @@ icon_state = "silver" }, /area/almayer/living/briefing) +"vBC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "vBJ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen, @@ -75017,53 +75013,14 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"vCB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/maint/hull/lower/l_a_p) -"vCM" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/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) +"vCE" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "vCO" = ( /obj/effect/landmark/start/bridge, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) -"vCW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "vDa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -75072,35 +75029,53 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/hydroponics) -"vDk" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"vDh" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/area/almayer/maint/hull/upper/s_bow) +"vDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/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_m_s) +"vDz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"vDN" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"vDK" = ( +"vDR" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) -"vDZ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_a_p) "vEf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -75116,10 +75091,6 @@ /obj/effect/landmark/start/synthetic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) -"vEq" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "vEr" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -75131,20 +75102,15 @@ }, /area/almayer/medical/medical_science) "vEv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/hallways/lower/starboard_fore_hallway) "vEx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -75168,28 +75134,10 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/almayer, /area/almayer/living/briefing) -"vEQ" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"vES" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) +"vEI" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "vEV" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -75200,18 +75148,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"vFa" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "vFn" = ( /obj/structure/machinery/light/small, /turf/open/floor/almayer{ @@ -75219,10 +75155,15 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) -"vFr" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +"vFp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "vFv" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -75238,46 +75179,38 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) -"vFB" = ( +"vFy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out" }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "green" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/hallways/upper/aft_hallway) "vFH" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower) -"vFS" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/normandy{ - layer = 3.5 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/offices/flight) -"vGt" = ( -/turf/open/floor/almayer{ - icon_state = "blue" +"vFI" = ( +/obj/structure/largecrate/random/secure, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 }, -/area/almayer/hallways/upper/aft_hallway) -"vGw" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 5 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/lower/l_f_p) "vGA" = ( /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer{ @@ -75285,14 +75218,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"vGC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) "vGG" = ( /obj/structure/bed/chair/comfy/bravo, /turf/open/floor/almayer{ @@ -75308,13 +75233,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) -"vGV" = ( -/obj/structure/largecrate/supply, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) "vHa" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/ares_console{ @@ -75327,6 +75245,20 @@ icon_state = "plating" }, /area/almayer/command/airoom) +"vHf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/deck/uno, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/mp_bunks) "vHh" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/tool/warning_cone{ @@ -75337,6 +75269,33 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) +"vHn" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_s) +"vHp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/prop/magazine/boots/n160{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/transmitter/rotary{ + name = "Flight Deck Telephone"; + phone_category = "Almayer"; + phone_id = "Flight Deck"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) "vHq" = ( /obj/item/device/assembly/mousetrap/armed, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -75411,20 +75370,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) -"vHL" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "vHO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -75448,15 +75393,6 @@ icon_state = "redfull" }, /area/almayer/command/cic) -"vHZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "vIf" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -75466,28 +75402,26 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"vIu" = ( -/obj/structure/machinery/light{ - dir = 4 +"vIg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"vIE" = ( +/area/almayer/maint/hull/lower/l_a_s) +"vIr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vJd" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 + dir = 4 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "test_floor4" }, /area/almayer/hallways/upper/aft_hallway) +"vIu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) "vJg" = ( /obj/structure/machinery/light/small, /turf/open/floor/almayer{ @@ -75505,41 +75439,10 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"vJq" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) -"vJx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"vJJ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, +"vJR" = ( +/obj/structure/barricade/handrail, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"vJO" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/p_stern) "vJV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -75582,16 +75485,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"vKo" = ( -/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/hull/upper/u_a_p) "vKB" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, /obj/structure/machinery/light/small{ @@ -75599,61 +75492,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"vKG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/spiderling_remains{ - pixel_x = 18; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/ash{ - pixel_x = 11; - pixel_y = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) -"vKU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"vKV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"vLd" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/lungs/prosthetic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) -"vLe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"vKI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "vLg" = ( /obj/item/trash/uscm_mre, /obj/structure/bed/chair/comfy/charlie, @@ -75676,6 +75520,15 @@ icon_state = "test_floor4" }, /area/almayer/medical/upper_medical) +"vLp" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "vLA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -75690,23 +75543,13 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie) -"vLO" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"vLX" = ( -/obj/item/robot_parts/arm/l_arm, -/obj/item/robot_parts/leg/l_leg, -/obj/item/robot_parts/arm/r_arm, -/obj/item/robot_parts/leg/r_leg, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 +"vMb" = ( +/obj/item/stool{ + pixel_x = -15; + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "vMo" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_four) @@ -75714,39 +75557,15 @@ /obj/effect/landmark/start/otech, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"vMt" = ( -/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" +"vMA" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/hallways/upper/aft_hallway) -"vMv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_s) -"vMw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/port_midship_hallway) "vME" = ( /turf/open/floor/almayer{ dir = 9; @@ -75786,6 +75605,26 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"vMQ" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) +"vMU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"vMZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) "vNp" = ( /obj/structure/sign/safety/three{ pixel_x = -17 @@ -75796,6 +75635,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"vNs" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "\improper Brig Lobby"; + closeOtherId = "brignorth" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/starboard_hallway) "vND" = ( /obj/structure/bed/chair{ dir = 8; @@ -75803,35 +75654,60 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"vNE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +"vNV" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/mp_bunks) "vNW" = ( /turf/open/floor/almayer/uscm/directional{ dir = 9 }, /area/almayer/command/cic) -"vOb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) "vOh" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) +"vOj" = ( +/obj/item/device/camera{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/camera_film, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) +"vOw" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_m_s) "vOy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/medical_science) -"vOK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"vOG" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/obj/structure/largecrate/supply/ammo/pistol/half{ + pixel_y = 12 }, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"vOM" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "vON" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -75850,6 +75726,38 @@ icon_state = "test_floor4" }, /area/almayer/medical/upper_medical) +"vOV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"vOY" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/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/maint/upper/mess) +"vOZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) "vPf" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -75923,6 +75831,15 @@ icon_state = "redfull" }, /area/almayer/engineering/lower/workshop/hangar) +"vPW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) "vQe" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down2"; @@ -75942,15 +75859,6 @@ icon_state = "silvercorner" }, /area/almayer/command/securestorage) -"vQo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "vQq" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, @@ -75987,18 +75895,6 @@ dir = 10 }, /area/almayer/command/cic) -"vRp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_fore_hallway) "vRu" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -76013,22 +75909,16 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"vRF" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = 6 +"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 = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_s) "vRR" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -76042,12 +75932,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"vRW" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "vRX" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/medical_diagnostics_manual, @@ -76061,12 +75945,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/upper_medical) -"vSh" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/upper/aft_hallway) "vSl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -76089,12 +75967,21 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"vSu" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"vSr" = ( +/obj/structure/largecrate/random/case/double, +/obj/item/tool/wet_sign{ + pixel_y = 18 }, -/area/almayer/hallways/lower/port_umbilical) +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "vSE" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/almayer{ @@ -76160,6 +76047,13 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) +"vTM" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "vTS" = ( /obj/structure/machinery/light{ pixel_x = 16 @@ -76190,6 +76084,16 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"vTX" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "vUb" = ( /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, @@ -76209,28 +76113,36 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"vUs" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"vUJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/lower/constr) +/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/aft_hallway) "vUP" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cic_hallway) -"vUW" = ( -/obj/item/weapon/dart/green, -/obj/structure/dartboard{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"vUV" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/starboard_hallway) "vVb" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -76266,12 +76178,14 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"vVD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +"vVy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "vVI" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 8; @@ -76291,29 +76205,40 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"vWa" = ( -/obj/structure/mirror{ - pixel_x = 28 +"vVY" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) +"vVZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/hallways/lower/port_umbilical) +"vWc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/normandy{ + layer = 3.5 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "redfull" }, -/area/almayer/maint/hull/upper/u_a_s) -"vWb" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/area/almayer/living/offices/flight) +"vWs" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/lower/vehiclehangar) "vWt" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/beaker/large, @@ -76439,6 +76364,12 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"vXk" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) "vXo" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -76449,25 +76380,33 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower) -"vXr" = ( +"vXv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) +"vXF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"vXV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vYk" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/port_umbilical) +"vYd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "vYm" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, @@ -76553,14 +76492,6 @@ "vZw" = ( /turf/open/floor/almayer/research/containment/floor2, /area/almayer/medical/containment/cell/cl) -"vZF" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) "vZU" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/power/apc/almayer{ @@ -76580,40 +76511,15 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"vZX" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"waa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"wad" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"wal" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"wac" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_a_p) "wan" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/brown, @@ -76622,41 +76528,11 @@ icon_state = "green" }, /area/almayer/living/offices) -"wax" = ( -/obj/item/reagent_container/glass/bucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "waD" = ( /turf/open/floor/almayer{ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_one) -"waG" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) -"waH" = ( -/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/aft_hallway) "waJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -76666,28 +76542,17 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"waS" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 +"waV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"waY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_m_s) -"wbm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/upper/aft_hallway) "wbu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname/almayer{ @@ -76698,6 +76563,18 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) +"wby" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_s) "wbC" = ( /obj/structure/machinery/atm{ pixel_y = 32 @@ -76751,15 +76628,15 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_four) -"wbT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"wbV" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "red" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/living/cryo_cells) "wbX" = ( /obj/structure/closet/secure_closet/cmdcabinet{ pixel_y = 24 @@ -76779,12 +76656,6 @@ icon_state = "redfull" }, /area/almayer/lifeboat_pumps/south2) -"wcs" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "wct" = ( /obj/structure/closet/radiation, /turf/open/floor/almayer{ @@ -76792,19 +76663,20 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"wcx" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +"wcD" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/area/almayer/hallways/lower/port_midship_hallway) +"wcJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, /turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/lower/s_bow) "wcN" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -76884,21 +76756,19 @@ /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"wdA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stairs) "wdF" = ( /turf/open/floor/almayer{ allow_construction = 0 }, /area/almayer/shipboard/brig/processing) "wdG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_p) "wdI" = ( /turf/open/floor/almayer{ dir = 1; @@ -76913,15 +76783,18 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"wdN" = ( -/obj/structure/machinery/light{ - dir = 8 +"wdQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/machinery/power/reactor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"wdW" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower/l_m_p) "wed" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, @@ -76948,6 +76821,24 @@ icon_state = "test_floor4" }, /area/almayer/medical/hydroponics) +"wer" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) +"wes" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "wex" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 8; @@ -76980,25 +76871,18 @@ icon_state = "cargo" }, /area/almayer/living/offices) -"weW" = ( -/obj/effect/landmark/start/doctor, -/obj/structure/sign/safety/maint{ - pixel_y = 26 - }, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"wfd" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +"wfc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/shipboard/brig/execution_storage) "wfn" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ @@ -77014,34 +76898,9 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"wfB" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "wfE" = ( /turf/closed/wall/almayer, /area/almayer/living/gym) -"wfG" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "wfZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -77073,9 +76932,6 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) -"wgi" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/main_office) "wgk" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -77089,12 +76945,30 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"wgw" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - icon_state = "plate" +"wgM" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/area/almayer/maint/hull/lower/l_m_s) +/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/plating, +/area/almayer/shipboard/brig/warden_office) +"wgO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "wgR" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, @@ -77105,42 +76979,14 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"wgY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_umbilical) -"whg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) -"whr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = null; - req_one_access_txt = "19;34;30" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"whm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/hull/upper/u_m_p) -"whv" = ( -/obj/structure/bed/sofa/south/grey/left, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_m_s) "whA" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/living/briefing) @@ -77159,15 +77005,9 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"whX" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) +"wid" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/p_bow) "wiz" = ( /obj/structure/bed/chair{ dir = 4 @@ -77209,6 +77049,27 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"wiO" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"wiQ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "wiW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -77261,13 +77122,42 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/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/hull/upper/u_a_s) +"wjQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/area/almayer/hallways/upper/starboard) -"wjN" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/s_bow) +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "wjY" = ( /obj/structure/closet/secure_closet/warrant_officer, /turf/open/floor/wood/ship, @@ -77295,10 +77185,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) -"wkw" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "wky" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -77328,13 +77214,6 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"wkJ" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "wkM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "ARES StairsLower"; @@ -77359,25 +77238,6 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"wkP" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -16 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"wkR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) "wkX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -77399,34 +77259,32 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"wld" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +"wlh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = -32 + dir = 6 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"wli" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"wlv" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/almayer/squads/req) +"wlB" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"wlD" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/hallways/lower/port_umbilical) "wlE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -77453,12 +77311,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"wlQ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "wmg" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -77468,17 +77320,6 @@ icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) -"wmr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "wmz" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 1 @@ -77487,6 +77328,12 @@ 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/stern_hallway) "wmK" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -77520,14 +77367,6 @@ icon_state = "cargo" }, /area/almayer/living/bridgebunks) -"wmY" = ( -/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/stern_hallway) "wnh" = ( /obj/structure/window/framed/almayer/white/hull, /turf/open/floor/plating, @@ -77541,14 +77380,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"wnK" = ( -/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/aft_hallway) "wnL" = ( /obj/item/stack/tile/carpet{ amount = 12 @@ -77597,30 +77428,9 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"woQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"woW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) +"woU" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_p) "wpg" = ( /obj/structure/machinery/blackbox_recorder, /turf/open/shuttle/dropship{ @@ -77637,6 +77447,20 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) +"wpu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/device/flash, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) "wpw" = ( /obj/structure/bed/chair/comfy/ares{ dir = 1 @@ -77676,6 +77500,12 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"wpT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "wqc" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -77704,33 +77534,15 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) -"wqs" = ( -/obj/structure/surface/table/almayer, -/obj/item/pipe{ - dir = 9 - }, -/obj/item/tool/screwdriver{ - layer = 3.6; - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/tool/crowbar/red{ - pixel_x = 17 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +"wqO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/almayer/hallways/lower/repair_bay) -"wqQ" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"wqU" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "wqW" = ( /obj/structure/closet/secure_closet/CMO, /obj/structure/machinery/light{ @@ -77741,27 +77553,55 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/upper_medical) -"wqX" = ( -/obj/structure/surface/rack, +"wra" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/lower/l_a_p) -"wri" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +"wrr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control/railings{ + pixel_y = 24 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/stern) +/area/almayer/hallways/lower/vehiclehangar) +"wru" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "wrC" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/living/gym) +"wrN" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_fore_hallway) "wrQ" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -77819,38 +77659,64 @@ /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) "wsw" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/stern) +"wsz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "wsD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"wsF" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, +"wsR" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_umbilical) -"wsR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/area/almayer/squads/bravo) +"wsS" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/bravo) +/area/almayer/hallways/lower/starboard_midship_hallway) +"wtk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"wtn" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/item/storage/firstaid{ + pixel_x = -13; + pixel_y = 13 + }, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "wty" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -77860,6 +77726,14 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/delta) +"wtD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/p_bow) "wtM" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -77867,15 +77741,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"wtW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "wtY" = ( /obj/structure/surface/table/almayer, /obj/item/folder/white{ @@ -77894,22 +77759,14 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"wuc" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Brig Medbay"; - req_access = null; - req_one_access = null; - req_one_access_txt = "20;3"; - closeOtherId = "brigmed" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +"wub" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "mono" }, -/area/almayer/shipboard/brig/surgery) +/area/almayer/medical/upper_medical) "wud" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -77919,6 +77776,26 @@ icon_state = "orangefull" }, /area/almayer/engineering/lower/workshop) +"wuh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 + }, +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "wup" = ( /obj/structure/supply_drop/echo, /turf/open/floor/almayer, @@ -77941,31 +77818,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"wuP" = ( -/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_m_s) -"wuR" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "wuT" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -77998,10 +77850,6 @@ /obj/structure/filingcabinet, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"wvt" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "wvE" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ @@ -78028,12 +77876,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"wvN" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "wvU" = ( /obj/structure/machinery/recharge_station, /obj/structure/machinery/light{ @@ -78052,6 +77894,21 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) +"wwt" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/mp_bunks) +"wwv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"wwE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "wwJ" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -78060,14 +77917,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) -"wwV" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "wwW" = ( /obj/structure/machinery/camera/autoname/almayer/containment/hidden{ dir = 8; @@ -78099,15 +77948,11 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"wxn" = ( +"wxp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/mess) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "wxq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -78116,6 +77961,26 @@ icon_state = "plate" }, /area/almayer/medical/lower_medical_medbay) +"wxu" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"wxy" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_stern) +"wxD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"wxO" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/mp_bunks) "wxU" = ( /obj/item/ashtray/bronze{ pixel_x = 7; @@ -78150,6 +78015,32 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) +"wyz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/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/aft_hallway) +"wyG" = ( +/obj/structure/disposalpipe/segment, +/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/hull/lower/l_m_s) "wyQ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door_control{ @@ -78162,26 +78053,68 @@ icon_state = "plating" }, /area/almayer/command/airoom) -"wyV" = ( -/obj/structure/machinery/light{ - dir = 1 +"wzg" = ( +/obj/structure/machinery/door_control{ + id = "firearm_storage_armory"; + name = "Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 }, /turf/open/floor/almayer{ - dir = 5; + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) +"wzy" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"wzE" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"wzJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/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/aft_hallway) -"wzC" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"wzZ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Wheelchair Storage"; + req_access = null; + req_one_access = null }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"wzJ" = ( /turf/open/floor/almayer{ - icon_state = "cargo_arrow" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/medical/lower_medical_medbay) +"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 @@ -78196,31 +78129,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) -"wBg" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"wBl" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +"wBw" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) -"wBy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + dir = 1; + icon_state = "green" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "wBI" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/sign/safety/maint{ @@ -78244,21 +78162,12 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"wCF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "wCI" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "redcorner" }, /area/almayer/living/briefing) -"wCN" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "wCT" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresDown"; @@ -78285,6 +78194,18 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"wDq" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"wDr" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stairs) "wDs" = ( /obj/structure/machinery/seed_extractor, /obj/structure/sign/safety/terminal{ @@ -78322,6 +78243,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"wDG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "wDH" = ( /obj/structure/morgue, /obj/structure/machinery/light{ @@ -78349,14 +78279,14 @@ "wDM" = ( /turf/closed/wall/almayer/reinforced/temphull, /area/almayer/engineering/upper_engineering) -"wDW" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +"wDP" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/lower/l_f_p) "wEd" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -78381,23 +78311,6 @@ icon_state = "rasputin3" }, /area/almayer/powered/agent) -"wEp" = ( -/obj/structure/bookcase/manuals/medical, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) -"wEA" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "wEI" = ( /obj/structure/surface/table/reinforced/black, /obj/item/tool/pen, @@ -78411,6 +78324,12 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"wEK" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "wEO" = ( /obj/structure/platform_decoration{ dir = 4 @@ -78426,15 +78345,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"wFk" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "wFn" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/marine/light/vest, @@ -78462,33 +78372,34 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"wFG" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"wFL" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = -32 +"wFN" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" }, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/shipboard/panic) "wFR" = ( /turf/open/floor/almayer, /area/almayer/living/gym) -"wGa" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"wFX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_s) +"wGa" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "wGb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -78504,6 +78415,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"wGe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "wGE" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/marine/leader/delta, @@ -78536,6 +78453,13 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) +"wHn" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "wHo" = ( /turf/open/floor/almayer{ icon_state = "emerald" @@ -78548,24 +78472,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"wHM" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Warden's Office" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/chief_mp_office) -"wIg" = ( -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "wIr" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ req_access = list(); @@ -78579,12 +78485,12 @@ icon_state = "cargo" }, /area/almayer/squads/req) -"wIz" = ( -/obj/structure/largecrate/random/case/small, +"wIu" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_stern) +/area/almayer/maint/hull/upper/u_a_s) "wIC" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/chief_mp_office) @@ -78609,31 +78515,41 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"wIP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"wIQ" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" }, +/area/almayer/shipboard/brig/cic_hallway) +"wIR" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) +"wIX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink" }, -/area/almayer/hallways/lower/vehiclehangar) -"wIQ" = ( /turf/open/floor/almayer{ dir = 4; - icon_state = "silvercorner" + icon_state = "green" }, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/hallways/lower/port_midship_hallway) "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/stern_hallway) "wJh" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -78653,18 +78569,16 @@ icon_state = "test_floor4" }, /area/almayer/medical/upper_medical) -"wJA" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_aft_hallway) "wJB" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/command/airoom) +"wJC" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "wJD" = ( /obj/structure/bed/chair{ dir = 8; @@ -78686,34 +78600,23 @@ "wJH" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell/cl) -"wJS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"wJT" = ( +"wKb" = ( /obj/structure/bed/chair{ - dir = 4 + dir = 8 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"wKe" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"wKm" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"wKf" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ - dir = 4 + dir = 1; + icon_state = "green" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/port_aft_hallway) "wKF" = ( /obj/structure/machinery/power/apc/almayer{ cell_type = /obj/item/cell/hyper; @@ -78732,6 +78635,15 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"wKN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "wKP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -78747,11 +78659,6 @@ }, /turf/open/floor/plating, /area/almayer/medical/containment) -"wLe" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) "wLi" = ( /obj/structure/machinery/door_control/airlock{ id = "s_engi"; @@ -78767,15 +78674,6 @@ icon_state = "plating_striped" }, /area/almayer/living/cryo_cells) -"wLs" = ( -/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/aft_hallway) "wLu" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -78838,20 +78736,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"wLM" = ( -/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/hull/upper/u_m_s) "wLN" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 8 @@ -78860,6 +78744,24 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) +"wMl" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/two{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "wMv" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -78868,6 +78770,21 @@ icon_state = "dark_sterile" }, /area/almayer/living/auxiliary_officer_office) +"wMB" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wMF" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "wMG" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -78876,6 +78793,17 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) +"wMI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "wMO" = ( /obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 @@ -78915,12 +78843,27 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) -"wNN" = ( -/obj/structure/platform, +"wNz" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wNG" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, /turf/open/floor/almayer{ - icon_state = "plate" + allow_construction = 0 }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/lower/starboard_fore_hallway) "wNS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -78933,34 +78876,18 @@ /obj/structure/platform, /turf/open/floor/almayer, /area/almayer/living/briefing) -"wOb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"wOm" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "wOt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"wOC" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +"wOv" = ( +/obj/structure/platform, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "wOK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -78970,6 +78897,18 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"wPa" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/reagent_container/glass/rag, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "wPf" = ( /obj/structure/sign/safety/reception{ pixel_x = 32; @@ -78979,6 +78918,27 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"wPi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/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/hallways/upper/stern_hallway) "wPz" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -79006,67 +78966,51 @@ }, /area/almayer/command/cichallway) "wPR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) -"wPX" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"wQA" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"wQD" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/engineering/lower/engine_core) -"wQH" = ( +/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/hull/upper/u_a_s) +"wQu" = ( /obj/effect/projector{ name = "Almayer_Up3"; vector_x = -1; vector_y = 102 }, /turf/open/floor/almayer{ - allow_construction = 0 + allow_construction = 0; + icon_state = "plate" }, /area/almayer/hallways/lower/port_fore_hallway) -"wQM" = ( -/obj/structure/largecrate/random/barrel/yellow, +"wQA" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"wQD" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 6; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/u_m_p) -"wQV" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/area/almayer/engineering/lower/engine_core) +"wRf" = ( +/obj/structure/machinery/light/small, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"wQZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 }, -/area/almayer/hallways/upper/stern_hallway) -"wRn" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/port_umbilical) "wRN" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/goldappleseed, @@ -79106,10 +79050,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"wSd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) "wSm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79134,13 +79074,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"wSK" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, +"wSx" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/brig/execution) +/area/almayer/maint/hull/upper/u_a_p) +"wSQ" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "wSR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -79180,10 +79128,6 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"wTe" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "wTg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -79201,6 +79145,23 @@ icon_state = "red" }, /area/almayer/living/briefing) +"wTn" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"wTu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "wTw" = ( /obj/structure/machinery/cm_vending/sorted/attachments/squad{ req_access = null; @@ -79218,12 +79179,20 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) -"wTF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"wTB" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) "wTM" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell) @@ -79235,10 +79204,6 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) -"wUc" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "wUd" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves{ @@ -79248,9 +79213,12 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"wUB" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_stern) +"wUJ" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "wUK" = ( /turf/open/floor/almayer{ dir = 8; @@ -79286,6 +79254,13 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) +"wVm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "wVt" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/plating/plating_catwalk, @@ -79313,12 +79288,6 @@ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) -"wVz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/port_midship_hallway) "wVA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -79338,13 +79307,14 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) -"wVU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 +"wVN" = ( +/obj/item/roller, +/obj/structure/surface/rack, +/obj/item/roller, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/shipboard/panic) "wVW" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/cic) @@ -79373,6 +79343,14 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"wWt" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "wWz" = ( /turf/closed/wall/almayer/research/containment/wall/north, /area/almayer/medical/containment/cell) @@ -79382,10 +79360,6 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) -"wWD" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) "wWP" = ( /obj/structure/prop/cash_register/broken, /obj/structure/machinery/light/small, @@ -79409,29 +79383,6 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"wXb" = ( -/obj/structure/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"wXf" = ( -/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/aft_hallway) "wXh" = ( /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" @@ -79440,22 +79391,12 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) -"wXx" = ( -/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/stern_hallway) -"wXD" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ - dir = 4 +"wXl" = ( +/obj/structure/platform, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/upper/u_a_p) "wXH" = ( /obj/structure/bed/chair{ dir = 1 @@ -79468,15 +79409,12 @@ icon_state = "greencorner" }, /area/almayer/living/grunt_rnr) -"wXS" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, +"wXJ" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_a_s) "wXT" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Engineering Storage" @@ -79491,38 +79429,35 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north2) +"wYd" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) +"wYr" = ( +/obj/structure/machinery/gel_refiller, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) "wYA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"wYI" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, +"wYG" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ - icon_state = "orangecorner" + icon_state = "cargo" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_m_s) "wYK" = ( /obj/structure/barricade/handrail/medical, /turf/open/floor/almayer{ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"wYQ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "wYS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79535,16 +79470,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"wYU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "wYY" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -79556,22 +79481,30 @@ }, /turf/open/floor/plating, /area/almayer/engineering/ce_room) -"wZa" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_s) -"wZt" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 15; - pixel_y = 32 +"wZk" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/obj/structure/sign/safety/intercom{ - pixel_y = 32 +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, /area/almayer/hallways/upper/aft_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/stern_hallway) "wZv" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -79585,15 +79518,6 @@ icon_state = "outerhull_dir" }, /area/almayer/engineering/upper_engineering/port) -"wZD" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_s) "wZE" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/surgery, @@ -79605,40 +79529,16 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) -"wZH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "wZL" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"wZN" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/execution) "wZX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"xac" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "xad" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -79650,6 +79550,12 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) +"xas" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "xaC" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/utensil/pfork{ @@ -79703,14 +79609,6 @@ dir = 5 }, /area/almayer/command/lifeboat) -"xaV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "xba" = ( /turf/closed/wall/almayer/reinforced/temphull, /area/almayer/living/cryo_cells) @@ -79723,35 +79621,24 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"xbg" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "xbk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/gym) -"xbG" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8; - plane = -6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +"xbI" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" + icon_state = "plate" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/lower/l_m_s) "xbN" = ( /obj/structure/surface/rack{ density = 0; @@ -79767,37 +79654,60 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) -"xcC" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, +"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 = "plate" + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) +"xcI" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/maint/hull/lower/l_m_p) -"xdr" = ( /turf/open/floor/almayer{ - dir = 5; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) -"xdt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/area/almayer/maint/hull/lower/p_bow) +"xcV" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" }, /turf/open/floor/almayer{ - dir = 9; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) -"xdv" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/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/aft_hallway) +"xdf" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) +"xdl" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "xdx" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular/empty, @@ -79821,14 +79731,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/execution) -"xdN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "xdP" = ( /obj/structure/surface/table/almayer, /obj/item/trash/uscm_mre, @@ -79845,60 +79747,105 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"xdT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/toolbox, -/obj/item/stack/sheet/metal{ - desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; - icon = 'icons/obj/structures/props/semiotic_standard.dmi'; - icon_state = "coffee"; - name = "coffee semiotic"; - pixel_x = 20; - pixel_y = 12; - singular_name = "coffee semiotic" +"xee" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"xef" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/structure/machinery/keycard_auth{ + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 26 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"xec" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"xeV" = ( -/obj/structure/sign/safety/hvac_old{ +/area/almayer/engineering/lower/workshop) +"xem" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/shipboard/brig/mp_bunks) +"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/stern_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, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/upper/u_m_s) -"xeY" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "xfm" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/cafeteria_officer) -"xft" = ( -/obj/structure/platform_decoration{ - dir = 4 +"xfo" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"xfq" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"xfu" = ( -/obj/structure/largecrate/random/case/double, +/area/almayer/maint/hull/lower/l_a_p) +"xfA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "red" }, -/area/almayer/maint/upper/u_m_p) +/area/almayer/shipboard/brig/starboard_hallway) "xfK" = ( /obj/structure/machinery/light{ dir = 1 @@ -79942,6 +79889,30 @@ 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/hull/upper/u_m_s) +"xgc" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Lethal Injection Locker" + }, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/execution_storage) "xgh" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -79950,15 +79921,50 @@ icon_state = "sterile_green" }, /area/almayer/medical/lower_medical_lobby) -"xgI" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +"xgk" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" }, -/obj/item/storage/donut_box{ - pixel_y = 8 +/area/almayer/hallways/lower/starboard_midship_hallway) +"xgm" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"xgr" = ( +/obj/structure/ladder{ + height = 1; + id = "AftPortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/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/aft_hallway) +"xgJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) +/area/almayer/medical/lockerroom) "xgN" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 1 @@ -79972,19 +79978,44 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"xgP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) +"xgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"xhi" = ( +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) "xhn" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"xhp" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "xhx" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -79992,18 +80023,24 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"xhE" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 +"xhO" = ( +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/main_office) +/area/almayer/maint/hull/lower/l_a_p) "xhQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/squads/bravo) +"xhW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "xhZ" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 @@ -80018,20 +80055,18 @@ /obj/structure/window/reinforced, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"xiD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/wrench{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/tool/wrench{ - pixel_x = 2; - pixel_y = 7 - }, +"xiH" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_f_s) +"xiP" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "xiU" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/tool/minihoe{ @@ -80046,13 +80081,9 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"xiZ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/maint/hull/lower/l_m_s) +"xiV" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_bow) "xjb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ access_modified = 1; @@ -80063,12 +80094,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"xjh" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "xjt" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/card{ @@ -80111,23 +80136,12 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"xjG" = ( -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = 24; - pixel_y = 12; - req_access_txt = "3" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, +"xjI" = ( /turf/open/floor/almayer{ - dir = 5; + dir = 4; icon_state = "red" }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/hallways/upper/stern_hallway) "xjK" = ( /obj/structure/sign/safety/hazard{ pixel_y = 32 @@ -80140,9 +80154,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"xjU" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "xjW" = ( /obj/structure/sign/safety/hazard{ desc = "A sign that warns of a hazardous environment nearby"; @@ -80154,9 +80165,34 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) +"xkb" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"xkc" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "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/aft_hallway) "xkB" = ( /obj/structure/bed/chair/comfy/charlie{ dir = 1 @@ -80166,34 +80202,20 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xkE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +"xkN" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/s_bow) -"xkM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"xkZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "greencorner" }, -/area/almayer/maint/lower/constr) +/area/almayer/hallways/lower/starboard_fore_hallway) "xlk" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, @@ -80230,21 +80252,21 @@ icon_state = "silverfull" }, /area/almayer/shipboard/brig/cic_hallway) -"xml" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; +"xmn" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical{ pixel_x = 1; - pixel_y = 1 + pixel_y = 7 }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 1; + pixel_y = -1 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/hull/lower/l_f_p) "xmJ" = ( /obj/structure/closet, /obj/structure/sign/safety/bathunisex{ @@ -80266,27 +80288,6 @@ icon_state = "cargo" }, /area/almayer/medical/lower_medical_medbay) -"xmX" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/shipboard/brig/surgery) -"xnn" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"xnr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "xns" = ( /obj/structure/machinery/door_control{ id = "ARES JoeCryo"; @@ -80309,13 +80310,6 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"xnG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "xnI" = ( /obj/effect/landmark/start/requisition, /turf/open/floor/plating/plating_catwalk, @@ -80347,15 +80341,28 @@ 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/aft_hallway) "xoj" = ( /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) -"xow" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 +"xos" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xoB" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_s) "xoJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -80370,15 +80377,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"xoX" = ( -/obj/structure/machinery/light{ - dir = 8 +"xpc" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" + icon_state = "green" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "xpi" = ( /obj/structure/sink{ dir = 8; @@ -80396,37 +80403,30 @@ icon_state = "dark_sterile" }, /area/almayer/living/commandbunks) -"xpo" = ( -/obj/structure/closet/secure_closet/cmdcabinet{ - desc = "A bulletproof cabinet containing communications equipment."; - name = "communications cabinet"; - pixel_y = 24; - req_access = null; - req_one_access_txt = "3" - }, -/obj/item/device/radio/listening_bug/radio_linked/mp{ - pixel_y = 8 +"xpl" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/item/device/radio/listening_bug/radio_linked/mp, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/sign/safety/four{ + pixel_x = 31; + pixel_y = -8 }, -/area/almayer/shipboard/brig/chief_mp_office) -"xpq" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"xpG" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" }, -/turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) +"xpL" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "xpT" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -80447,23 +80447,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"xqj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/vehiclehangar) -"xqm" = ( -/obj/structure/sign/safety/security{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "xqp" = ( /obj/structure/machinery/body_scanconsole{ dir = 8; @@ -80483,12 +80466,6 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"xqs" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/chief_mp_office) "xqv" = ( /obj/structure/bed/sofa/south/white/right, /turf/open/floor/almayer{ @@ -80523,6 +80500,19 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) +"xrg" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "xrq" = ( /obj/structure/closet/firecloset, /obj/item/clothing/mask/gas, @@ -80557,6 +80547,17 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"xrC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "xrI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -80565,26 +80566,16 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"xsc" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"xrT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/lower/port_umbilical) -"xsg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/main_office) -"xsj" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "xsl" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -80594,19 +80585,28 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) +"xss" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) +"xsv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "xsw" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"xsy" = ( -/obj/item/pipe{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "xsz" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -80616,49 +80616,27 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"xtg" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"xtk" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"xtr" = ( -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"xtI" = ( -/obj/structure/disposalpipe/segment, -/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 +"xsQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart/green, +/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/maint/upper/mess) +/area/almayer/hallways/upper/stern_hallway) "xtM" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -80666,17 +80644,26 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"xtU" = ( +"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/aft_hallway) +"xub" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "xuc" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -80684,13 +80671,23 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"xun" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/item/toy/deck{ - pixel_y = 12 +"xui" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"xuy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/lower/port_fore_hallway) "xuE" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ dir = 1; @@ -80737,13 +80734,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"xvB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "xvE" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ @@ -80767,6 +80757,16 @@ icon_state = "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/aft_hallway) "xvQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/sentencing{ @@ -80783,6 +80783,15 @@ icon_state = "plate" }, /area/almayer/squads/bravo) +"xwd" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "xwl" = ( /obj/structure/window/reinforced{ dir = 4; @@ -80796,6 +80805,18 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) +"xwm" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "xwp" = ( /obj/item/storage/box/matches{ pixel_x = -11; @@ -80826,26 +80847,15 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xwT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"xwU" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" + icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) -"xwU" = ( -/obj/item/roller, -/obj/structure/surface/rack, -/obj/item/roller, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "xwX" = ( /turf/open/floor/almayer{ dir = 9; @@ -80890,12 +80900,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"xxj" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "xxm" = ( /obj/structure/bed{ can_buckle = 0 @@ -80933,16 +80937,19 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"xxr" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/obj/item/device/whistle{ - pixel_y = 5 +"xxG" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/structure/largecrate/random/barrel/red, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -2; + pixel_y = 16 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/l_m_s) "xxI" = ( /obj/structure/cargo_container/wy/mid, /obj/structure/sign/poster{ @@ -80994,9 +81001,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"xys" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/main_office) "xyt" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical{ @@ -81041,6 +81045,12 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) +"xyQ" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/hallways/lower/repair_bay) "xyY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -81052,6 +81062,11 @@ icon_state = "green" }, /area/almayer/squads/req) +"xyZ" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "xzf" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -81062,41 +81077,24 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"xzx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"xzO" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Execution Firearms" +"xzh" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"xzB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"xzI" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/ammo_box/magazine/m4ra, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "green" }, -/area/almayer/shipboard/brig/execution) +/area/almayer/hallways/lower/port_midship_hallway) "xAe" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell) -"xAj" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "xAt" = ( /obj/structure/bed/chair/comfy/charlie{ dir = 8 @@ -81105,12 +81103,13 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"xAv" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" +"xAu" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "xAB" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -81120,16 +81119,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"xAC" = ( -/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/aft_hallway) "xAI" = ( /obj/structure/platform{ dir = 1 @@ -81165,6 +81154,12 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/port) +"xBK" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) "xBQ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -81172,12 +81167,14 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"xBT" = ( -/obj/structure/surface/rack, +"xBS" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_s) "xBV" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -81207,16 +81204,17 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"xCQ" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 +"xCy" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 }, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "xDe" = ( /obj/effect/projector{ name = "Almayer_Down4"; @@ -81233,10 +81231,16 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"xDy" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +"xDu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/shipboard/brig/starboard_hallway) "xDC" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/no_build{ @@ -81250,6 +81254,15 @@ 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/hull/upper/u_a_s) "xDV" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -81260,20 +81273,14 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"xEq" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) +"xEe" = ( +/obj/structure/prop/invuln/joey, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "xEs" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "xEz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/surgery, @@ -81285,15 +81292,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_two) -"xEI" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "xEO" = ( /turf/open/floor/prison{ icon_state = "kitchen" @@ -81305,12 +81303,21 @@ icon_state = "plate" }, /area/almayer/living/offices) +"xFt" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "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/aft_hallway) "xFZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -81328,18 +81335,18 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) +"xGm" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "xGo" = ( /obj/structure/machinery/autolathe, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/req) -"xGv" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "xGE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -81361,6 +81368,15 @@ icon_state = "test_floor4" }, /area/almayer/squads/bravo) +"xGF" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "xGJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -81371,38 +81387,78 @@ icon_state = "red" }, /area/almayer/living/briefing) +"xGK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/lights/tubes{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"xGT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"xHa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"xHl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "xHp" = ( /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/squads/alpha_bravo_shared) -"xHr" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/tubes{ - pixel_x = -8 +"xHD" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/item/storage/box/lights/tubes{ - pixel_x = 5 +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" }, -/obj/item/storage/box/lights/tubes{ - pixel_y = 10 +/area/almayer/maint/hull/upper/u_m_p) +"xHS" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"xHx" = ( /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/maint/upper/u_m_s) -"xHC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/area/almayer/engineering/lower/workshop/hangar) +"xHX" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/lower/p_bow) "xId" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/he, @@ -81419,14 +81475,6 @@ icon_state = "cargo" }, /area/almayer/medical/lower_medical_medbay) -"xIp" = ( -/obj/structure/surface/table/almayer, -/obj/item/card/id/visa, -/obj/item/tool/crew_monitor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "xIq" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -81451,24 +81499,26 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"xIy" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"xIO" = ( +/obj/structure/machinery/optable, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 29 }, -/area/almayer/maint/lower/cryo_cells) -"xIB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_corner" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/shipboard/brig/medical) "xIQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/living/offices) +"xIV" = ( +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) "xIW" = ( /obj/structure/machinery/light{ dir = 4 @@ -81503,39 +81553,17 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"xJr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"xJv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, +"xJp" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_m_s) "xJH" = ( /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/charlie_delta_shared) -"xJK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "xJR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -81552,41 +81580,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"xJV" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) -"xJY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"xKo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"xKy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"xKG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "Under Construction Shutters"; + name = "shutter-control"; + pixel_x = -25 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "xKM" = ( /obj/structure/machinery/status_display{ pixel_x = 16; @@ -81633,15 +81638,28 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/general_equipment) -"xLp" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"xLC" = ( +"xLn" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ - dir = 10; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/upper/s_stern) +"xLu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"xLX" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) "xMf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -81670,6 +81688,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"xMm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "xMs" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_two) @@ -81698,6 +81725,37 @@ dir = 6 }, /area/almayer/command/cic) +"xMG" = ( +/obj/structure/machinery/door_control{ + id = "OuterShutter"; + name = "Outer Shutter"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;3" + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "OfficeSafeRoom"; + name = "Office Safe Room"; + pixel_x = 5; + pixel_y = 5; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) +"xMJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/execution_storage) "xML" = ( /obj/structure/machinery/computer/cameras/wooden_tv/prop{ pixel_x = -4; @@ -81765,6 +81823,12 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"xNl" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "xNu" = ( /obj/structure/toilet{ dir = 1 @@ -81797,15 +81861,25 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/auxiliary_officer_office) -"xNY" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"xOb" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/living/auxiliary_officer_office) +"xNM" = ( +/obj/structure/machinery/cm_vending/gear/vehicle_crew, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/lower/vehiclehangar) +"xOs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = -30 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/command/corporateliaison) "xOL" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -81835,6 +81909,42 @@ dir = 4 }, /area/almayer/medical/containment/cell) +"xPi" = ( +/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{ + dir = 1; + name = "\improper Warden's Office"; + closeOtherId = "brigwarden" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/warden_office) +"xPn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "xPq" = ( /obj/structure/filingcabinet, /obj/item/folder/yellow, @@ -81843,12 +81953,12 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"xPU" = ( +"xPu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_a_p) "xPZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -81864,6 +81974,24 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) +"xQd" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"xQe" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "xQg" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -81873,27 +82001,40 @@ icon_state = "bluecorner" }, /area/almayer/living/pilotbunks) -"xQl" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" +"xQj" = ( +/obj/item/pipe{ + dir = 4; + layer = 3.5 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "xQm" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 1 }, /area/almayer/medical/containment/cell) -"xQq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) +"xQz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "xQV" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer/no_build{ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"xQW" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "xRj" = ( /obj/structure/bed/chair{ dir = 8; @@ -81927,17 +82068,17 @@ icon_state = "silver" }, /area/almayer/command/computerlab) +"xRn" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/upper/aft_hallway) "xRw" = ( /turf/open/floor/almayer/uscm/directional{ dir = 1 }, /area/almayer/living/briefing) -"xRG" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "xRH" = ( /obj/structure/sign/safety/fibre_optics{ pixel_y = 32 @@ -81958,14 +82099,16 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"xRK" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = 26 +"xSl" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "red" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/hallways/upper/stern_hallway) "xSw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -81976,6 +82119,12 @@ }, /turf/open/floor/plating, /area/almayer/squads/charlie) +"xSx" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "xSz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/status_display{ @@ -82003,10 +82152,6 @@ icon_state = "red" }, /area/almayer/squads/alpha) -"xSX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "xSY" = ( /obj/structure/machinery/light{ dir = 1 @@ -82026,6 +82171,17 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) +"xTx" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_p) +"xTG" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "xTH" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -82045,20 +82201,6 @@ icon_state = "plate" }, /area/almayer/living/numbertwobunks) -"xTQ" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "xTR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -82104,18 +82246,13 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"xUb" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"xUt" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, +"xUy" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) +/area/almayer/maint/hull/upper/p_stern) "xUA" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pouch/tools/tank, @@ -82132,23 +82269,25 @@ icon_state = "silver" }, /area/almayer/command/cic) -"xUS" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"xUV" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) -"xUV" = ( -/obj/structure/bed/chair{ +/area/almayer/command/combat_correspondent) +"xUY" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/command/combat_correspondent) +/area/almayer/maint/hull/lower/l_f_p) "xVc" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/door_control{ @@ -82162,16 +82301,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"xVd" = ( -/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/aft_hallway) "xVe" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -82184,20 +82313,9 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"xVi" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "xVk" = ( /turf/open/space, /area/space/almayer/lifeboat_dock) -"xVl" = ( -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/main_office) "xVF" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -82227,31 +82345,28 @@ }, /turf/closed/wall/almayer, /area/almayer/living/tankerbunks) +"xVY" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "xWd" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/squads/alpha_bravo_shared) -"xWh" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"xWi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" +"xWo" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;21" }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/squads/req) "xWp" = ( /turf/open/floor/almayer, /area/almayer/living/offices/flight) @@ -82261,17 +82376,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"xWI" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = -25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "xWO" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 @@ -82295,15 +82399,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"xWV" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/alamo{ - layer = 2.9 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/offices/flight) "xXa" = ( /turf/open/floor/almayer{ dir = 8; @@ -82337,18 +82432,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"xXm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "xXr" = ( /obj/item/reagent_container/glass/beaker/bluespace, /obj/structure/machinery/chem_dispenser/research, @@ -82356,32 +82439,6 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"xXu" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"xXC" = ( -/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/lower/port_midship_hallway) -"xXD" = ( -/obj/item/clothing/shoes/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"xXG" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "xXT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -82397,13 +82454,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xXX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "xYf" = ( /obj/structure/machinery/cm_vending/clothing/sea, /turf/open/floor/almayer{ @@ -82411,30 +82461,12 @@ icon_state = "plating" }, /area/almayer/shipboard/sea_office) -"xYg" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xYi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +"xYr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/lower/port_umbilical) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "xYB" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -82442,6 +82474,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) +"xYE" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "xYP" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) @@ -82451,16 +82489,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"xYS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "xYZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -82470,6 +82498,12 @@ }, /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/aft_hallway) "xZk" = ( /obj/item/prop/helmetgarb/gunoil{ layer = 4.2; @@ -82497,15 +82531,10 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xZs" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) +"xZz" = ( +/obj/item/paper/almayer_storage, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "xZG" = ( /obj/structure/machinery/light{ dir = 4 @@ -82514,6 +82543,28 @@ /obj/structure/bed, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"xZH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"xZM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"xZR" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "xZU" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -82525,12 +82576,6 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) -"yaa" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "yac" = ( /obj/structure/platform_decoration{ dir = 8 @@ -82540,22 +82585,18 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"yai" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"yap" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"yak" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/lower/starboard_fore_hallway) "yaz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "\improper Officer's Study" @@ -82590,16 +82631,31 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"yaS" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/port_umbilical) -"yaW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 +"yaR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/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/stern_hallway) +"yaX" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/lower/vehiclehangar) "yaZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -82609,16 +82665,26 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"ybq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"ybk" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/upper/stern_hallway) +"ybm" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = 6 }, -/area/almayer/shipboard/panic) +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "ybz" = ( /obj/structure/machinery/brig_cell/cell_4{ pixel_x = 32; @@ -82626,16 +82692,14 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"ybU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +"ybP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/shipboard/brig/main_office) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) "ybZ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/transmitter{ @@ -82649,13 +82713,6 @@ icon_state = "redfull" }, /area/almayer/shipboard/port_missiles) -"ycb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "ycd" = ( /obj/structure/bed/chair{ dir = 8; @@ -82671,6 +82728,9 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"ycl" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) "ycm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -82702,13 +82762,14 @@ icon_state = "green" }, /area/almayer/squads/req) -"ycS" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 32 +"ycM" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "ycZ" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -82718,19 +82779,15 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"ydb" = ( -/obj/structure/machinery/light/small{ +"ydf" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) +/area/almayer/maint/hull/upper/u_a_s) "ydh" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -82741,17 +82798,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"ydw" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) "ydz" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -82760,6 +82806,19 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) +"ydA" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_fore_hallway) "ydE" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -82801,12 +82860,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"ydR" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "ydY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -82815,44 +82868,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"yeb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/hallways/upper/stern_hallway) -"yef" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"yen" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"yep" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"yeu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "yeH" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -82881,16 +82896,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"yeO" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "yeR" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ req_access = null; @@ -82899,6 +82904,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) +"yfd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "yff" = ( /obj/structure/machinery/cm_vending/clothing/dress{ density = 0; @@ -82911,6 +82922,13 @@ icon_state = "cargo" }, /area/almayer/command/cic) +"yfg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "yfm" = ( /obj/effect/landmark/start/marine/delta, /obj/effect/landmark/late_join/delta, @@ -82918,6 +82936,13 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"yfy" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "yfG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -82930,6 +82955,19 @@ }, /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/hull/upper/u_m_p) "yfS" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -82937,10 +82975,6 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"ygb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "yge" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer/vehicle{ @@ -82950,12 +82984,44 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"ygo" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"ygp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ygv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) +"ygB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ygP" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) "yhg" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -82964,29 +83030,48 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"yhx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/glasses/welding{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/weldingtool{ - pixel_x = -11; - pixel_y = 5 - }, -/obj/structure/machinery/light/small{ - dir = 1 +"yht" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "red" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/living/cryo_cells) "yhI" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"yhO" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/port) +"yhR" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"yhZ" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/p_bow) +"yia" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"yih" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "yit" = ( /obj/structure/machinery/light{ dir = 4 @@ -82998,18 +83083,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"yiJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"yiL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "yiW" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -83041,18 +83114,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/morgue) -"yjf" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Passenger Cryogenics Bay" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) -"yjl" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) "yjq" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; @@ -83062,6 +83123,15 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/notunnel) +"yjE" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "yjG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -83080,21 +83150,11 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) -"yjQ" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "yjU" = ( /turf/open/floor/almayer{ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"ykg" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_p) "ykj" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -83106,49 +83166,88 @@ icon_state = "test_floor4" }, /area/almayer/living/grunt_rnr) -"yks" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +"yko" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 }, -/area/almayer/hallways/upper/aft_hallway) -"ykB" = ( -/obj/structure/bed/chair{ +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/lower/repair_bay) +"ykv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "ykI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"ykL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"ykY" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/structure/closet/crate, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/area/almayer/hallways/lower/repair_bay) -"ykP" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/area/almayer/shipboard/brig/main_office) +/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/hull/upper/u_m_s) "ylc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -83183,13 +83282,23 @@ icon_state = "test_floor5" }, /area/almayer/engineering/lower/engine_core) -"yma" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/airlock/almayer/maint, +"ylN" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ymg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_f_p) (1,1,1) = {" aaa @@ -90551,13 +90660,13 @@ dhd oog jNT fag -jVP -feb -feb -feb -feb -feb +jjH feb +uFI +uFI +uFI +uFI +uFI ajZ aaa aaa @@ -90755,12 +90864,12 @@ nPb fZX dBS nSu -wld -mtl -jjm -wZN -kgQ -feb +udo +cHp +xgc +wfc +xMJ +uFI aag aaf ajY @@ -90945,8 +91054,8 @@ aaa aaa aaa aad -sOq -sOq +uDg +uDg hPI pQr rib @@ -90959,13 +91068,13 @@ qVF xdJ kzr jqY -kBh -jNT -jNT -wSK -feb -lFL -lFL +kPf +etW +etW +ewP +uFI +xiV +xiV ajZ aaa aaa @@ -91147,9 +91256,9 @@ aaf aaf aaf aaf -sOq -sOq -ryg +uDg +uDg +lHk naB wnw pHp @@ -91162,14 +91271,14 @@ mtl mtl mtl ewI -mtl -xzO -pNk -jIH -mtl -ktH -lFL -lFL +cHp +sMp +edJ +kCY +cHp +igS +xiV +xiV aaf aaf aaf @@ -91343,19 +91452,19 @@ aaa aaa aaa aad -sOq -sOq -sOq -sOq -sOq -sOq -sOq -sOq -nkE -mjC +uDg +uDg +uDg +uDg +uDg +uDg +uDg +uDg +aPN +lSJ naB pQr -jRH +jeR wvI vPf fvA @@ -91365,21 +91474,21 @@ tul mNK gtU bjk -mtl -mtl -mtl -mtl -mtl -vFB -gWL -lFL -lFL -lFL -lFL -lFL -lFL -lFL -lFL +cHp +cHp +cHp +cHp +cHp +iuf +pnh +xiV +xiV +xiV +xiV +xiV +xiV +xiV +xiV ajZ aaa aaa @@ -91546,16 +91655,16 @@ aaa aaa aaa aad -sOq -hNh -sjC -pjr -fHY -aXV -pjr -unI -mIQ -bKG +uDg +cth +gkr +xkc +oGj +hSj +xkc +mph +nlh +rGr naB naB naB @@ -91571,18 +91680,18 @@ rdA alF sql alF -kAk -xXu -ogI -uwJ -hIl -xXu -ubB -csT -xXu -xXu -jIU -lFL +rwe +pdp +hZw +xYr +mjs +pdp +ohu +iUh +pdp +pdp +kSn +xiV ajZ bdH bdH @@ -91749,19 +91858,19 @@ bdH aac aaf aag -sOq -sjC -pjr -sjC -qPC -tla -vcg -xqm -pjr -vnU +uDg +gkr +xkc +gkr +vAg +gxI +kqC +bBU +xkc +eeA naB pQr -dFH +ggS wvI piK fvA @@ -91777,15 +91886,15 @@ xkd xkd xkd xkd -wUc -hfx -kvj -kWA -idf -tyH -tyH -xXu -lFL +lRt +tsE +iVG +hmA +hmZ +oDh +oDh +pdp +xiV aag aaf ajY @@ -91951,17 +92060,17 @@ bdH bdH aad aag -sOq -sOq -sjC -pjr -vBm -vBm -vBm -vBm -vBm -qmC -vBm +uDg +uDg +gkr +xkc +rtP +rtP +rtP +rtP +rtP +slb +aii naB kry pHp @@ -91986,10 +92095,10 @@ xkd xkd xkd xkd -xXu -tyH -lFL -lFL +pdp +oDh +xiV +xiV aag ajZ bdH @@ -92154,17 +92263,17 @@ bdH bdH aad aag -sOq -pnI -sjC -hNh -vBm -rBV -oPk -mqo -vBm -eRL -puv +uDg +pOp +gkr +cth +rtP +awb +ulB +cXv +rtP +sDp +jme naB pQr bsp @@ -92189,10 +92298,10 @@ uns vCy eyV xkd -nWt -tyH -xXu -lFL +mkF +oDh +pdp +xiV aag ajZ bdH @@ -92357,17 +92466,17 @@ bdH bdH aad aag -sOq -naN -pjr -lHE -vBm -ldu -wgi -wgi -ckS -eRL -sDV +uDg +lDT +xkc +xyZ +rtP +hjq +jDx +jDx +lit +sDp +hbD naB naB naB @@ -92392,10 +92501,10 @@ xGh jVa wDs xkd -abN -tyH -xXu -lFL +oHf +oDh +pdp +xiV aag ajZ bdH @@ -92560,23 +92669,23 @@ bdH bdH aad aag -sOq -pjr -sjC -vBm -vBm -sFC -sFC -sFC -vBm -lOI -pJv -jLM -sXy -cMb -rbi -kwU -xys +uDg +xkc +gkr +rtP +rtP +tuW +tuW +tuW +rtP +uwV +bvL +oYb +vOj +mcJ +rKh +qXG +vUV nkX iQB cmv @@ -92596,9 +92705,9 @@ tUx wRN xkd xkd -xXu -tyH -lFL +pdp +oDh +xiV aag ajZ bdH @@ -92666,10 +92775,10 @@ aaa bdH aad aag -tNf -tNf -tNf -tNf +nBJ +nBJ +nBJ +nBJ aag dqw uwv @@ -92691,10 +92800,10 @@ dqw aag aag aag -tQN -tQN -tQN -tQN +wid +wid +wid +wid aag ajZ bdH @@ -92763,23 +92872,23 @@ bdH bdH aad aag -ocS -pjr -sjC -vBm -ykP -xAj -xhE -xhE -vBm -hKq -lwK -hrO -xsg -xsg -grF -xVl -uqy +lrE +xkc +gkr +rtP +ttq +iSL +bcW +bcW +rtP +dOf +fFV +mfk +dVE +dVE +fDw +jTE +edW wdF wdF wdF @@ -92799,9 +92908,9 @@ tUx xJe qLt xkd -xXu -tyH -pqG +pdp +oDh +cPj aag etE bdH @@ -92869,9 +92978,9 @@ aaa bdH aad aag -tNf -sOH -dRN +nBJ +kJc +jFt bAs bAs bAs @@ -92895,9 +93004,9 @@ bTT bTT bTT bAs -oFb -obx -tQN +kOR +jYM +wid aag ajZ bdH @@ -92966,23 +93075,23 @@ bdH bdH aad aag -ocS -sjC -pjr -vBm -ykP -xjG -ssD -gcT -rmv -eRL -eRL -rhl -gcT -gcT -xVl -gcT -lxy +lrE +gkr +xkc +rtP +ttq +pdR +unY +kVE +fnO +sDp +sDp +oRG +mJI +mJI +jTE +mJI +kzv oRk oRk oRk @@ -93002,9 +93111,9 @@ ycm qCo pWr xkd -xXX -tyH -pqG +aGa +oDh +cPj aag ajZ bdH @@ -93072,9 +93181,9 @@ aaa bdH aad aag -tNf -jln -vXr +nBJ +rUi +grv bBA bAK bCY @@ -93098,9 +93207,9 @@ acr bPG acN bBA -nHN -sjZ -tQN +gTK +fWg +wid aag ajZ bdH @@ -93169,9 +93278,9 @@ bdH bdH aad aag -ocS -lYZ -pjr +lrE +vDh +xkc lrq lrq lrq @@ -93179,8 +93288,8 @@ lrq lrq lrq lrq -cxA -uwS +tzK +nVG tpn tpn srT @@ -93205,9 +93314,9 @@ cyZ jVa fJT xkd -mPQ -xXu -pqG +rfB +pdp +cPj aag eSU bdH @@ -93275,9 +93384,9 @@ aaa bdH aad aag -tNf -pDk -wjN +nBJ +uRR +mFQ bBA hWJ bCY @@ -93301,9 +93410,9 @@ bHP bPG hpk bBA -rAk -szS -tQN +yhZ +wtD +wid aag ajZ bdH @@ -93372,9 +93481,9 @@ bdH bdH aad aag -sOq -hNh -vtH +uDg +cth +qsp lrq kEc chv @@ -93382,8 +93491,8 @@ cAy uhE vKB lrq -szR -cZj +rQP +bxD tpn eVR cak @@ -93408,9 +93517,9 @@ dfk vzz moB xkd -pVg -xXu -lFL +gNZ +pdp +xiV aag ajZ bdH @@ -93478,9 +93587,9 @@ aaa bdH aad aag -tNf -qqi -fvs +nBJ +ecS +eQR gol akb bCY @@ -93504,9 +93613,9 @@ bPn bPG ald gol -kuI -lGZ -tQN +sGK +hLu +wid aag ajZ bdH @@ -93575,9 +93684,9 @@ bdH bdH aad aag -sOq -tnD -sjC +uDg +cUl +gkr lrq heo nqe @@ -93585,8 +93694,8 @@ nqe nqe nqe tLa -eRL -igt +sDp +xfA tpn rqS cak @@ -93611,9 +93720,9 @@ eZH tUx cXi xkd -vFr -xXu -lFL +ttB +pdp +xiV aag twB bdH @@ -93681,9 +93790,9 @@ aaa bdH aad aag -tNf -fvs -neX +nBJ +eQR +xAu bBA bAN bCY @@ -93707,9 +93816,9 @@ bPo bPG acs bBA -edx -kuI -tQN +xHX +sGK +wid aag ajZ bdH @@ -93778,9 +93887,9 @@ bdH bdH aad aag -ocS -nMT -sjC +lrE +vOM +gkr lrq kui uqo @@ -93788,8 +93897,8 @@ pId qMD uqo lrq -sYi -sYE +wzg +oqN tpn gIU xIq @@ -93814,9 +93923,9 @@ nYd thL jVa fgR -pwx -tyH -pqG +nEc +oDh +cPj aag ajZ bdH @@ -93884,9 +93993,9 @@ aaa bdH aad aag -tNf -cCG -iWW +nBJ +ldF +eox bBA bAO bCZ @@ -93910,9 +94019,9 @@ bDW bPJ iuz bBA -aGh -bjh -tQN +mVh +uMf +wid aag ajZ bdH @@ -93981,18 +94090,18 @@ bdH bdH aad aag -ocS -lFv -pjr +lrE +etN +xkc lrq sEZ nqe nqe nqe nqe -vcL -eRL -wfB +mza +sDp +hkr tpn tpn tpn @@ -94017,9 +94126,9 @@ liZ rUk jVa fgR -xGv -tht -pqG +azg +gKv +cPj aag rEr bdH @@ -94087,9 +94196,9 @@ aaa bdH aad aag -tNf -cCG -fvs +nBJ +ldF +eQR bBA bAP aqu @@ -94113,9 +94222,9 @@ aqu aqu bQz bBA -kuI -tDw -tQN +sGK +vOG +wid aag ajZ bdH @@ -94184,9 +94293,9 @@ bdH bdH aad aag -ocS -sjC -pjr +lrE +gkr +xkc lrq dEX fxJ @@ -94194,13 +94303,13 @@ fxJ fAr qmU lrq -hZU -cWs -fAE -kHa -frX -mHA -kHa +tmG +hPx +qHP +kxU +xIO +sLT +kxU snX oIh oIh @@ -94220,9 +94329,9 @@ uaU rUk xaM fgR -tDq -xXu -pqG +hIG +pdp +cPj aag ajZ bdH @@ -94290,9 +94399,9 @@ aaa bdH aad aag -tNf -uAN -cCG +nBJ +vCE +ldF bBA bBu amg @@ -94316,9 +94425,9 @@ amg amg rAD bBA -kuI -aGh -tQN +sGK +mVh +wid aag ajZ bdH @@ -94387,9 +94496,9 @@ bdH bdH aad aag -sOq -pjr -pjr +uDg +xkc +xkc lrq iwV iwV @@ -94397,13 +94506,13 @@ iwV iwV lrq lrq -gob -cWs -irF -kHa -rEQ -xmX -eGr +nCZ +hPx +nkA +kxU +kwX +dXm +bvu wdF wdF wdF @@ -94423,9 +94532,9 @@ uxa iZU nhG xkd -tyH -qnN -lFL +oDh +uqg +xiV aag uJk bdH @@ -94493,9 +94602,9 @@ aaa bdH aad aag -tNf -pTQ -fvs +nBJ +amu +eQR bBA bBu amg @@ -94519,9 +94628,9 @@ amg amg rAD bBA -oac -eEq -tQN +ozH +flr +wid aag ajZ bdH @@ -94590,9 +94699,9 @@ bdH bdH aad aag -sOq -sjC -lgM +uDg +gkr +old cQv oVf rmx @@ -94600,13 +94709,13 @@ bvH evR cQv cQv -vtD -rAX -kHa -kHa -lRe -mvR -kHa +maB +qoX +kxU +kxU +ePA +kEw +kxU tzd tzd sgi @@ -94626,9 +94735,9 @@ tov thL sUs xkd -pVg -xXu -lFL +gNZ +pdp +xiV aag ajZ bdH @@ -94696,9 +94805,9 @@ aaa bdH aad aag -tNf -bHC -fvs +nBJ +kMW +eQR bBA bBv aqu @@ -94722,9 +94831,9 @@ tkq aqu bQG bBA -irA -aGh -tQN +uoO +mVh +wid aag ajZ bdH @@ -94793,9 +94902,9 @@ bdH bdH aad aag -ocS -sjC -ogi +lrE +gkr +wJC cQv cBw kde @@ -94803,13 +94912,13 @@ kde ajj mZQ cQv -vgW -igt -swn -rpF -tQm -ond -swn +nNW +bWD +esq +ked +huN +sqO +esq gHt oIh eNR @@ -94829,9 +94938,9 @@ tov thL xhx fgR -tyH -xXu -pqG +oDh +pdp +cPj aag scz bdH @@ -94899,9 +95008,9 @@ aaa bdH aad aag -tNf -eYN -fvs +nBJ +iWJ +eQR bBA bBx amg @@ -94925,9 +95034,9 @@ bPq amg rAD bBA -kuI -ucU -tQN +sGK +nhV +wid aag ajZ bdH @@ -94996,9 +95105,9 @@ bdH bdH aad aag -ocS -sjC -eDN +lrE +gkr +wMF cQv eaf bEv @@ -95006,13 +95115,13 @@ quj vgi rXd cqJ -ldu -igt -swn -dfO -dQv -doj -swn +ibl +bWD +esq +iFS +mIZ +gWi +esq neC mjt vqc @@ -95032,9 +95141,9 @@ iFc thL tUx fgR -xXu -tDq -pqG +pdp +hIG +cPj aag ajZ bdH @@ -95102,9 +95211,9 @@ aaa aac aag aag -tNf -tzw -pcY +nBJ +dKS +ffN bBA bBy amg @@ -95128,9 +95237,9 @@ aoa amg bQE bBA -dkR -kuI -tQN +bME +sGK +wid aag aag ajY @@ -95199,9 +95308,9 @@ bdH bdH aad aag -ocS -pjr -lYZ +lrE +xkc +vDh cQv eaf bEv @@ -95209,13 +95318,13 @@ lEe pGT pGT vkM -sjc -xYS -kHa -qPO -wuc -qPO -qPO +sXx +lFd +kxU +rCd +aSz +rCd +rCd ptq oRk eNR @@ -95235,9 +95344,9 @@ thL thL tUx fgR -xXu -rlY -pqG +pdp +aCA +cPj aag okD bdH @@ -95304,10 +95413,10 @@ aaa aaa aad aag -tNf -tNf -fvs -phn +nBJ +nBJ +eQR +bTW bBA bBz aqu @@ -95331,10 +95440,10 @@ bEx aqu bQI bBA -xTQ -kuI -tQN -tQN +gsy +sGK +wid +wid aag ajZ aaa @@ -95402,9 +95511,9 @@ bdH bdH aad aag -sOq -pjr -pjr +uDg +xkc +xkc cQv eaf bEv @@ -95412,13 +95521,13 @@ vyH ajj rXd cqJ -ldu -igt -swn -plI -dQv -lNN -qPO +ibl +bWD +esq +jFP +mIZ +bPb +rCd emp emp emp @@ -95438,9 +95547,9 @@ thL thL tUx xkd -xXu -xNY -lFL +pdp +vhA +xiV aag ajZ bdH @@ -95507,10 +95616,10 @@ aaa aaa aad aag -tNf -cCG -cCG -oVn +nBJ +ldF +ldF +xiP bBA lsV amg @@ -95534,10 +95643,10 @@ bPC amg pyL bBA -nrG -kuI -ucU -tQN +cDb +sGK +nhV +wid aag ajZ bdH @@ -95605,9 +95714,9 @@ bdH bdH aad aag -sOq -naN -pjr +uDg +lDT +xkc cQv eaf bEv @@ -95615,13 +95724,13 @@ sBg uGN rXd cQv -gax -igt -swn -vsM -dQv -ebv -qPO +uEd +bWD +esq +lCN +mIZ +sge +rCd cFC oIh lUm @@ -95641,9 +95750,9 @@ thL thL tUx xkd -xXu -tyH -lFL +pdp +oDh +xiV aag ajZ bdH @@ -95709,11 +95818,11 @@ aaf aaf aaf aag -tNf -tNf -cCG -fvs -grf +nBJ +nBJ +ldF +eQR +uFp bBA bBA tiR @@ -95730,18 +95839,18 @@ cmJ alU alU alU -tYu -tYu -tYu -tYu -xqj -tYu -tYu -hNJ -aGh -kuI -tQN -tQN +pzW +pzW +pzW +pzW +hNB +pzW +pzW +ipB +mVh +sGK +wid +wid aag aaf aaf @@ -95808,9 +95917,9 @@ bdH bdH aad aag -sOq -sjC -vtH +uDg +gkr +qsp cQv xLl bEv @@ -95818,13 +95927,13 @@ kde ajj tuk cQv -rzY -igt -swn -skq -dQv -hhW -qPO +sTe +bWD +esq +dNm +mIZ +asd +rCd ehX mTN hZJ @@ -95844,9 +95953,9 @@ tUx vsz oEE xkd -pVg -xXu -lFL +gNZ +pdp +xiV aag ajZ bdH @@ -95909,18 +96018,18 @@ aaa aaa aad aag -tNf -tNf -tNf -tNf -cCG -cCG -oZF -oZF -oZF -hLW -bOy -cLk +nBJ +nBJ +nBJ +nBJ +ldF +ldF +bos +bos +bos +haR +uHT +jHn kcp bWJ nar @@ -95933,21 +96042,21 @@ aoi grG bXY alU -cFN -wzJ -niW -kpr -xac -dKq -iZy -iZy -iZy -aGh -kuI -tQN -tQN -tQN -tQN +xNM +ikl +eLp +dFM +lEV +mZP +sDx +sDx +sDx +mVh +sGK +wid +wid +wid +wid aag ajZ aaa @@ -96010,10 +96119,10 @@ aaa bdH bdH aad -sOq -sOq -pjr -vnU +uDg +uDg +xkc +eeA cQv dzG kde @@ -96021,13 +96130,13 @@ ioV cQv tlk cQv -cxA -suc -qPO -qPO -wuc -qPO -qPO +tzK +frG +rCd +rCd +aSz +rCd +rCd mFc eKa emp @@ -96041,16 +96150,16 @@ bQc pgP uVV iBl -wIC -smZ -smZ -wIC -tMH -wIC -cBQ -xXu -lFL -lFL +oGl +wgM +wgM +oGl +czm +oGl +pRs +pdp +xiV +xiV ajZ bdH bdH @@ -96112,18 +96221,18 @@ aaa aaa aad aag -tNf -naW -cCG -fvs -cCG -eFI -oZF -luJ -bOy -nrh -bOy -jrN +nBJ +fUz +ldF +eQR +ldF +ikA +bos +gpO +uHT +bKP +uHT +sGQ kcp wMv nCR @@ -96136,21 +96245,21 @@ aoi bNk ecZ alU -qyL -wzJ -hnP -jap -jap -jap -xac -iqe -iZy -aGh -ffX -aGh -lHV -ftA -tQN +odt +ikl +qAy +mua +mua +mua +lEV +eQz +sDx +mVh +fJu +mVh +roj +qzA +wid aag ajZ aaa @@ -96213,20 +96322,20 @@ aaa bdH bdH aad -sOq -vvj -sjC -mzk +uDg +hzN +gkr +krG cQv rdM gUg cov cqJ -hNl -tak -uhW -uJs -tsX +uRx +iqO +hHK +tlm +aii ngr cDN peO @@ -96244,16 +96353,16 @@ emp lFJ emp emp -wIC -puE -crp -dco -dqZ -wIC -fGB -tyH -xXu -lFL +oGl +uVF +voa +fOm +clD +oGl +uxb +oDh +pdp +xiV ajZ bdH bdH @@ -96315,14 +96424,14 @@ aaa aaa aad aag -tNf -cvL -cCG -fvs -cCG -sep -oZF -luJ +nBJ +lJM +ldF +eQR +ldF +lyP +bos +gpO kcp kcp iqp @@ -96339,21 +96448,21 @@ cmJ alU alU alU -eyq -wIP -eMp -kbN -oil -oil -oil -hqg -iZy -laB -aGh -kuI -kuI -ucU -tQN +wrr +kjw +hBr +tqQ +hgp +hgp +hgp +nef +sDx +mXm +mVh +sGK +sGK +nhV +wid aag ajZ aaa @@ -96416,20 +96525,20 @@ aaa bdH bdH aad -sOq -vEq -sjC +uDg +fHb +gkr vxM vxM vxM vxM vxM vxM -qlS -eRL -eRL -uJs -tsX +tjI +sDp +sDp +tlm +aii tdy cDN oFY @@ -96447,16 +96556,16 @@ qUz ksg oIh iTl -wIC -cBZ -hMc -vAG -jIo -wIC -wIC -tyH -xXu -lFL +oGl +gmm +bYp +bHw +fpO +oGl +oGl +oDh +pdp +xiV ajZ bdH bdH @@ -96518,14 +96627,14 @@ aaa aaa aad aag -tNf -fvs -fvs -cCG -fvs -hdO -oZF -luJ +nBJ +eQR +eQR +ldF +eQR +sxS +bos +gpO kcp bBD bTS @@ -96533,30 +96642,30 @@ bTS lxo qcy kcp -pHk -pHk -mLy -jfe -mYp -aTc -kXb -aTc -dSg -hLA -riG -iPp -iPp -iPp -iPp -iPp -oth +sub +sub +tqf +pHF +vYd +ghF +eSp +ghF +aFG +pPQ +juS +mdk +mdk +mdk +mdk +mdk +kCd bSv bSv bSv bSv bSv -kuI -tQN +sGK +wid aag ajZ aaa @@ -96619,20 +96728,20 @@ aaa bdH bdH aad -sOq -pjr -sjC +uDg +xkc +gkr vxM rfY kGu iqR fyp wJh -ldu -eRL -eRL -uJs -diP +ibl +sDp +sDp +tlm +vNs tff cDN oFY @@ -96650,16 +96759,16 @@ oDy wsq vxK gwj -rCU -jPS -jPS -sJm -dqZ -rDY -wIC -xXu -wkw -lFL +xPi +iiX +iiX +pPn +wzE +mGV +oGl +pdp +kIf +xiV ajZ bdH bdH @@ -96721,14 +96830,14 @@ aaa aaa aad aag -tNf -cCG -cCG -dzU -vAB -gsA -oZF -bOy +nBJ +ldF +ldF +wcJ +jCr +nQn +bos +uHT kcp bTR iEg @@ -96736,30 +96845,30 @@ oQM aqI aqI kcp -crX -iAf -aiI -kps -xec -xec -xec -xec -dSg -ame -rHm -niN -niN -niN -niN -niN -qRi +bOw +mYt +jsR +vPW +vyB +vyB +vyB +vyB +aFG +vFp +yaX +sje +sje +sje +sje +sje +jhS qih bTH foN cDZ bSv -lGZ -tQN +hLu +wid aag ajZ aaa @@ -96822,20 +96931,20 @@ aaa bdH aac aag -sOq -oAr -pjr +uDg +kac +xkc vxM tQi wee wee fRS wJh -yeu -sjc -rVm -mMZ -aDM +oOG +sXx +oEA +jEk +joN oSC uFq wsl @@ -96853,16 +96962,16 @@ mBx utZ pyj jPP -wIC -xpo -xqs -rWF -uSB -lzY -wIC -xXu -xjh -lFL +oGl +aIN +uyn +neh +hco +fGU +oGl +pdp +ome +xiV aag ajY bdH @@ -96924,14 +97033,14 @@ aaa aaa aad aag -tNf -qqi -cCG -oZF -oZF -oZF -oZF -bOy +nBJ +ecS +ldF +bos +bos +bos +bos +uHT kcp lxW hPh @@ -96939,30 +97048,30 @@ wGX bFr ppe kcp -xac -aTc -aTc -iZN -fob -fob -fob -fob -tNm -pwe -oKA -niN -niN -niN -niN -niN -qRi +lEV +ghF +ghF +jak +jdC +jdC +jdC +jdC +wiQ +dEo +fGd +sje +sje +sje +sje +sje +jhS bSv tjw bTH bTV bSv -kuI -tQN +sGK +wid aag ajZ aaa @@ -97025,20 +97134,20 @@ bdH bdH aad aag -sOq -eUe -vtH +uDg +fco +qsp vxM jvP rDQ rDQ rDQ ctT -mLJ -bua -ybU -vBm -tsX +rgQ +iOx +xDu +aii +aii tsX tsX epu @@ -97059,13 +97168,13 @@ lnh wIC rWn rWn -wIC -wIC -wHM -wIC -pEp -rlY -lFL +oGl +oGl +kfa +oGl +dJy +aCA +xiV aag ajZ bdH @@ -97127,14 +97236,14 @@ aaa aaa aad aag -tNf -fvs -cCG -oZF -uDl -eZK -oZF -gzE +nBJ +eQR +ldF +bos +vkO +ibf +bos +rIw kcp wTN kZN @@ -97142,30 +97251,30 @@ rgK hbu iYe bJl -rMh -rMh -rMh -cPV -xac -xac -xac -xac -dSg -jap -rHm -niN -niN -ngu -niN -niN -nxL +yfd +yfd +yfd +kgS +lEV +lEV +lEV +lEV +aFG +mua +yaX +sje +sje +oiX +sje +sje +rqQ bSv ifb bTH bSv xVT -eEq -tQN +flr +wid aag ajZ aaa @@ -97228,19 +97337,19 @@ bdH bdH aad aag -sOq -naN -pjr +uDg +lDT +xkc vxM sbP sbP sbP sbP wJh -ekF -uif -vBm -vBm +heg +wIR +aii +aii tHr mqg udR @@ -97254,7 +97363,7 @@ xuZ xuZ xuZ rEY -lfa +gxU giR vUP wIC @@ -97263,12 +97372,12 @@ dgx fKi vxG wIC -xgI -dBQ -wIC -gOu -tDq -lFL +puz +meG +oGl +oLf +hIG +xiV aag ajZ bdH @@ -97330,14 +97439,14 @@ aaa aaa aad aag -tNf -cCG -fvs -oZF -ueH -oTn -oZF -luJ +nBJ +ldF +eQR +bos +lBl +nEO +bos +gpO kcp oMi bAZ @@ -97345,30 +97454,30 @@ bTS bTS niR kcp -xac -aTc -aTc -jfe -xac -aTc -aTc -aTc -dSg -jap -dbH -niN -niN -niN -niN -niN -qRi +lEV +ghF +ghF +pHF +lEV +ghF +ghF +ghF +aFG +mua +hoc +sje +sje +sje +sje +sje +jhS bSv aIX aIX bSv -gib -yjl -tQN +xcI +sIu +wid aag ajZ aaa @@ -97431,18 +97540,18 @@ bdH bdH aad aag -sOq -pjr -sjC +uDg +xkc +gkr vxM pas ncf kjk qxr wJh -ekF -ugT -qqC +heg +sZX +dfU ceZ jnD hUW @@ -97466,12 +97575,12 @@ jPS jPS xrt wIC -qqV -nNg -wIC -tyH -yef -lFL +gUC +rvf +oGl +oDh +xas +xiV aag ajZ bdH @@ -97533,14 +97642,14 @@ aaa aaa aad aag -tNf -cCG -fvs -jtv -luJ -luJ -oZF -luJ +nBJ +ldF +eQR +rqv +gpO +gpO +bos +gpO kcp kcp kcp @@ -97548,30 +97657,30 @@ sXE kcp kcp kcp -xac -xec -xec -jfe -xac -aTc -xec -xec -dSg -fAo -rHm -niN -niN -niN -niN -niN -qRi +lEV +vyB +vyB +pHF +lEV +ghF +vyB +vyB +aFG +pJq +yaX +sje +sje +sje +sje +sje +jhS bSv cop cop bSv -oLa -kuI -tQN +kxe +sGK +wid aag ajZ aaa @@ -97634,18 +97743,18 @@ bdH bdH aad aag -sOq -pjr -sjC +uDg +xkc +gkr vxM vxM vxM vxM vxM gaJ -hmG -xys -vBm +pva +mne +qDT vGA hUW dHd @@ -97669,12 +97778,12 @@ qFi vAG hsj wIC -wIC -wIC -wIC -tyH -pwx -lFL +oGl +oGl +oGl +oDh +nEc +xiV aag ajZ bdH @@ -97736,45 +97845,45 @@ aaa aaa aad aag -tNf -cCG -fvs -oZF -vfn -luJ -oZF -luJ -jSz +nBJ +ldF +eQR +bos +iWH +gpO +bos +gpO +nEZ kcp bTU gZK bTS lyX kcp -siB -aTc -xec -jfe -xac -aTc -xec -aTc -dSg -hLA -riG -cez -cez -cez -cez -cez -oth +rMj +ghF +vyB +pHF +lEV +ghF +vyB +ghF +aFG +pPQ +juS +jjl +jjl +jjl +jjl +jjl +kCd bSv kBY bTn bSv -aGh -aGh -tQN +mVh +mVh +wid aag ajZ aaa @@ -97837,18 +97946,18 @@ aaf aaf aag aag -sOq -tnD -pjr -ugt -pjr -ixl -vBm -tJM -viH -lCp -ttE -vBm +uDg +cUl +xkc +ode +xkc +gNg +qDT +jTK +bjp +eyc +gMw +qDT iuE uwN vka @@ -97872,12 +97981,12 @@ jhI jfY bra wIC -ssx -sdP -htn -tyH -xXu -lFL +eQm +rXQ +vky +oDh +pdp +xiV aag aag aaf @@ -97935,53 +98044,53 @@ aaa aaa aaa aaa -tNf -tNf -tNf -tNf -tNf -fvs -cCG -oZF -oZF -fCG -oZF -bOy -nkR +nBJ +nBJ +nBJ +nBJ +nBJ +eQR +ldF +bos +bos +olW +bos +uHT +gUi kcp onY wdf bTS kcp kcp -iZy -aTc -xec -jfe -xac -aTc -xec -aTc -iZy -jeu -fyi -rxr -oZv -toz -toz -toz -pYh +sDx +ghF +vyB +pHF +lEV +ghF +vyB +ghF +sDx +prl +gNy +fbU +vbZ +qEl +qEl +qEl +vWs bSv bSv bSv bSv -kuI -aGh -tQN -tQN -tQN -tQN -tQN +sGK +mVh +wid +wid +wid +wid +wid aaa aaa aaa @@ -98041,17 +98150,17 @@ adG adG adG adG -xKo -pfy -ugt -sjC -sjC -vBm -vBm -vBm -vfw -occ -vBm +rvI +cYo +ode +gkr +gkr +qDT +qDT +qDT +arQ +fAZ +qDT udK mwA lnt @@ -98075,11 +98184,11 @@ jES vBJ qTQ wIC -tyH -xXu -htn -xXu -xZs +oDh +pdp +vky +pdp +paJ tuA tuA tuA @@ -98138,53 +98247,53 @@ aaa aaa aaa aaa -tNf -cCG -sic -ydR -fvs -fvs -fvs -cCG -gPs -ydR -qiD -bOy -bxZ +nBJ +ldF +jsE +rdN +eQR +eQR +eQR +ldF +sXq +rdN +rMO +uHT +hfv kcp xNz utK rKA kcp kcp -iZy -mBX -xec -jfe -xac -aTc -xec -kki -iZy -fio -xec -hHs -gyc -vDK -xec -xac -lcZ -eIe -aGh -ixc -kuI -aGh -aGh -aGh -kuI -xow -kuI -tQN +sDx +hIF +vyB +pHF +lEV +ghF +vyB +kEW +sDx +xHl +vyB +mQd +akn +vTM +vyB +lEV +meE +gGw +mVh +iBu +sGK +mVh +mVh +mVh +sGK +gDX +sGK +wid aaa aaa aaa @@ -98247,14 +98356,14 @@ akC akC akC akC -sLs -sjC -vBm -mvE -tak -lCp -iLo -vBm +uvp +gkr +qDT +otl +iRC +eyc +bqK +qDT bmz wSR mMV @@ -98278,8 +98387,8 @@ vAG opF pDW wIC -tyH -iJb +oDh +lhj kCi kCi kCi @@ -98341,16 +98450,16 @@ aaa aaa aaa aaa -hEg -rPc -iGz -iGz -iGz -iGz -iGz -iGz -iGz -iGz +fwK +cZB +uaG +uaG +uaG +uaG +uaG +uaG +uaG +uaG bcm bcm kcp @@ -98360,34 +98469,34 @@ kcp kcp kcp kcp -iZy -ggC -sPI -bak -vjL -ggC -sPI -ggC -iZy -iZy -iZy -iZy -iZy -iZy -iZy -iZy -iZy -iZy -yaS -yaS -wsF -yaS -yaS -yaS -yaS -yaS -vSu -pPR +sDx +lQB +qax +jTH +gPU +lQB +qax +lQB +sDx +sDx +sDx +sDx +sDx +sDx +sDx +sDx +sDx +sDx +rgt +rgt +sYr +rgt +rgt +rgt +rgt +rgt +ctw +hAh aaa aaa aaa @@ -98450,14 +98559,14 @@ sFf bbV bzz akC -qoj -sjC -vBm -qkn -eRL -lwK -vlN -vBm +pzc +gkr +qDT +pXh +wwt +oNG +eTM +qDT pZS pEB jUY @@ -98481,8 +98590,8 @@ vzj wIC wIC wIC -tyH -mWh +oDh +nYi kCi sDD kOv @@ -98544,16 +98653,16 @@ aaa aaa aaa aaa -hEg -mnz -iGz -vCM -ecm -nkp -bNK -ivY -ecm -iGz +fwK +elY +uaG +vjk +lxd +dPk +nBV +dyq +lxd +uaG lYN byr aXh @@ -98581,16 +98690,16 @@ aXj qUh xyw ccG -yaS -vFa -dCf -pWR -rrO -tLj -pye -yaS -rKI -pPR +rgt +gMS +vXF +hsc +epk +lwG +uJb +rgt +wRf +hAh aaa aaa aaa @@ -98653,14 +98762,14 @@ nIt adu aHZ akC -naN -sjC -vBm -rJN -nJz -wgi -rEO -vBm +lDT +gkr +qDT +dJB +nVH +ifR +iio +qDT vkR wsD jUY @@ -98684,8 +98793,8 @@ aTg rFg kkv wIC -xXu -xXu +pdp +pdp kCi uAj qfa @@ -98747,16 +98856,16 @@ aaa aaa aaa aaa -oFW -lxO -oFW -gic -cZX -wlv -cZX -rQX -jtS -fMB +okd +lql +okd +urk +fmZ +ePq +fmZ +cqd +jhc +eml btO aYt bzQ @@ -98784,16 +98893,16 @@ bVM bVM bwn bVM -agh -jvO -gcF -nTB -xYi -nTB -gAY -xnr -jvv -egn +oTH +kUA +gRJ +mqB +vjG +mqB +oQw +avp +oAa +efk aaa aaa aaa @@ -98856,14 +98965,14 @@ nkx bbZ btv akC -isz -sjC -vBm -vBm -knO -wgi -ugT -vBm +lCm +gkr +qDT +qDT +cqZ +ifR +vNV +qDT kfE wsD jUY @@ -98887,8 +98996,8 @@ aTg wIC wIC wIC -xXu -vcl +pdp +iEa kCi eqI ssZ @@ -98950,16 +99059,16 @@ aaa aaa aaa aaa -oFW -lxO -oFW -jeW -jtS -hbP -xQq -umf -cOC -fMB +okd +lql +okd +nDb +jhc +ccL +rDf +xZM +mnc +eml btO aYt aYt @@ -98987,16 +99096,16 @@ aYt aYt aYt btO -gIK -efd -rzG -wSd -uGI -sdz -uBX -egn -hUr -egn +tpG +wdQ +ybP +dhQ +dcx +mLg +wAK +efk +bTz +efk aaa aaa aaa @@ -99059,14 +99168,14 @@ pvP adu aHZ akC -myy -dwX -sBD -vBm -rRr -dFU -fnC -vBm +jdn +lgk +hMM +qDT +vHf +vMZ +tpx +qDT xDn pEB jUY @@ -99089,9 +99198,9 @@ wtY aTg jIT wIC -rlY -xXu -xXu +aCA +pdp +pdp kCi nwW btD @@ -99153,16 +99262,16 @@ aaa aaa aaa aaa -oFW -lxO -oFW -jeW -jtS -jtS -jtS -rQP -rNZ -fMB +okd +lql +okd +nDb +jhc +jhc +jhc +vOV +eAm +eml btO aYu aYu @@ -99190,16 +99299,16 @@ aYu aYu aYu btO -gIK -nvE -efh -sdz -sdz -sdz -uBX -egn -hUr -egn +tpG +hbA +uky +mLg +mLg +mLg +wAK +efk +bTz +efk aaa aaa aaa @@ -99262,14 +99371,14 @@ adu adu aHZ akC -soC -xkE -soC -vBm -hqU -gcT -oPp -vBm +pek +rir +pek +qDT +xem +wxO +eRX +qDT nNv pEB jUY @@ -99292,9 +99401,9 @@ yeR aTg nNg wIC -apx -wfd -apx +pjz +uTs +pjz kCi nRR btD @@ -99356,16 +99465,16 @@ aaa aaa aaa aaa -oFW -lxO -oFW -snC -lWq -mnD -dKS -rqL -wTF -sXJ +okd +lql +okd +bRt +oGm +hPD +aIy +ekR +gWm +mpV bvf bdL bvf @@ -99393,16 +99502,16 @@ bvf bvf bdL bvf -hak -nWZ -mpt -tCv -ueX -pZa -dRV -egn -hUr -egn +srh +gKo +fsf +fuU +cnI +qfq +vjT +efk +bTz +efk aaa aaa aaa @@ -99465,14 +99574,14 @@ nIt adu hxG akC -sUI -ihF -xLp -vBm -vBm -vBm -vBm -vBm +ibP +loE +cmr +qDT +qDT +qDT +qDT +qDT xSz pEB jUY @@ -99495,9 +99604,9 @@ wIC wIC wIC wIC -pVK -tqG -mGE +hrI +ioM +xCy kCi nNt vqC @@ -99559,16 +99668,16 @@ aaa aaa aaa aaa -hEg -lli -iGz -eQq -ecm -wgY -krq -ivY -ecm -iGz +fwK +jru +uaG +vaM +lxd +cif +jaz +dyq +lxd +uaG vCg bHB xyw @@ -99596,16 +99705,16 @@ xyw xyw bHB osx -yaS -umn -qLb -bbF -nHl -tLj -pye -yaS -kaw -pPR +rgt +qTu +wlD +gTk +qSI +lwG +uJb +rgt +oCa +hAh aaa aaa aaa @@ -99668,10 +99777,10 @@ wmg adu cqQ afT -gRB -jfn -oyg -rRg +txy +rbp +cri +euL hiM hiM qRj @@ -99697,10 +99806,10 @@ xuZ pcj hXm fZq -kXV -wbT -xJK -xJK +iFA +sLx +twQ +twQ bpd bqT vZv @@ -99762,16 +99871,16 @@ aaa aaa aaa aaa -hEg -rPc -iGz -iGz -iGz -iGz -iGz -iGz -coQ -jhN +fwK +cZB +uaG +uaG +uaG +uaG +uaG +uaG +hte +lma xyw bHB xyw @@ -99800,15 +99909,15 @@ xyw bHB xyw bcm -vAw -vAw -vAw -vAw -vAw -vAw -vAw -xsc -pPR +hOV +hOV +hOV +hOV +hOV +hOV +hOV +vVZ +hAh aaa aaa aaa @@ -99871,10 +99980,10 @@ pvP adu frF akC -skO -xLp -lAX -tCi +oUt +cmr +iPq +aMf vka vka mPj @@ -99896,14 +100005,14 @@ awz vSN mPj rWs -hIh +inh ewr lPC mgy -hCv -asV -cxi -hLD +qoN +tVx +feG +pPy kCi nRR btM @@ -99965,16 +100074,16 @@ aaa aaa aaa aaa -wZa -lqd -nqC -wcx -nhU -ybq -mch -fGG -wBl -sbb +sGw +nmp +eWs +usq +rQw +pOH +sbt +smU +nZR +lpl xyw bHB gjm @@ -100003,15 +100112,15 @@ bcb bHB btO bcm -sBP -eVY -nrD -xUb -spn -sWy -vAw -fgA -sNF +sCW +nvX +tTC +jdu +tWd +aPe +hOV +ygv +kyP aaa aaa aaa @@ -100075,10 +100184,10 @@ tyK iKI akC akC -tCi -fwT -hAd -hAd +aMf +hSv +xoB +xoB kzy wIQ jHh @@ -100102,11 +100211,11 @@ vka jHh lnt ckP -izT -izT -aWY -uFb -izT +xTx +xTx +cyv +eKZ +xTx kCi cfk uws @@ -100168,16 +100277,16 @@ aaa aaa aaa aaa -wZa -uJT -nqC -kWG -hDA -qvl -bQF -gqy -jWn -yeO +sGw +klT +eWs +njO +riC +eqd +goY +fqJ +nOX +xcV xyw bHB wqh @@ -100206,15 +100315,15 @@ bcc bHB aYt bcm -aFx -nrD -nrD -nrD -nrD -nrD -vUs -cUf -sNF +xsQ +tTC +tTC +tTC +tTC +tTC +iho +uKH +kyP aaa aaa aaa @@ -100277,12 +100386,12 @@ akC akC akC akC -paN -xLp -lAX -qEa -hAd -hAd +ehM +cmr +iPq +oQJ +xoB +xoB vSN jHh lnt @@ -100304,12 +100413,12 @@ sTo wIQ jHh jUY -izT -izT -pVK -asV -cxi -sCs +xTx +xTx +hrI +tVx +feG +bxY kCi kCi kCi @@ -100371,16 +100480,16 @@ aaa aaa aaa aaa -wZa -jca -ezR -veX -veX -veX -veX -duX -dCb -yeO +sGw +xzB +bfs +bYW +bYW +bYW +bYW +kNf +vpT +xcV xyw bHB sXB @@ -100409,15 +100518,15 @@ fVz bHB bBN bcm -vUW -nrD -nrD -nrD -nrD -voo -vAw -qip -sNF +uPQ +tTC +tTC +tTC +tTC +gzN +hOV +uXm +kyP aaa aaa aaa @@ -100477,15 +100586,15 @@ adG adG adG adG -pbd -xLp -bUJ -xLp -xLp -lAX -qEa -rXM -hAd +ltw +cmr +oRm +cmr +cmr +iPq +oQJ +pcc +xoB xDn uwN wiN @@ -100507,15 +100616,15 @@ awz oWg uwN jUY -izT -hTj -pVK -mSG -ois -xnG -vef -cxi -tkX +xTx +lym +hrI +lIQ +noy +rcG +lwY +feG +kfB tuA tuA tuA @@ -100574,16 +100683,16 @@ aaa aaa aaa aaa -wZa -jca -ezR -fKv -mot -ndc -veX -cIl -dej -yeO +sGw +xzB +bfs +qfQ +cJm +jwi +bYW +phw +xMG +xcV xyw bHB aZO @@ -100612,15 +100721,15 @@ bGF bHB aYt bcm -oMp -nrD -rRP -tqs -ciO -hAu -vAw -wXb -sNF +vKI +tTC +hhd +ybm +ffq +rsV +hOV +mLN +kyP aaa aaa aaa @@ -100679,16 +100788,16 @@ aag aag aag aag -btL -xLp -rTj -uNd -cET -cET -hyj -xLp -oTN -hAd +cZe +cmr +lSX +uaA +snx +snx +fLt +cmr +fYr +xoB pNa iCu awz @@ -100710,16 +100819,16 @@ awz ceE eMP faX -izT -reF -tqG -bjH -tqG -mSG -lGW -pep -bBp -teI +xTx +tIX +ioM +abn +ioM +lIQ +qOY +xZH +mSr +nLp aag aag aag @@ -100777,16 +100886,16 @@ aaa aaa aaa aaa -wZa -jca -ezR -xwU -sIw -bVk -veX -djW -djW -lmy +sGw +xzB +bfs +wVN +qxI +qmM +bYW +wFN +wFN +tGH hmy bHB aZP @@ -100815,15 +100924,15 @@ bGG bHB btO bcm -odT -nrD -nrD -nrD -nrD -nrD -vAw -cUf -sNF +kQr +tTC +tTC +tTC +tTC +tTC +hOV +uKH +kyP aaa aaa aaa @@ -100882,9 +100991,9 @@ aag aag aag aag -btL -lZD -vIE +cZe +cCL +vDz kcH kcH kcH @@ -100920,9 +101029,9 @@ aES aES aES aES -mSG -pep -teI +lIQ +xZH +nLp aag aag aag @@ -100980,16 +101089,16 @@ aaa aaa aaa aaa -wZa -tXA -ezR -fiz -sIw -sIw -cWt -sIw -sIw -iny +sGw +onv +bfs +pjh +qxI +qxI +iXm +qxI +qxI +vvX xyw bHB aZQ @@ -101018,15 +101127,15 @@ bGH bHB btO bcm -lim -bOb -hvP -nrD -nrD -nrD -vAw -cUf -sNF +qhG +krJ +jOt +tTC +tTC +tTC +hOV +uKH +kyP aaa aaa aaa @@ -101082,12 +101191,12 @@ aaa aad aag aag -btL -btL -btL -btL -lAX -xLp +cZe +cZe +cZe +cZe +iPq +cmr kcH kcH kcH @@ -101123,12 +101232,12 @@ tKr uNg cLN aES -pVK -asV -teI -teI -teI -teI +hrI +tVx +nLp +nLp +nLp +nLp aag aag ajZ @@ -101183,16 +101292,16 @@ aaa aaa aaa aaa -wZa -jca -ezR -kGh -sIw -aDG -lnG -bCI -whX -qHZ +sGw +xzB +bfs +wes +qxI +dKO +ykv +jPu +qKl +pPd xyw bHB aZR @@ -101221,15 +101330,15 @@ bGI bHB xyw bcm -vyZ -nrD -nrD -nrD -nrD -cOy -vAw -raT -sNF +gOk +tTC +tTC +tTC +tTC +bjg +hOV +siT +kyP aaa aaa aaa @@ -101285,12 +101394,12 @@ aaa aad aag aag -btL -fyq -pcR -pbd -lAX -xLp +cZe +ivu +gSy +ltw +iPq +cmr kcH rlf soq @@ -101326,12 +101435,12 @@ iTD vCO vCO jxB -pVK -asV -pVK -pVK -pVK -teI +hrI +tVx +hrI +hrI +hrI +nLp aag aag ajZ @@ -101386,16 +101495,16 @@ aaa aaa aaa aaa -wZa -gtF -ezR -ezR -ngc -ezR -ezR -nqC -nqC -nqC +sGw +dvD +bfs +bfs +sir +bfs +bfs +eWs +eWs +eWs xyw bHB aZO @@ -101423,16 +101532,16 @@ baI bGF bHB eEc -vAw -vAw -nrD -wkP -ade -nrD -hAu -vAw -raT -sNF +hOV +hOV +tTC +tSm +tcd +tTC +rsV +hOV +siT +kyP aaa aaa aaa @@ -101488,12 +101597,12 @@ aaa aad aag aag -btL -hpa -lyL -cET -yak -eAa +cZe +nHu +sit +snx +oVY +cGA kcH rBa nPs @@ -101529,12 +101638,12 @@ vCO vCO vCO jxB -cBz -tgh -kfV -qyw -tcn -teI +gUu +dWc +lVW +kcs +rDH +nLp aag aag ajZ @@ -101589,16 +101698,16 @@ aaa aaa aaa aaa -wZa -rIG -nqC -xWI -jca -kXe -vJO -uKl -jsj -nqC +sGw +fea +eWs +rsS +xzB +mKs +sCT +rXU +rEt +eWs wlb bHB aZP @@ -101626,16 +101735,16 @@ baI bGG bHB bGK -qny -kYb -nGz -cSl -nMN -nrD -sGm -vAw -raT -sNF +rrh +xKG +gyH +rSx +dCz +tTC +lDA +hOV +siT +kyP aaa aaa aaa @@ -101691,18 +101800,18 @@ aaa aad aag aag -btL -rTj -kCo -xLp -xLp -jcs +cZe +lSX +nRE +cmr +cmr +sWw kcH rIW oGx wvU yiX -vLX +nrb hyQ aic aov @@ -101732,12 +101841,12 @@ wmT jhW mWD jxB -rgL -dNy -koa -asV -pVK -teI +xBK +moc +pYQ +tVx +hrI +nLp aag aag ajZ @@ -101792,16 +101901,16 @@ aaa aaa aaa aaa -wZa -gtF -vkQ -jca -gtF -jyU -gtF -jca -gtF -jUK +sGw +dvD +kWI +xzB +dvD +ipk +dvD +xzB +dvD +meT wqh bHB aZQ @@ -101829,16 +101938,16 @@ baI bGH bHB cuy -qny -slu -kXq -nrD -nrD -nrD -wIg -tcY -tVl -sNF +rrh +iNR +uCR +tTC +tTC +tTC +fca +vjS +xee +kyP aaa aaa aaa @@ -101892,12 +102001,12 @@ aaa aaa aaa aad -btL -btL -btL -ouy -xLp -xLp +cZe +cZe +cZe +vfS +cmr +cmr agj agj agj @@ -101937,12 +102046,12 @@ aES aES aES aES -qFr -fqP -pVK -teI -teI -teI +nVn +cZO +hrI +nLp +nLp +nLp ajZ aaa aaa @@ -101995,16 +102104,16 @@ aaa aac aaf aaf -wZa -jca -nqC -oqW -jca -jwa -uIZ -jsj -vJO -nqC +sGw +xzB +eWs +omx +xzB +rAw +qNK +rEt +sCT +eWs pyC bHB aZR @@ -102032,16 +102141,16 @@ baI bGI bHB kwQ -qny -slu -kXq -dvN -nrD -wJT -voo -vAw -cUf -sNF +rrh +iNR +uCR +rDR +tTC +wyz +gzN +hOV +uKH +kyP aaf aaf ajY @@ -102095,11 +102204,11 @@ aaa aaa aaa aad -huD -gRq -cmb -yai -xLp +tvt +fRg +peM +jUV +cmr agj agj jbN @@ -102136,16 +102245,16 @@ aVU aRq bHG ceK -aWj +sxD bhJ bHG aES aES -jLB -pVK -exx -nrg -vYk +fMU +hrI +dPd +rLH +rwZ ajZ aaa aaa @@ -102197,17 +102306,17 @@ aaa aaa aad aag -wZa -wZa -jca -nqC -nqC -nvA -nqC -nqC -nqC -nqC -nqC +sGw +sGw +xzB +eWs +eWs +sOr +eWs +eWs +eWs +eWs +eWs cCE bHB aZO @@ -102235,17 +102344,17 @@ baI bGF bHB iAw -vAw -vAw -nrD -nrD -nrD -xun -hAu -vAw -rLi -sNF -sNF +hOV +hOV +tTC +tTC +tTC +jRp +rsV +hOV +kzs +kyP +kyP aag ajZ aaa @@ -102298,11 +102407,11 @@ aaa aaa aaa aad -huD -esl -wBy -nRC -xLp +tvt +jhR +fix +pfL +cmr agj kyR agc @@ -102344,11 +102453,11 @@ bpe brS rOs aES -cGC -pVK -pVK -bxw -vYk +dWA +hrI +hrI +dPO +rwZ ajZ aaa aaa @@ -102400,17 +102509,17 @@ aaa aaa aad aag -wZa -gtF -jca -nqC -kbh -uwj -ede -hHz -iGf -wqs -iBk +sGw +dvD +xzB +eWs +kRU +dON +oJj +vLp +oYA +gWt +jHt amo bHB aZP @@ -102439,16 +102548,16 @@ bGG bHB btO xjW -rDC -nrD -nrD -nrD -kCN -nrD -vAw -iDD -rhf -sNF +uTk +tTC +tTC +tTC +cyR +tTC +hOV +qpV +hSb +kyP aag ajZ aaa @@ -102501,11 +102610,11 @@ aaa aaa aaa aad -huD -fcl -dXm -thK -bTL +tvt +oyX +vBC +rhm +she agj ogK qgr @@ -102547,11 +102656,11 @@ aES aES aES aES -vMw -htB -fII -fpj -vYk +tPc +jwq +vwU +uew +rwZ ajZ aaa aaa @@ -102603,17 +102712,17 @@ aaa aaa aad aag -wZa -gtF -jca -nqC -oVc -lad -kTF -hzp -qZj -qWG -iBk +sGw +dvD +xzB +eWs +irJ +bKk +kil +vnY +fCG +gYg +jHt gRP bHB aZQ @@ -102642,16 +102751,16 @@ bGH bHB btO bcm -gnI -nrD -nrD -uqW -nrD -dkv -vAw -cUf -lHU -sNF +gBU +tTC +tTC +efJ +tTC +sHe +hOV +uKH +vyr +kyP aag ajZ aaa @@ -102704,11 +102813,11 @@ aaa aaa aaa aad -btL -wEp -xLp -xLp -jQa +cZe +kwg +cmr +cmr +jkq agj nCx tYM @@ -102745,16 +102854,16 @@ ceK lcy iTw ceK -aWj +sxD bhJ bHG nis aES -cMk -asV -taM -tcn -teI +xGF +tVx +jne +rDH +nLp ajZ aaa aaa @@ -102806,22 +102915,22 @@ aaa aaa aad aag -wZa -ptr -pvv -nqC -mWl -vdB -xEI -mTK -hzp -nkJ -iBk +sGw +fzx +dWJ +eWs +yko +qlL +oxz +gnB +vnY +mRH +jHt xjK bHB btO bdU -hPf +aog bdU bfV baM @@ -102845,16 +102954,16 @@ bcb bHB aYt bcm -uDT -nrD -nrD -nrD -nrD -lRV -vAw -cUf -uTS -sNF +ohI +tTC +tTC +tTC +tTC +tml +hOV +uKH +hZZ +kyP aag ajZ aaa @@ -102907,11 +103016,11 @@ bdH aaa aaa aad -huD -szs -xLp -riI -nPF +tvt +gJf +cmr +hYE +vAz agj nXO hvH @@ -102953,11 +103062,11 @@ bpe brS cpj aES -jLa -asV -whv -tqG -vYk +hro +tVx +tNB +ioM +rwZ ajZ aaa aaa @@ -103009,17 +103118,17 @@ aaa aaa aad aag -wZa -gtF -lmW -nqC -pgx -hzp -tnT -kov -iBD -dmz -iBk +sGw +dvD +nsd +eWs +kqm +vnY +wjL +oGF +gKK +dBR +jHt bwl bHB xyw @@ -103048,16 +103157,16 @@ bcc bHB xyw bcm -prS -nrD -nrD -jJl -nrD -hAu -vAw -raT -vtL -sNF +grT +tTC +tTC +ove +tTC +rsV +hOV +siT +bUQ +kyP aag ajZ aaa @@ -103110,11 +103219,11 @@ bdH aaa aaa aad -huD -dlW -xLp -xxr -lAX +tvt +hsu +cmr +pFq +iPq agj dyj fnv @@ -103156,11 +103265,11 @@ aES aES aES aES -uyK -fqP -psl -tqG -vYk +uhh +cZO +ppG +ioM +rwZ ajZ aaa aaa @@ -103212,17 +103321,17 @@ aaa aaa aad aag -wZa -gtF -ykB -nqC -ncb -jYu -jYu -tnS -kQP -lcz -itD +sGw +dvD +kFU +eWs +oUz +mqZ +mqZ +lVZ +ctQ +wer +pKW wqh bHB vpW @@ -103251,16 +103360,16 @@ fVz bHB vpW bcm -gTi -nrD -iLv -nrD -nrD -lju -vAw -raT -oPu -sNF +cKm +tTC +cOh +tTC +tTC +dPq +hOV +siT +xFt +kyP aag ajZ aaa @@ -103313,11 +103422,11 @@ bdH aaa aaa aad -huD -gSq -xLp -nYu -hYw +tvt +hJD +cmr +fFQ +pMH agj mXj mXj @@ -103354,16 +103463,16 @@ ceK wVB psa ceK -aWj +sxD bhJ bHG brS aES -cuk -asV -bwM -tqG -vYk +jrI +tVx +raO +ioM +rwZ ajZ aaa aaa @@ -103415,22 +103524,22 @@ aaa aaa aad aag -wZa -jca -kog -nqC -ciV -jIM -xml -hzp -kQP -lcz -itD +sGw +xzB +xer +eWs +uES +xrT +gYj +vnY +ctQ +wer +pKW wqh bHB xyw aho -vFS +vWc geg aEj aho @@ -103454,16 +103563,16 @@ jSo bHB xyw bcm -xHr -nrD -xsy -nrD -nrD -rDC -vAw -raT -oPu -sNF +qKb +tTC +xQj +tTC +tTC +uTk +hOV +siT +xFt +kyP aag ajZ aaa @@ -103516,11 +103625,11 @@ aaa aaa aaa aad -btL -rXs -qKT -bOz -lAX +cZe +bLc +fOK +pWd +iPq agj mXj pjR @@ -103562,11 +103671,11 @@ tJi ivf bpe aES -gvj -asV -rDp -rkF -teI +pok +tVx +kzc +gen +nLp ajZ aaa aaa @@ -103618,22 +103727,22 @@ aaa aaa aad aag -wZa -tYh -gtF -nqC -lNz -kNr -pzl -hzp -kQP -lcz -itD +sGw +nkj +dvD +eWs +rVt +tVZ +bkS +vnY +ctQ +wer +pKW wqh bHB ezQ eXq -mdT +fAa oYp oZp eXq @@ -103657,16 +103766,16 @@ xyw bHB aYt bcm -iVQ -nrD -oqn -era -uRh -sGm -vAw -raT -tdN -sNF +jNG +tTC +vMb +xYE +iuI +lDA +hOV +siT +fFU +kyP aag ajZ aaa @@ -103719,11 +103828,11 @@ aaa bdH aaa aad -huD -wcs -xLp -meQ -eAK +tvt +nCM +cmr +wKb +pri agj qlI cdB @@ -103765,11 +103874,11 @@ aES aES aES aES -vaH -asV -lUr -vGV -vYk +gBd +tVx +fjz +hPu +rwZ ajZ aaa aaa @@ -103821,21 +103930,21 @@ aac aaf aag aag -wZa -pau -gtF -nqC -heM -kNr -pzl -bEe -dBW -qsJ -iBk +sGw +vEI +dvD +eWs +nCe +tVZ +bkS +bfO +tWL +aLx +jHt mVE rgy baN -iGO +anU gEg imy gEg @@ -103864,12 +103973,12 @@ bcm bcm bcm bcm -vAw -xkZ -vAw -iDD -vrb -sNF +hOV +pIC +hOV +qpV +nGk +kyP aag aag aaf @@ -103922,11 +104031,11 @@ bdH bdH aaa aad -huD -nWx -xLp -wvt -rLl +tvt +mPw +cmr +wGa +bAy agj eBE hvH @@ -103963,16 +104072,16 @@ bFC jUb qjz ceK -aWj +sxD bhJ bHG gCP aES -kqI -rJf -kkg -pVK -vYk +imt +noE +dcT +hrI +rwZ ajZ aaa aaa @@ -104024,22 +104133,22 @@ aad aag aag aag -wZa -ctW -gtF -nqC -dWk -nCA -pJV -cTm -bKi -tST -aWB +sGw +oGf +dvD +eWs +jkY +ktI +xPn +xyQ +ixT +hBG +ngK sqa hBF hCt eXq -cIq +qYN lsD lkf eXq @@ -104067,12 +104176,12 @@ lRX rux sEt bcm -uhS -vtL -vtL -raT -vtL -sNF +qyG +bUQ +bUQ +siT +bUQ +kyP aag aag aag @@ -104125,11 +104234,11 @@ bdH bdH bdH aad -huD -ruD -xLp -xLp -wax +tvt +qwY +cmr +cmr +mVA agj kSH hvH @@ -104171,11 +104280,11 @@ mhm brS bpe aES -tqG -fqP -oHy -oHy -vYk +ioM +cZO +pfD +pfD +rwZ ajZ aaa aaa @@ -104227,22 +104336,22 @@ aad aag aag aag -wZa -dDQ -gtF -nqC -nSC -nSC -iBk -qNw -vKV -lcz -itD +sGw +fzT +dvD +eWs +qmh +qmh +jHt +wSQ +rOv +wer +pKW wqh bHB xyw aho -xWV +dkj siz gYt aho @@ -104270,12 +104379,12 @@ myo dtH eyR bcm -wEA -oPu -vtL -cUf -mkk -sNF +rQs +xFt +bUQ +uKH +gsp +kyP aag aag aag @@ -104328,11 +104437,11 @@ bdH bdH bdH aad -btL -btL -btL -guv -dYM +cZe +cZe +cZe +tiX +vcI agj ikQ hvH @@ -104374,11 +104483,11 @@ aES aES aES aES -mOw -fqP -teI -teI -teI +ied +cZO +nLp +nLp +nLp ajZ aaa aaa @@ -104430,17 +104539,17 @@ aad aag aag aag -wZa -bqM -uJT -nqC -gAC -pgE -nSC -qNw -vKV -lcz -itD +sGw +iPf +klT +eWs +vHp +gJp +qmh +wSQ +rOv +wer +pKW wqh bHB vpW @@ -104473,12 +104582,12 @@ mhd aYt tuN fPn -oPu -oPu -vtL -cUf -vRF -sNF +xFt +xFt +bUQ +uKH +eLC +kyP aag aag aag @@ -104533,9 +104642,9 @@ aaa aad aag aag -btL -xLp -udH +cZe +cmr +iNk agj muV hvH @@ -104572,14 +104681,14 @@ aWq aXb aGr ceK -aWj +sxD bhJ bHG cWy aES -pVK -asV -teI +hrI +tVx +nLp aag aag ajZ @@ -104633,17 +104742,17 @@ aad aag aag aag -wZa -rgC -jca -qlt -hzp -kDZ -nSC -qNw -enz -vZX -iBk +sGw +cqp +xzB +smH +vnY +asE +qmh +wSQ +vop +tgy +jHt vPM bHB xyw @@ -104676,12 +104785,12 @@ omP aYt bOC bcm -vtL -oPu -vtL -cUf -mod -sNF +bUQ +xFt +bUQ +uKH +rVc +kyP aag aag aag @@ -104736,9 +104845,9 @@ aaa aad aag aag -btL -qyj -nPF +cZe +huD +vAz agj mXj fnv @@ -104746,7 +104855,7 @@ hvH hvH iNY hvH -ofp +hmV mXj agj aic @@ -104780,9 +104889,9 @@ eBd brS cpj aES -eqh -hwQ -teI +luE +wgO +nLp aag aag ajZ @@ -104836,22 +104945,22 @@ aad aag aag aag -wZa -vLO -jca -nqC -rbd -yiJ -kkV -vCW -ykL -hLF -iBk +sGw +jOq +xzB +eWs +nso +jdZ +pqM +bZS +rlD +uUf +jHt kCm bHB btO bea -jzb +aoN bea bfZ baS @@ -104879,12 +104988,12 @@ ivg llO kSv bcm -oyJ -ter -tVJ -cUf -oPu -sNF +emC +dZZ +xmn +uKH +xFt +kyP aag aag aag @@ -104939,9 +105048,9 @@ aaa aad aag aag -btL -cZw -nPF +cZe +pcf +vAz agj agj agj @@ -104983,9 +105092,9 @@ aES aES aES aES -fDT -eKi -teI +hXD +tYV +nLp aag aag ajZ @@ -105039,10 +105148,10 @@ aad aag aag aag -wZa -gtF -kil -nqC +sGw +dvD +qig +eWs eXq adR eXq @@ -105083,11 +105192,11 @@ wXT cdA bcm bcm -oyJ -oyJ -kjE -oPu -sNF +emC +emC +mTL +xFt +kyP aag aag aag @@ -105142,9 +105251,9 @@ aaa aad aag aag -btL -egW -kUr +cZe +uTE +fZy gpY uBi wYA @@ -105186,9 +105295,9 @@ baw oaK nUn pgD -asV -pVK -teI +tVx +hrI +nLp aag aag ajZ @@ -105242,10 +105351,10 @@ aad aag aag aag -wZa -gtF -gtF -nqC +sGw +dvD +dvD +eWs abG aeh afy @@ -105287,10 +105396,10 @@ aYt aYt lrX bcm -oin -raT -tdN -sNF +jGQ +siT +fFU +kyP aag aag aag @@ -105345,9 +105454,9 @@ bdH aad aag aag -btL -xLp -nPF +cZe +cmr +vAz gpY uac vFw @@ -105389,9 +105498,9 @@ aZz wUP lrF pgD -fqP -pVK -teI +cZO +hrI +nLp aag aag ajZ @@ -105445,10 +105554,10 @@ aad aag aag aag -wZa -gtF -uJT -nqC +sGw +dvD +klT +eWs abH aer agf @@ -105490,10 +105599,10 @@ btO btO uII fPn -uwi -raT -vrb -sNF +htq +siT +nGk +kyP aag aag aag @@ -105548,9 +105657,9 @@ abs abs abs abs -btL -tCi -elF +cZe +aMf +wby gpY mto acW @@ -105592,9 +105701,9 @@ baw sgU baw pgD -aWY -uFb -teI +cyv +eKZ +nLp tQV tQV tQV @@ -105648,10 +105757,10 @@ aag aag aag aag -wZa -gtF -fgv -loQ +sGw +dvD +sZc +dGP acq aeJ azl @@ -105693,10 +105802,10 @@ aYt puI iWx bcm -oYP -cUf -vtL -sNF +ymg +uKH +bUQ +kyP aag aag aag @@ -105851,10 +105960,10 @@ aag aag aag aag -wZa -gtF -pTD -nqC +sGw +dvD +iQJ +eWs acu aeh afF @@ -105896,10 +106005,10 @@ cdA bcm bcm bcm -oyJ -khh -mPW -sNF +emC +wuh +fgU +kyP aag aag aag @@ -106054,10 +106163,10 @@ aag aag aag aag -wZa -cpG -mcs -nqC +sGw +nHX +cEA +eWs acM aer agf @@ -106097,12 +106206,12 @@ apE icp fER bcm -oyJ -ceI -vtL -cUf -rhf -sNF +emC +hVL +bUQ +uKH +hSb +kyP aag aag aag @@ -106179,9 +106288,9 @@ awY kOB awZ aiX -fys -wLe -nWK +opN +bDi +vIr awF aEM aGV @@ -106257,10 +106366,10 @@ aag aag aag aag -wZa -jca -kGZ -nqC +sGw +xzB +hRA +eWs acZ aeN azl @@ -106300,12 +106409,12 @@ uiT aYt jyR bcm -aPd -oPu -vtL -cUf -iBs -sNF +fUZ +xFt +bUQ +uKH +eyM +kyP aag aag aag @@ -106382,9 +106491,9 @@ pXx jrm evg aiX -eSt -jPD -jee +dCb +dDc +rdo awF aFg aGY @@ -106460,10 +106569,10 @@ aag aag aag aag -wZa -jca -fCZ -nqC +sGw +xzB +ghA +eWs vhw khD azw @@ -106503,12 +106612,12 @@ apL aYt iKb bcm -dUA -oPu -vtL -raT -gKl -sNF +umk +xFt +bUQ +siT +qBl +kyP aag aag aag @@ -106585,9 +106694,9 @@ wWC auZ aiX aiX -kuj -tje -pQh +mJp +bNT +cbK awF hRk aGY @@ -106663,10 +106772,10 @@ aag aag aag aag -wZa -tYh -bQd -nqC +sGw +nkj +rjF +eWs eXq eXq eXq @@ -106706,12 +106815,12 @@ uiT aYt xNj bcm -rhf -oPu -vtL -cUf -eAP -sNF +hSb +xFt +bUQ +uKH +pTX +kyP aag aag aag @@ -106788,9 +106897,9 @@ pQV apq ana aiX -oFZ -tje -vGt +glc +bNT +rmB awF xTL lmA @@ -106866,10 +106975,10 @@ aag aag aag aag -wZa -jca -gzx -nqC +sGw +xzB +oes +eWs aRu aRu aRu @@ -106909,12 +107018,12 @@ fpW llO vml bcm -oyJ -mod -mod -cUf -rwh -sNF +emC +rVc +rVc +uKH +nBF +kyP aag aag aag @@ -106991,9 +107100,9 @@ xQg wWC szO aiX -gyR -tje -ilW +nLM +bNT +iPU awF awF aEW @@ -107069,10 +107178,10 @@ aag aag aag aag -wZa -gtF -gzx -nqC +sGw +dvD +oes +eWs aRu aRu aRu @@ -107108,16 +107217,16 @@ bGO bHB uAb bcm -oyJ -riv -oyJ -oyJ -oyJ -oyJ -oyJ -iDD -vtL -sNF +emC +hvx +emC +emC +emC +emC +emC +qpV +bUQ +kyP aag aag aag @@ -107194,10 +107303,10 @@ yjM qbO aqw hnI -eBy -tje -oQL -jGY +kGS +bNT +gFN +bMi awF nvG vGI @@ -107272,10 +107381,10 @@ aag aag aag aag -wZa -gtF -pTD -nqC +sGw +dvD +iQJ +eWs aRu aRu aRu @@ -107311,16 +107420,16 @@ bcp bHB xAY aYz -oyJ -vtL -wwV -epq -xBT -oyJ -gKl -cUf -vtL -sNF +emC +bUQ +wDP +mHF +hhg +emC +qBl +uKH +bUQ +kyP aag aag aag @@ -107397,10 +107506,10 @@ aqy nBE pOD bZa -pIX -wnK -oQL -euB +nIF +duR +gFN +mqd awF aHn szU @@ -107475,10 +107584,10 @@ aag aag aag aag -wZa -jca -gzx -nqC +sGw +xzB +oes +eWs aRu aRu aRu @@ -107514,16 +107623,16 @@ bcc bHB xAY aYz -oyJ -dSC -oPu -oPu -vtL -ltw -oPu -raT -vrb -sNF +emC +vFI +xFt +xFt +bUQ +wdG +xFt +siT +nGk +kyP aag aag aag @@ -107600,15 +107709,15 @@ aiX aiX aiX aiX -mKO -tje -geR -nPh -nPh -nPh -nPh -nPh -nPh +eFI +bNT +sQu +tsr +tsr +tsr +tsr +tsr +tsr aRE qVC qVC @@ -107678,10 +107787,10 @@ aag aag aag aag -wZa -ptr -mcs -nqC +sGw +fzx +cEA +eWs aRu aRu aRu @@ -107717,16 +107826,16 @@ fVz bHB uII ruz -oyJ -vnj -xDy -oPu -epp -oyJ -oUM -raT -oPu -sNF +emC +jev +aML +xFt +oFn +emC +jaI +siT +xFt +kyP aag aag aag @@ -107803,15 +107912,15 @@ aiX aKG amb aiX -dyG -tje -vGt -nPh -ipF -aJB -osQ -eVP -nPh +eWN +bNT +rmB +tsr +sOL +jIC +lFr +wTu +tsr aSq aTE aTE @@ -107881,10 +107990,10 @@ aag aag aag aag -wZa -jca -jLY -nqC +sGw +xzB +rsP +eWs aRu aRu aRu @@ -107920,16 +108029,16 @@ xyw bHB uII wrT -oyJ -krm -hiU -bkB -kel -oyJ -ygo -raT -tdN -sNF +emC +fqb +ury +dFW +mvi +emC +daF +siT +fFU +kyP aag aag aag @@ -108006,15 +108115,15 @@ aqz aKH and aiX -aDf -tje -eBy -jSF -uZb -uZb -uwk -nnT -nPh +umD +bNT +kGS +fyT +xIV +xIV +edV +reM +tsr aSt aTE aTE @@ -108078,16 +108187,16 @@ aaa bdH aaY aad -wZa -wZa -wZa -wZa -wZa -wZa -wZa -gtF -oiR -nqC +sGw +sGw +sGw +sGw +sGw +sGw +sGw +dvD +iOX +eWs aRu aRu aRu @@ -108129,16 +108238,16 @@ lFp lFp lFp lFp -pFx -raT -oPu -sNF -sNF -sNF -sNF -sNF -sNF -sNF +ljm +siT +xFt +kyP +kyP +kyP +kyP +kyP +kyP +kyP ajZ aaY bdH @@ -108209,15 +108318,15 @@ aiX aiX aiX aiX -jtX -tje -hIm -nPh -tHA -mkb -iKB -fdD -nPh +cwi +bNT +fBA +tsr +iPN +dbX +rGL +cyL +tsr aSx aTE aTG @@ -108281,16 +108390,16 @@ aaa bdH aaY aad -wZa -iJA -gtF -jca -jca -jca -gtF -gtF -qXg -nqC +sGw +lrH +dvD +xzB +xzB +xzB +dvD +dvD +wsz +eWs aRu aRu aRu @@ -108332,16 +108441,16 @@ kjD gHl qoL lFp -rhf -raT -oPu -vtL -vtL -rYK -vtL -gew -mPB -sNF +hSb +siT +xFt +bUQ +bUQ +gQQ +bUQ +cOt +uSU +kyP ajZ aaY bdH @@ -108412,22 +108521,22 @@ aqz mBe atT aiX -ghn -tje -dFr -nPh -nPh -jpX -nPh -nPh -nPh -mSu -tms -mSu -mSu -mSu -mSu -mSu +fXf +bNT +hCF +tsr +tsr +vOY +tsr +tsr +tsr +lIj +mVF +lIj +lIj +lIj +lIj +lIj pgD nUv aJU @@ -108484,16 +108593,16 @@ aaa bdH aaY aad -wZa -jca -jca -gtF -gtF -fgv -ful -eSZ -gHx -nqC +sGw +xzB +xzB +dvD +dvD +sZc +abj +mUE +coo +eWs aRu aRu aRu @@ -108535,16 +108644,16 @@ aId aId poA lFp -rhf -lJb -oPx -oPx -xHC -oPx -oPx -pSK -gKl -sNF +hSb +uGU +kGi +kGi +khI +kGi +kGi +kow +qBl +kyP ajZ aaY bdH @@ -108615,22 +108724,22 @@ aiX asf atT aiX -yks -gmL -miG -mSu -hIT -upv -wxn -xtI -cJz -vOb -vOb -tEo -ikL -alY -alY -eFg +cKW +mqR +xZf +lIj +tBY +gkE +cTM +rqD +pcY +srO +srO +lWO +wjQ +uag +uag +jnh pgD lza gZw @@ -108687,15 +108796,15 @@ aaa bdH aaa aad -wZa -gtF -gtF -nqC -oFv -oiR -gEk -nVC -rye +sGw +dvD +dvD +eWs +jri +iOX +kIl +jmz +hsK wfE wfE wfE @@ -108704,9 +108813,9 @@ wfE wfE wfE wfE -iwp -uvh -pJY +yap +bqg +eIO bkA eFG bej @@ -108722,15 +108831,15 @@ qjN qjN oWf gfW -tKu +xgJ fdZ bnS fdZ -tbd +tzx gfW -jaT -gKs -nQq +rZt +qyP +tuC lFp lGg aId @@ -108745,9 +108854,9 @@ nmY nmY nmY nmY -raT -vtL -sNF +siT +bUQ +kyP ajZ aaa bdH @@ -108818,22 +108927,22 @@ aiX aiX aiX aiX -oYG -nNz -fnV -mSu -mSu -aux -mSu -mSu -mSu -mSu -mSu -mSu -mSu -mSu -mSu -gRz +dRo +fsu +enz +lIj +lIj +dvZ +lIj +lIj +lIj +lIj +lIj +lIj +lIj +lIj +lIj +tWF pgD nUv aJU @@ -108890,9 +108999,9 @@ aaa bdH aaa aad -wZa -gtF -gtF +sGw +dvD +dvD wfE wfE rXv @@ -108907,9 +109016,9 @@ bqm bsD btr wfE -viV -dRy -viV +kLE +lIu +kLE bkA bcC bej @@ -108925,15 +109034,15 @@ ham qjN oDY omo -epW +fvJ fdZ ixj fdZ -kmZ +bET gfW -ctV -fSN -ctV +kSA +tpB +kSA lFp xDF eRS @@ -108944,13 +109053,13 @@ nmY ouw jDP aId -ctX +xHS tEd vjW nmY -raT -vtL -sNF +siT +bUQ +kyP ajZ aaa bdH @@ -108996,12 +109105,12 @@ adq aei aka aWn -uIw -uIw -uIw -uIw -uIw -uIw +njn +njn +njn +njn +njn +njn oGC awW acW @@ -109010,31 +109119,31 @@ awW awW fSm hiy -mxa -eyZ -eyZ -tgP -eyZ -eBy -eBy -neu -eyZ -ipT -eyZ -eyZ -kdx -eyZ -eyZ -ipT -kMk -neu -eyZ -eyZ -eyZ -eyZ -tgP -eyZ -pIM +ddp +fCP +fCP +stk +fCP +kGS +kGS +sVA +fCP +vUO +fCP +fCP +wzL +fCP +fCP +vUO +pwd +sVA +fCP +fCP +fCP +fCP +stk +fCP +uVg pEY jsP baw @@ -109043,12 +109152,12 @@ baw sgU baw baw -ykg -ykg -ykg -ykg -ykg -ykg +nIN +nIN +nIN +nIN +nIN +nIN hXV yhI rRz @@ -109093,9 +109202,9 @@ aaa bdH aaa aad -wZa -gtF -gtF +sGw +dvD +dvD wfE mcL jOo @@ -109110,9 +109219,9 @@ wFR wFR xbk aWw -kmA -oiZ -gdO +cJK +oGL +hOu bkA eUn bcD @@ -109130,13 +109239,13 @@ qyD omo blZ bqN -gtA +nTo bqN bwR gfW -iAA -hbH -vpK +oJL +jMa +cVt sHm ddM hZe @@ -109151,9 +109260,9 @@ dKK dKK xry nmY -raT -vtL -sNF +siT +bUQ +kyP ajZ aaa bdH @@ -109199,12 +109308,12 @@ adq apr apr aoV -uIw -qZx -qZx -qZx -omL -uIw +njn +rWz +rWz +rWz +tWM +njn aea oGC xjD @@ -109213,31 +109322,31 @@ ajf ajf oAO pIZ -rHg -vor -hJt -hJt -hJt -pcp -hJt -hJt -efN -onq -onq -hJt -mjw -hJt -pcp -pcp -aSg -gma -gma -xSX -gma -gma -gma -vor -wZH +qwf +jRm +gDQ +gDQ +gDQ +rUN +gDQ +gDQ +dFd +rDm +rDm +gDQ +saT +gDQ +rUN +rUN +bxt +tPz +tPz +tiZ +tPz +tPz +tPz +jRm +rHn tFW dGC aZz @@ -109246,12 +109355,12 @@ aZz nsc baw cxk -ykg -iSe -iSe -iSe -wWD -ykg +nIN +rgL +rgL +rgL +nTc +nIN wTy wTy wTy @@ -109296,9 +109405,9 @@ aaa bdH aaa aad -wZa -pxO -jca +sGw +xiH +xzB wfE dgl jOo @@ -109313,9 +109422,9 @@ esM uUi xbk aWw -gLm -rTX -jul +gtD +uRD +wru bkA nvM bgG @@ -109337,10 +109446,10 @@ gfW uFo omo gfW -mpV -vpf -hmD -sDv +eWx +lLO +juo +otq gJO pwG aId @@ -109354,9 +109463,9 @@ vXf qGw uZV nmY -cUf -vtL -sNF +uKH +bUQ +kyP ajZ aaa bdH @@ -109402,12 +109511,12 @@ adq aub akc euO -uIw -qZx -qZx -qZx -qZx -uIw +njn +rWz +rWz +rWz +rWz +njn oGC sHp oGC @@ -109416,31 +109525,31 @@ awW awW aSJ isI -gNl -pEH -cQO -dsq -eoU -dsq -dsq -sgI -dsq -dsq -dsq -dsq -qkb -dsq -sgI -dsq -dsq -dsq -dsq -dsq -eoU -dsq -lwv -pEH -qyd +dgP +jao +uIa +qxK +rYG +qxK +qxK +iRi +qxK +qxK +qxK +qxK +xcY +qxK +iRi +qxK +qxK +qxK +qxK +qxK +rYG +qxK +bTD +jao +uQi dCD aXe baw @@ -109449,12 +109558,12 @@ baw mnA baw baw -ykg -iSe -iSe -iSe -iSe -ykg +nIN +rgL +rgL +rgL +rgL +nIN crh csI nqG @@ -109499,9 +109608,9 @@ aaa bdH aaa aad -wZa -vLO -jca +sGw +jOq +xzB wfE krp jOo @@ -109516,9 +109625,9 @@ wFR soA xbk wfE -mwO -rTX -fVq +xos +uRD +qPk bCd iey baf @@ -109540,10 +109649,10 @@ bPk bsj byb bCd -mjE -vpf -mjE -lxq +knm +lLO +knm +yfy ruL qUZ aId @@ -109557,9 +109666,9 @@ kyh dKK xry nmY -iDD -sZQ -sNF +qpV +hNh +kyP ajZ aaa bdH @@ -109606,22 +109715,22 @@ avd akt awW qHq -qZx -qZx -qZx -qZx -uIw -ukk -uIw -uIw -uIw -uIw -uIw -uIw -uIw -gNl -pEH -qyd +rWz +rWz +rWz +rWz +njn +vzO +njn +njn +njn +njn +njn +njn +njn +dgP +jao +uQi aoe aoe aoe @@ -109641,22 +109750,22 @@ aoe aoe aoe aoe -wLs -pEH -fas -ykg -ykg -ykg -ykg -ykg -ykg -iUS -ykg -ykg -iSe -iSe -iSe -iSe +maF +jao +mOw +nIN +nIN +nIN +nIN +nIN +nIN +rBD +nIN +nIN +rgL +rgL +rgL +rgL eOM baw sMM @@ -109702,9 +109811,9 @@ aaa bdH aaa aad -wZa -pkx -jca +sGw +eoE +xzB wfE eiP qOp @@ -109719,9 +109828,9 @@ qtv xFZ btx naV -oKz -nfQ -fVq +pij +kJh +qPk bCd tmg qjN @@ -109743,10 +109852,10 @@ qjN tzP wYK bCd -mjE -vpf -mjE -lxq +knm +lLO +knm +yfy ruL gsd aId @@ -109760,9 +109869,9 @@ hgD pSQ dOe nmY -bFf -hlm -sNF +rEK +bba +kyP ajZ aaa bdH @@ -109808,23 +109917,23 @@ adq aGP aka aWu -uIw -qZx -qZx -qZx -qZx -uIw -oOh -juV -veN -ljl -iSr -vGw -fKL -uIw -kOF -pEH -qyd +njn +rWz +rWz +rWz +rWz +njn +gur +osn +vDt +puJ +deA +olC +ujf +njn +xky +jao +uQi aoe aoh jHQ @@ -109844,23 +109953,23 @@ cnV isN cnZ aoe -gNl -pEH -qyd -ykg -qcM -qcM -gxS -dvx -gxS -iov -nGH -ykg -iSe -iSe -iSe -iSe -ykg +dgP +jao +uQi +nIN +cHn +cHn +gNo +aZv +gNo +xzh +dcZ +nIN +rgL +rgL +rgL +rgL +nIN hWB yhI qSX @@ -109905,9 +110014,9 @@ aaa bdH aaa aad -wZa -fSj -jca +sGw +jIJ +xzB wfE fHz opD @@ -109922,9 +110031,9 @@ esM jpt xbk aWw -fVq -mjz -cXX +qPk +hKe +uJM baZ bep qjN @@ -109946,10 +110055,10 @@ qjN qjN imo baZ -iaf -vpf -mjE -lxq +sbE +lLO +knm +yfy ruL xPq aId @@ -109963,9 +110072,9 @@ smW prP xXl nmY -idV -aca -sNF +idL +gnM +kyP ajZ aaa bdH @@ -110011,23 +110120,23 @@ adq aGQ akc apg -uIw -qZx -qZx -qZx -qZx -uIw -xHx -nel -tqt -wuP -tqt -nel -xHx -sWb -eBy -oXo -qyd +njn +rWz +rWz +rWz +rWz +njn +jsA +cGR +tey +urL +tey +cGR +jsA +tQA +kGS +lOn +uQi aoe vbS arb @@ -110047,23 +110156,23 @@ cnW aEi coa aoe -iyL -oXo -eBy -dvx -gxS -iov -iov -ykg -tEk -gxS -gxS -ykg -iSe -iSe -iSe -iSe -ykg +tWf +lOn +kGS +aZv +gNo +xzh +xzh +nIN +gJY +gNo +gNo +nIN +rgL +rgL +rgL +rgL +nIN wvj csI iPH @@ -110108,9 +110217,9 @@ aaa bdH aaa aad -wZa -jca -gtF +sGw +xzB +dvD wfE iYx opD @@ -110125,9 +110234,9 @@ nEF tXi pcE aWw -fVq -mjz -fVq +qPk +hKe +qPk hqW qjN qjN @@ -110149,10 +110258,10 @@ hDX qjN qjN jpp -mjE -vpf -mjE -cHp +knm +lLO +knm +hnP lFp xlO aId @@ -110166,9 +110275,9 @@ oqt oEy qmY tUN -raT -urD -sNF +siT +lZb +kyP ajZ aaa bdH @@ -110214,23 +110323,23 @@ aee avd akt qWI -uIw -uIw -uIw -uIw -uIw -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -iyL -oXo -qyd +njn +njn +njn +njn +njn +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +tWf +lOn +uQi aoe qQc fXg @@ -110250,23 +110359,23 @@ jBy aEi fFh aoe -gNl -oXo -qyd -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -ykg -ykg -ykg -ykg -ykg +dgP +lOn +uQi +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +nIN +nIN +nIN +nIN +nIN ehj irS ilJ @@ -110311,9 +110420,9 @@ aaa bdH aaa aad -wZa -jca -gtF +sGw +xzB +dvD wfE gww opD @@ -110328,9 +110437,9 @@ ljf maL uKe aWw -fVq -nsO -oPb +qPk +ckh +gyn vcq qPS qPS @@ -110352,10 +110461,10 @@ iaF bqL bqL ocf -goS -etU -qaT -pfu +wwE +sAD +cIO +tAb vpe dxT olN @@ -110369,9 +110478,9 @@ uxX oZy orN nmY -aNz -eDF -sNF +lQf +tHk +kyP ajZ aaa bdH @@ -110417,23 +110526,23 @@ adq aWm aka kyY -uIw -dDR -kEJ -qBE -qBE -uWv -uoM -uoM -uoM +njn +mfR +sqP +tVs +tVs +gxm +tPB +tPB +tPB dkO aps aps aps -uWv -flD -pEH -qyd +gxm +xtO +jao +uQi aoe vbS koB @@ -110453,23 +110562,23 @@ aoe hFF aoe aoe -gNl -pEH -qyd -uWv +dgP +jao +uQi +gxm aiJ aiJ aiJ qYr -pEf -pEf -pEf -uWv -cNJ -xfu -iov -cNJ -ykg +cJV +cJV +cJV +gxm +ear +aGm +xzh +ear +nIN rQW yhI tmI @@ -110514,26 +110623,26 @@ aaa bdH aaa aad -wZa -tYh -gtF +sGw +nkj +dvD wfE rYi opD wFR wFR -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -fVq -mjz -cXX +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +qPk +hKe +uJM baZ eyQ qjN @@ -110555,26 +110664,26 @@ qjN qjN xtM baZ -iaf -pZk -hoT -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA +sbE +jZe +cbL +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr iZE oqt oZy qhD nmY -raT -oPu -sNF +siT +xFt +kyP ajZ aaa bdH @@ -110620,23 +110729,23 @@ adq apr apr apr -uIw -ory -vGC -xHx -xHx -uWv -uoM -uoM -uoM +njn +hzl +vdT +jsA +jsA +gxm +tPB +tPB +tPB vQe aps aps aps -uWv -oAw -oXo -qyd +gxm +hGo +lOn +uQi aoe aop koB @@ -110656,23 +110765,23 @@ uRt aQz aRJ ajl -gNl -oXo -qyd -uWv +dgP +lOn +uQi +gxm aiJ aiJ aiJ str -pEf -pEf -pEf -uWv -xfu -iov -iov -rxm -ykg +cJV +cJV +cJV +gxm +aGm +xzh +xzh +moq +nIN wTy wTy wTy @@ -110717,26 +110826,26 @@ aaa bdH aaa aad -wZa -jca -gtF +sGw +xzB +dvD wfE cVK opD oRO ren -wdA +wDr aeL aeL aeL -jFl -bDz -bDz -bDz -wdA -uNO -dAn -sDE +oLj +wNG +wNG +wNG +wDr +qZT +pSF +eZC bCd mlH bqR @@ -110746,7 +110855,7 @@ tlA nyj vVW vhX -lia +unU rlZ twq vhX @@ -110758,26 +110867,26 @@ cle bCe sdO bCd -uBI -tsc -obX -wdA -wQH -wQH -wQH -mYT +hBW +dxJ +rdT +wDr +mQx +mQx +mQx +jsa azy azy azy -wdA +wDr kJH oqt qlm kRD nmY -cUf -oPu -sNF +uKH +xFt +kyP ajZ aaa bdH @@ -110823,23 +110932,23 @@ aet afB akW apu -uIw -uIw -lGH -nel -evF -uWv -vqT -vqT -vqT +njn +njn +lBB +cGR +mOR +gxm +gHX +gHX +gHX vQe aps aps aps -uWv -gNl -dhB -bxO +gxm +dgP +hBy +dlT hSI pMp gzK @@ -110859,23 +110968,23 @@ akw aQz aRK ajl -gqD -oXo -qyd -uWv +kUs +lOn +uQi +gxm aiJ aiJ aiJ str -ceS -ceS -ceS -uWv -maU -iov -gxS -ykg -ykg +oAY +oAY +oAY +gxm +rTe +xzh +gNo +nIN +nIN crh csI qhb @@ -110920,26 +111029,26 @@ aaa bdH aaa aad -wZa -jca -kmL +sGw +xzB +esm wfE wfE viJ wfE wfE -wdA +wDr aeL aeL aeL -emZ -bDz -bDz -bDz -wdA -fVq -mjz -fVq +uZm +wNG +wNG +wNG +wDr +qPk +hKe +qPk bCd bmn knH @@ -110950,7 +111059,7 @@ rHo kan kan kan -phx +jXf kan kan kan @@ -110961,26 +111070,26 @@ kan iXW iLs bCd -mjE -pZk -mjE -wdA -wQH -wQH -wQH -sEs +knm +jZe +knm +wDr +mQx +mQx +mQx +guK azy azy azy -wdA +wDr euW rOI aId hQP nmY -iDD -vtL -sNF +qpV +bUQ +kyP ajZ aaa bdH @@ -111027,22 +111136,22 @@ boL akY boL aiH -ixB -nel -gWj -evF -uWv -huW -huW -huW -uWv +hbl +cGR +fwP +mOR +gxm +tpj +tpj +tpj +gxm asm asm asm -uWv -gNl -xJr -cEL +gxm +dgP +mxg +mnV aoe pjF wUd @@ -111062,22 +111171,22 @@ akw fOL aRS ajl -oAw -pEH -qyd -uWv +hGo +jao +uQi +gxm alW alW alW -uWv -ugq -ugq -ugq -uWv -xfu -cNJ -gxS -dvx +gxm +nVA +nVA +nVA +gxm +aGm +ear +gNo +aZv aJU baw sMM @@ -111124,25 +111233,25 @@ aKR aKR aKR aKR -gtF -jca -hkN -jca -jca -fMZ -kkm -wdA +dvD +xzB +pIo +xzB +xzB +fQy +nAm +wDr aeL aeL aeL -emZ -gCj -gCj -gCj -wdA -fVq -mjz -hqM +uZm +kaq +kaq +kaq +wDr +qPk +hKe +qqf kan kan kan @@ -111164,25 +111273,25 @@ kan kan kan kan -oRh -nMa -mjE -wdA -iwC -iwC -iwC -sEs +tzw +sPY +knm +wDr +wQu +wQu +wQu +guK azy azy azy -wdA +wDr sJI aId aId hQP nmY -cUf -vtL +uKH +bUQ bVU bVU bVU @@ -111229,23 +111338,23 @@ aez boL akY wrQ -uIw -uIw -uIw -uIw -uIw -uWv -huW -huW -huW -uWv +njn +njn +njn +njn +njn +gxm +tpj +tpj +tpj +gxm asm asm asm -uWv -gNl -oXo -oOb +gxm +dgP +lOn +tQO sqf sqf sqf @@ -111265,23 +111374,23 @@ upM akw alD vEx -eBy -oXo -qyd -uWv +kGS +lOn +uQi +gxm alW alW alW -uWv -ugq -ugq -ugq -uWv -ykg -ykg -ykg -ykg -ykg +gxm +nVA +nVA +nVA +gxm +nIN +nIN +nIN +nIN +nIN nTH sMM baw @@ -111327,30 +111436,30 @@ aKS aKU aKS aLL -cXy -xXG -nqC -fKj -pkx -iJA -gUo -wdA +vtJ +stP +eWs +hKO +eoE +lrH +kdo +wDr aiR aiR aiR -wdA -pWp -pWp -pWp -wdA -fVq -mjz -fVq +wDr +hwH +hwH +hwH +wDr +qPk +hKe +qPk kan -rmB -vKG -qFm -iYR +qWS +oDJ +vaQ +iIH rlZ buu rlZ @@ -111367,25 +111476,25 @@ kan psO gjK kan -mjE -nMa -mjE -wdA -pKs -pKs -pKs -wdA +knm +sPY +knm +wDr +ydA +ydA +ydA +wDr azD azD azD -wdA +wDr ePN aId aId hQP nmY -jVM -imt +xUY +wGe bSf bWe bWn @@ -111432,23 +111541,23 @@ aet agS aiP aYq -uIw -qZx -qZx -qZx -omL -uWv -huW -huW -huW -uWv +njn +rWz +rWz +rWz +tWM +gxm +tpj +tpj +tpj +gxm asm asm asm -uWv -gNl -oXo -qyd +gxm +dgP +lOn +uQi sqf anp wjz @@ -111456,8 +111565,8 @@ fnA jZY jZY sqf -jTb -iDe +wpu +fEX ajl ajl ajl @@ -111468,23 +111577,23 @@ ajl onQ alD ajl -flS -oXo -qyd -uWv +bNI +lOn +uQi +gxm alW alW alW -uWv -ugq -ugq -ugq -uWv -iSe -iSe -iSe -wWD -ykg +gxm +nVA +nVA +nVA +gxm +rgL +rgL +rgL +nTc +nIN gnv yhI tTu @@ -111537,23 +111646,23 @@ aLL aLL aLL aLL -wdA +wDr aiR aiR aiR -wdA -pWp -pWp -pWp -wdA -fVq -mjz -fVq +wDr +hwH +hwH +hwH +wDr +qPk +hKe +qPk kan -cpU -xbG +kAp +dYU kan -jJu +cWm soK gDW rlZ @@ -111566,22 +111675,22 @@ rlZ gYl frl wFb -hEQ +wzZ tdI vbV kan -mjE -pZk -mjE -wdA -pKs -pKs -pKs -wdA +knm +jZe +knm +wDr +ydA +ydA +ydA +wDr azD azD azD -wdA +wDr bSf bSf auW @@ -111635,23 +111744,23 @@ aet agB akW aYs -uIw -qZx -qZx -qZx -qZx -uWv -lyc -huW -huW -uWv +njn +rWz +rWz +rWz +rWz +gxm +lbc +tpj +tpj +gxm asm asm asm -uWv -gNl -pEH -qyd +gxm +dgP +jao +uQi sqf sOZ oNJ @@ -111659,8 +111768,8 @@ eDo eDo eDo sqf -dfE -mHv +vXv +wub gXl ajl wqW @@ -111671,23 +111780,23 @@ ajl aCp alD ajl -oPr -pEH -qyd -uWv +kiq +jao +uQi +gxm alW alW alW -uWv -ugq -ugq -uQg -uWv -iSe -iSe -iSe -iSe -ykg +gxm +nVA +nVA +wZk +gxm +rgL +rgL +rgL +rgL +nIN vpn csI goL @@ -111740,18 +111849,18 @@ coT fgh rZP gmj -wdA +wDr aiR aiR aiR -wdA -pWp -pWp -pWp -wdA -nOH -dAn -sDE +wDr +hwH +hwH +hwH +wDr +iGi +pSF +eZC bst bst bst @@ -111773,18 +111882,18 @@ biA biA biA biA -uBI -naO -wDW -wdA -pKs -pKs -pKs -wdA +hBW +ltv +uYM +wDr +ydA +ydA +ydA +wDr azD azD azD -wdA +wDr wcN nGi bVd @@ -111839,22 +111948,22 @@ boL akY boL avJ -qZx -qZx -qZx -qZx -uWv -huW -huW -huW -uWv +rWz +rWz +rWz +rWz +gxm +tpj +tpj +tpj +gxm asm asm asm -uWv -gNl -xJr -fas +gxm +dgP +mxg +mOw sqf anq awn @@ -111862,8 +111971,8 @@ xsz jTj jTj sqf -fYV -uJP +lmi +xgP dwA wJo cyU @@ -111874,22 +111983,22 @@ fQu akx alD gWG -gNl -pEH -qyd -uWv +dgP +jao +uQi +gxm alW alW alW -uWv -ugq -ugq -ugq -uWv -iSe -iSe -iSe -iSe +gxm +nVA +nVA +nVA +gxm +rgL +rgL +rgL +rgL qxz baw sMM @@ -111943,18 +112052,18 @@ uUt aLW aLW guS -wdA +wDr aiR aiR aiR -wdA -pWp -pWp -nLf -wdA -tNE -mjz -fVq +wDr +hwH +hwH +srR +wDr +cvg +hKe +qPk bst bui bvz @@ -111965,7 +112074,7 @@ bJw rlZ hBc hzs -kDj +bHg hzs aZK rlZ @@ -111976,18 +112085,18 @@ bsQ bmj caS biA -mjE -nMa -dcS -wdA -kAW -pKs -pKs -wdA +knm +sPY +jxu +wDr +oVk +ydA +ydA +wDr azD azD azD -wdA +wDr wgR bTO bTO @@ -112041,23 +112150,23 @@ aez boL akY aqk -uIw -qZx -qZx -qZx -qZx -uWv -huW -huW -huW -uWv +njn +rWz +rWz +rWz +rWz +gxm +tpj +tpj +tpj +gxm asm asm asm -uWv -gNl -pEH -qyd +gxm +dgP +jao +uQi sqf anr awn @@ -112077,23 +112186,23 @@ fQu akx alD gWG -gNl -pEH -qyd -uWv +dgP +jao +uQi +gxm alW alW alW -uWv -ugq -ugq -ugq -uWv -iSe -iSe -iSe -iSe -ykg +gxm +nVA +nVA +nVA +gxm +rgL +rgL +rgL +rgL +nIN xuY sMM baw @@ -112146,18 +112255,18 @@ bbS xka uLn uoA -wdA +wDr aiR aiR aiR -wdA -pWp -pWp -pWp -wdA -fVq -mjz -fVq +wDr +hwH +hwH +hwH +wDr +qPk +hKe +qPk bst bcR bev @@ -112179,18 +112288,18 @@ bCl bsz caT biA -mjE -nMa -mjE -wdA -pKs -pKs -pKs -wdA +knm +sPY +knm +wDr +ydA +ydA +ydA +wDr azD azD azD -wdA +wDr hkB bTO qSm @@ -112244,23 +112353,23 @@ aet agS aiP aYq -uIw -qZx -qZx -qZx -qZx -uWv -huW -huW -huW -uWv +njn +rWz +rWz +rWz +rWz +gxm +tpj +tpj +tpj +gxm asm asm asm -uWv -wLs -pEH -qyd +gxm +maF +jao +uQi sqf sqf awp @@ -112280,23 +112389,23 @@ ajl hVz alD ajl -iyL -pEH -qyd -uWv +tWf +jao +uQi +gxm alW alW alW -uWv -ugq -ugq -ugq -uWv -iSe -iSe -iSe -iSe -ykg +gxm +nVA +nVA +nVA +gxm +rgL +rgL +rgL +rgL +nIN gnv yhI tTu @@ -112349,18 +112458,18 @@ rlh aLW aLW gxh -wdA +wDr aiR aiR aiR -wdA -pWp -pWp -pWp -wdA -fVq -mjz -mcz +wDr +hwH +hwH +hwH +wDr +qPk +hKe +tON bst bcS bag @@ -112382,18 +112491,18 @@ bCm bsP hgZ biA -mjE -nMa -mjE -wdA -pKs -pKs -pKs -wdA +knm +sPY +knm +wDr +ydA +ydA +ydA +wDr azD azD azD -wdA +wDr wjC bTO xMf @@ -112447,23 +112556,23 @@ aet afB akW biT -uIw -uIw -uIw -uIw -uIw -uWv -vSh -vSh -vSh -uWv -uWv -uWv -uWv -uWv -aaZ -oXo -lEI +njn +njn +njn +njn +njn +gxm +hWV +hWV +hWV +gxm +gxm +gxm +gxm +gxm +mYd +lOn +xwU ajl qhx akw @@ -112483,23 +112592,23 @@ ajl nMV vIf ajl -wLs -oXo -wFL -uWv -uWv -uWv -uWv -uWv -vSh -vSh -vSh -uWv -ykg -ykg -ykg -ykg -ykg +maF +lOn +nwu +gxm +gxm +gxm +gxm +gxm +hWV +hWV +hWV +gxm +nIN +nIN +nIN +nIN +nIN crh csI qhb @@ -112552,18 +112661,18 @@ djQ nFs aLW gFa -wdA +wDr aiR aiR aiR -wdA -pWp -pWp -pWp -wdA -fVq -mjz -fVq +wDr +hwH +hwH +hwH +wDr +qPk +hKe +qPk bst buj bev @@ -112585,18 +112694,18 @@ bCn bsz hMN biA -mjE -nMa -mjE -wdA -pKs -pKs -pKs -wdA +knm +sPY +knm +wDr +ydA +ydA +ydA +wDr azD azD azD -wdA +wDr xad roG mZr @@ -112655,18 +112764,18 @@ cWv cWv cWv cWv -dnh -rOa -fIh -fIh -rKX -sdF -eyZ -ipT -eyZ -obA -oXo -eBy +omp +kmx +xog +xog +vFy +ltt +fCP +vUO +fCP +xRn +lOn +kGS bVE aos akw @@ -112686,23 +112795,23 @@ ans aos alE bVE -eBy -oXo -lOj -ipT -gry -eyZ -sdF -rCX -pDl -pDl -fVL -lgo -eyZ -eyZ -eBy -eyZ -wPX +kGS +lOn +mnC +vUO +qRx +fCP +ltt +cuI +ocX +ocX +sYj +fvj +fCP +fCP +kGS +fCP +oiB baw baw qYC @@ -112755,18 +112864,18 @@ aLL aLL aLL hrF -wdA -wdA -wdA -wdA -wdA -tdU -cie -cie -wdA -gst -mjz -fVq +wDr +wDr +wDr +wDr +wDr +jXR +enK +enK +wDr +kgt +hKe +qPk bst aYQ bbd @@ -112788,18 +112897,18 @@ bnT btX byc biA -mjE -nMa -uPB -wdA -hKL -hKL -mwY -wdA -wdA -wdA -wdA -wdA +knm +sPY +qPU +wDr +sai +sai +wrN +wDr +wDr +wDr +wDr +wDr bSf bSf auX @@ -112858,18 +112967,18 @@ boL boL boL boL -dNw -iQP -eQV -eQV -eQV -sdF -uaR -uaR -uaR -uaR -fDZ -eQJ +fGD +bfb +qEc +qEc +qEc +ltt +gfv +gfv +gfv +gfv +aPC +tzF aEe akA akA @@ -112889,23 +112998,23 @@ akA oap aSb aEe -eQJ -adS -uaR -uaR -uaR -uaR -sdF -eQV -eQV -eQV -xRG -dNw -oao -oao -oao -oao -qyd +tzF +lzF +gfv +gfv +gfv +gfv +ltt +qEc +qEc +qEc +rWP +fGD +acQ +acQ +acQ +acQ +uQi baw vbB ley @@ -112951,25 +113060,25 @@ aKS aKV aKS aLL -jBI -sro -pAH -nqL -ecf -eNq -mLr -gnh -pWg -cOu -vNE -hXq -wmr -aeD -wmr -fqp -jUc -wdG -fVq +qVE +iGc +bwG +hCk +nRN +mzI +olQ +oCK +eob +gMk +qRb +axY +xrC +oWF +xrC +toQ +exl +qyX +qPk bst bst bst @@ -112979,7 +113088,7 @@ bst cjW rlZ rlZ -tZO +hrJ kan biy boX @@ -112991,25 +113100,25 @@ biA biA biA biA -xeY -dIs -qaT -vRp -gct -oyd -gKN -icS -kkd -kgg -cAY -wkR -nsx -hhG -sre -qhR -vOK -hVl -fkF +wHn +rDO +cIO +rEd +fml +fqU +bIO +rSA +cIm +emw +bvD +gZW +lUA +bwv +hDU +iNH +cDx +ndl +iDk bSf bWe bWp @@ -113061,18 +113170,18 @@ dux iYr dux ado -sdF -xxj -dsq -dsq -eoU -sdF -dsq -dsq -dsq -lwv -xJr -qyd +ltt +uVZ +qxK +qxK +rYG +ltt +qxK +qxK +qxK +bTD +mxg +uQi vOy vOy vOy @@ -113092,23 +113201,23 @@ vOy wMO wky sqf -flS -xJr -cQO -dsq -dsq -dsq -sdF -eoU -dsq -dsq -qcr -sdF -dsq -eBy -lcj -dsq -qcr +bNI +mxg +uIa +qxK +qxK +qxK +ltt +rYG +qxK +qxK +fdf +ltt +qxK +kGS +ftZ +qxK +fdf baw dBp gVA @@ -113154,25 +113263,25 @@ aKR aKR aKR aKR -xnn -wli -mfc -wli -wli -ijw -kYj -xnn -pAH -hxU -gLm -kni -xpq -xpq -xpq -mCj -fVq -jYZ -fVq +deq +lfx +jgK +lfx +lfx +yih +kgD +deq +bwG +vVy +gtD +vEv +cvI +cvI +cvI +aza +qPk +wKN +qPk kan ihw beW @@ -113182,7 +113291,7 @@ vhX akQ rlZ rlZ -jAl +pnC dBH bky ryt @@ -113194,25 +113303,25 @@ tAU xmT tAU kan -mjE -nMa -mjE -kTB -uVi -uVi -uVi -kTB -hmD -myN -lAR -exY -huZ -hmD -hqX -oSf -rng -hIq -cER +knm +sPY +knm +qEM +wzy +wzy +wzy +qEM +juo +seL +siC +jNw +xuy +juo +vqz +vMU +mJO +vDN +xbg bVU bVU bVU @@ -113273,9 +113382,9 @@ abE abE abE abE -wyV -bMh -qcr +bff +rnd +fdf vOy nos fcy @@ -113295,27 +113404,27 @@ ayX kXw pxo sqf -xxj -bMh -qcr -lYm -lYm -lYm -lYm -lYm -lYm -lYm -lYm -lYm -lYm -vhb -lYm -lYm -lYm -lYm -lYm -lYm -ckw +uVZ +rnd +fdf +mRU +mRU +mRU +mRU +mRU +mRU +mRU +mRU +mRU +mRU +oiq +mRU +mRU +mRU +mRU +mRU +mRU +woU aaa aaa aaa @@ -113356,26 +113465,26 @@ aaa aaa bdH aad -nnw -xnn -wli -pAH +kyw +deq +lfx +bwG aQF aQF aQF aQF szE aQF -mCg -sSu -kni -xtg -wKf -xtg -mCj -fVq -mjz -fVq +ihW +qOS +vEv +xkN +dwj +xkN +aza +qPk +hKe +qPk kan iMI rlZ @@ -113397,26 +113506,26 @@ wJb wJb bPu kan -mjE -nMa -mjE -kTB -fjv -wXD -pEh -kTB -cwC -ydw -rng -rng -rng +knm +sPY +knm +qEM +hEg +ewc +lLl +qEM +jvD +cBV +mJO +mJO +mJO bTq -rng -rng -rng -jbS -cER -qbs +mJO +mJO +mJO +mgb +xbg +lyW ajZ bdH aaa @@ -113476,9 +113585,9 @@ gwo aed aeG abE -tCM -nNz -tCM +umI +fsu +umI vOy oNp aSn @@ -113498,27 +113607,27 @@ niL kXw pxo sqf -tCM -kGa -tCM -lYm -wqU -wqU -wqU -wqU -sLJ +umI +uch +umI +mRU +qSw +qSw +qSw +qSw +fHM pBG rLp ttX -lYm -dhe -lYm -kDP -eYw -lEz -jsn -kyQ -ckw +mRU +vpf +mRU +vor +qnA +vkI +gNN +lyz +woU aaa aaa aaa @@ -113559,10 +113668,10 @@ aaa aaa bdH aad -nnw -sMe -wli -pAH +kyw +xwd +lfx +bwG weR aPE weR @@ -113576,9 +113685,9 @@ aQF aQF aQF aQF -rnu -dAn -sDE +mNG +pSF +eZC kan avW bZn @@ -113588,7 +113697,7 @@ vhX gDW rlZ rlZ -jmm +wYr dBH bky ryt @@ -113600,9 +113709,9 @@ xIk cLA xIk kan -uBI -naO -uJr +hBW +ltv +qEz bJt bJt bJt @@ -113610,16 +113719,16 @@ bJt bJt bJt bJt -rng -kks -kks -kks -kks -owS -rng -jbS -jbS -qbs +mJO +plv +plv +plv +plv +mvg +mJO +mgb +mgb +lyW ajZ bdH aaa @@ -113679,9 +113788,9 @@ adF aef dWw agA -xQl -xwT -vaA +okx +hgA +xfo vOy anz vgx @@ -113701,27 +113810,27 @@ aCC kXw pxo asn -xQl -sNu -vaA -lYm -wqU -wqU -wqU -wqU -wqU +okx +cFH +xfo +mRU +qSw +qSw +qSw +qSw +qSw pBG jZU jAe -lYm -iTV -lYm -oDh -xXD -vbJ -iTV -vLd -ckw +mRU +jtU +mRU +tNw +ebI +ukC +jtU +fCi +woU aaa aaa aaa @@ -113762,14 +113871,14 @@ aaa aaa bdH aad -nnw -xnn -eSH -pAH -xtr -xtr -jXC -jXC +kyw +deq +cGY +bwG +rUq +rUq +sab +sab izk aWD cWr @@ -113779,9 +113888,9 @@ eKT wan cTC aQF -aof -jYZ -hqM +syj +wKN +qqf xMs xMs xMs @@ -113791,7 +113900,7 @@ xMs cjW rlZ rlZ -bvm +jbO kan quv rZB @@ -113803,9 +113912,9 @@ vMo vMo vMo vMo -oRh -nMa -mHt +tzw +sPY +hkC bJt xOL gGI @@ -113813,16 +113922,16 @@ eeu gfq eFP gAz -rng -kks -kks -kks -kks -kks -rng -cER -rzK -qbs +mJO +plv +plv +plv +plv +plv +mJO +xbg +pgJ +lyW ajZ bdH aaa @@ -113882,9 +113991,9 @@ adF aef aef uZZ -eBy -tje -vGt +kGS +bNT +rmB vOy awQ oLU @@ -113904,27 +114013,27 @@ edv kXw pxo asn -dyG -oXo -vGt -lYm -wqU -wqU -wqU -wqU -wqU +eWN +lOn +rmB +mRU +qSw +qSw +qSw +qSw +qSw pBG cVq nOb -lYm -uCU -lYm -lYm -lYm -hdf -lYm -lYm -ckw +mRU +vpI +mRU +mRU +mRU +gBs +mRU +mRU +woU aaa aaa aaa @@ -113965,12 +114074,12 @@ aaa aaa bdH aad -nnw -xnn -dle -pAH -hys -jXC +kyw +deq +veq +bwG +pKh +sab rDv bmW jWu @@ -113982,9 +114091,9 @@ aRy aRy nIj aQF -iSC -mjz -fVq +rWv +hKe +qPk xMs aSO feY @@ -114006,9 +114115,9 @@ wZE iGn byd vMo -mjE -nMa -mjE +knm +sPY +knm lhB pOY bDs @@ -114016,16 +114125,16 @@ jge bDs bDs hLC -rng -kks -kks -kks -kks -kks -rng -cER -jbS -qbs +mJO +plv +plv +plv +plv +plv +mJO +xbg +mgb +lyW ajZ bdH aaa @@ -114085,9 +114194,9 @@ adF bls aeH agq -pIX -nSE -vGt +nIF +ijn +rmB vOy hng dnC @@ -114107,27 +114216,27 @@ aCt kXw pxo asn -dyG -pEH -dFr -lYm -wqU -wqU -wqU -wqU -wqU +eWN +jao +hCF +mRU +qSw +qSw +qSw +qSw +qSw pBG dzp ngV -lYm -iTV -iTV -qHK -uPD -dhe -rkS -dhe -ckw +mRU +jtU +jtU +uBx +fLi +vpf +prf +vpf +woU aaa aac aaf @@ -114168,10 +114277,10 @@ aaa aaa bdH aad -nnw -xnn -wbm -pAH +kyw +deq +deF +bwG mTi lJK kYV @@ -114185,9 +114294,9 @@ bQU bQU bjD dqE -bRl -eMK -eNL +htl +vaq +vTX xMs lOH dUS @@ -114209,9 +114318,9 @@ bof vit dxu vMo -mjE -nMa -mjE +knm +sPY +knm lhB xCb bDs @@ -114219,16 +114328,16 @@ bIJ bDs bDs qJS -rng -kks -kks -kks -kks -kks -rng -cER -cER -qbs +mJO +plv +plv +plv +plv +plv +mJO +xbg +xbg +lyW ajZ aaa avo @@ -114288,9 +114397,9 @@ adF aef kqN agA -dyG -xJr -dFr +eWN +mxg +hCF vOy xyt wiW @@ -114310,10 +114419,10 @@ vOy mFq vqW sqf -wal -pEH -vGt -lYm +jMP +jao +rmB +mRU pBG pBG pBG @@ -114322,15 +114431,15 @@ pBG pBG saL pBG -lYm -lYm -lYm -lYm -lYm -lYm -iTV -dhe -ckw +mRU +mRU +mRU +mRU +mRU +mRU +jtU +vpf +woU aaa aad aag @@ -114371,15 +114480,15 @@ aaa aaa bdH aad -nnw -xnn -dpD -pAH +kyw +deq +oWq +bwG aQF aQF aPH xIQ -mrm +tmX aWD rrK aRy @@ -114388,9 +114497,9 @@ brb cpp buv aWF -fVq -mjz -fVq +qPk +hKe +qPk xMs akE qGF @@ -114412,9 +114521,9 @@ ggz dka bye vMo -mjE -nMa -mjE +knm +sPY +knm lhB aQW bDs @@ -114429,9 +114538,9 @@ bJt bJt bJt bJt -cER -keN -qbs +xbg +otW +lyW ajZ avo avo @@ -114491,9 +114600,9 @@ aef aef tRD abE -jtr -xJr -vGt +ciI +mxg +rmB vOy iYf bIM @@ -114513,12 +114622,12 @@ hPe sdu btC vLj -pIX -nSE -vGt -jHw +nIF +ijn +rmB +dyJ pBG -hqJ +gqQ cHG nQA wph @@ -114530,10 +114639,10 @@ gel gel gel fkX -lYm -iTV -enA -ckw +mRU +jtU +tMU +woU aaf aag aag @@ -114574,10 +114683,10 @@ bdH bdH bdH aad -nnw -sMe -wli -pAH +kyw +xwd +lfx +bwG weR aPE izk @@ -114591,9 +114700,9 @@ aTY iCF gJP aQF -fwm -mjz -fVq +uNf +hKe +qPk xMs aYR dUS @@ -114615,9 +114724,9 @@ jZd vit bzo vMo -mjE -nMa -mjE +knm +sPY +knm lhB pxD bDs @@ -114632,9 +114741,9 @@ iIl bDs ujV bJt -cER -cER -qbs +xbg +xbg +lyW ajZ avo avs @@ -114694,9 +114803,9 @@ adF aef afs agA -dyG -oXo -vGt +eWN +lOn +rmB vOy mTp wiW @@ -114716,10 +114825,10 @@ lON dVu oDR vOP -eBy -gkl -aHV -eqV +kGS +fAW +vlR +qPv qvL wmP wmP @@ -114733,10 +114842,10 @@ cXF rLU dKp cHu -lYm -iTV -dhe -ckw +mRU +jtU +vpf +woU aag aag aag @@ -114777,12 +114886,12 @@ bdH bdH bdH aad -nnw -xnn -cnP -pAH -weW -jXC +kyw +deq +sJa +bwG +pGG +sab izk hds aQF @@ -114794,9 +114903,9 @@ qZH bsN buB aWD -fVq -mjz -fVq +qPk +hKe +qPk xMs bXw eiw @@ -114818,9 +114927,9 @@ boh qDP wbP vMo -mjE -nMa -hoT +knm +sPY +cbL bJt qom bDs @@ -114835,8 +114944,8 @@ idx hAz gHj bJt -ygb -cER +oqI +xbg avo avo avo @@ -114897,9 +115006,9 @@ adD sOw afs agA -dyG -oXo -vGt +eWN +lOn +rmB vOy axn dRh @@ -114919,10 +115028,10 @@ vOy aRd aIo vOy -vdI -oXo -vGt -bUH +gyb +lOn +rmB +aRl pBG lvb eAN @@ -114936,10 +115045,10 @@ bHk vZw bHk cHu -lYm -dhe -lYm -ckw +mRU +vpf +mRU +woU aag aag aag @@ -114980,10 +115089,10 @@ bdH bdH bdH aad -nnw -wli -xnn -mfc +kyw +lfx +deq +jgK aNs aNs hyw @@ -114997,9 +115106,9 @@ fHF bml buB aWD -sDE -dAn -sDE +eZC +pSF +eZC xMs xMs xMs @@ -115021,9 +115130,9 @@ vMo vMo vMo vMo -uBI -naO -fRF +hBW +ltv +kGw bJt bJt nFI @@ -115038,8 +115147,8 @@ gSk bDs bpI bJt -rrp -cER +jLH +xbg lpy avC avC @@ -115100,9 +115209,9 @@ adF aef afs agA -dyG -oXo -vGt +eWN +lOn +rmB vOy aAr pGK @@ -115122,9 +115231,9 @@ aCD hFC qmy vOy -dyG -oXo -vGt +eWN +lOn +rmB pBG pBG hEl @@ -115139,10 +115248,10 @@ vzp vZw erd cHu -lYm -eLq -lYm -ckw +mRU +vzB +mRU +woU aag aag aag @@ -115183,10 +115292,10 @@ bdH bdH bdH aad -nnw -dDd -sro -pAH +kyw +txp +iGc +bwG vMr vMr izk @@ -115200,9 +115309,9 @@ htL aUL buB aWD -fVq -mjz -fVq +qPk +hKe +qPk nyw iXU hDw @@ -115224,9 +115333,9 @@ vEH uFH tQd nyw -mjE -nMa -mjE +knm +sPY +knm yfS sEi dck @@ -115241,8 +115350,8 @@ gSk reL wiI bJt -kbz -meM +tqV +dSm avo avo avo @@ -115303,9 +115412,9 @@ aef aef pHG abE -jtr -pEH -vGt +ciI +jao +rmB vOy aID gLc @@ -115325,9 +115434,9 @@ aoM aoM vgB kgs -dyG -pEH -vGt +eWN +jao +rmB bvX ojQ eAN @@ -115342,10 +115451,10 @@ bHk vZw bHk cHu -lYm -dhe -lYm -ckw +mRU +vpf +mRU +woU aah aag aag @@ -115386,10 +115495,10 @@ bdH bdH bdH aad -nnw -kQZ -ohw -pAH +kyw +cme +whm +bwG mTi lJK izk @@ -115403,9 +115512,9 @@ aTZ aUM gJP aQF -bHU -jYZ -fVq +rmz +wKN +qPk nyw beH dcd @@ -115427,9 +115536,9 @@ beH beH beH nyw -mjE -nMa -mjE +knm +sPY +knm yfS hgL swt @@ -115444,9 +115553,9 @@ gSk bDs vwI bJt -qxb -jbS -qbs +lAa +mgb +lyW ajZ avo avs @@ -115506,9 +115615,9 @@ adF aef aGS agA -dyG -pEH -vGt +eWN +jao +rmB vOy aMd pGK @@ -115528,9 +115637,9 @@ prx fpT eVT kgs -dyG -pEH -vGt +eWN +jao +rmB bvX kVV vQR @@ -115545,10 +115654,10 @@ pRy wwW mRW cHu -lYm -iTV -dhe -ckw +mRU +jtU +vpf +woU aaa aad aag @@ -115589,15 +115698,15 @@ bdH bdH bdH aad -nnw -eSH -hWV -pAH +kyw +cGY +ipn +bwG aQF aQF sPc xIQ -jXC +sab aWD olM aRy @@ -115606,9 +115715,9 @@ eXr iFH buv aWE -fVq -nsO -bRl +qPk +ckh +htl aum emr emr @@ -115630,9 +115739,9 @@ rCO rCO rCO eVv -goS -dHS -mjE +wwE +mDZ +knm ykj rlQ ven @@ -115647,9 +115756,9 @@ gSk bDs fUB bJt -jbS -fLl -qbs +mgb +nhw +lyW ajZ avo avo @@ -115709,9 +115818,9 @@ adF aef nIS uZZ -eBy -pEH -vGt +kGS +jao +rmB vOy aMg aSo @@ -115731,16 +115840,16 @@ ger aoM aFf mmN -dyG -pEH -vGt +eWN +jao +rmB bvX maO lPm iZV fdx cuq -edn +eQJ fVF pBG qWR @@ -115748,10 +115857,10 @@ wJH wJH wJH sNR -lYm -iTV -dhe -ckw +mRU +jtU +vpf +woU aaa aae aah @@ -115792,10 +115901,10 @@ bdH bdH bdH aad -nnw -jtG -xnn -pAH +kyw +oif +deq +bwG weR aPE izk @@ -115809,9 +115918,9 @@ pOi pOi nVF aWF -fVq -jYZ -fVq +qPk +wKN +qPk nyw eGZ ieX @@ -115833,9 +115942,9 @@ bhq dcd eTd nyw -mjE -dIs -rDM +knm +rDO +hqp kKk rDt gpI @@ -115850,9 +115959,9 @@ gSk bDs nqO bJt -lBj -rzK -qbs +nQo +pgJ +lyW ajZ aaa avo @@ -115912,9 +116021,9 @@ adF aef nIS eWF -eBy -pEH -vGt +kGS +jao +rmB vOy aQZ bkT @@ -115932,11 +116041,11 @@ ggl jjS qMP kBP -qIB +aSl vOy -jtr -pEH -dFr +ciI +jao +hCF pBG pBG pBG @@ -115947,14 +116056,14 @@ pBG pBG pBG pBG -lYm -lYm -lYm -lYm -lYm -iTV -enA -ckw +mRU +mRU +mRU +mRU +mRU +jtU +tMU +woU bdH bdH bdH @@ -115995,12 +116104,12 @@ bdH bdH bdH aad -nnw -pDZ -wli -pAH -esV -esV +kyw +byt +lfx +bwG +iWQ +iWQ uFd mUq qwt @@ -116012,9 +116121,9 @@ tou tou jhy aQF -sDE -dPO -ojn +eZC +hMk +mkw bdd bdd bdd @@ -116036,9 +116145,9 @@ bdd bdd bdd bdd -uHi -naO -uBI +xwm +ltv +hBW yfS ape ven @@ -116053,9 +116162,9 @@ cnu bDs knK bJt -cER -wRn -qbs +xbg +oUZ +lyW ajZ bdH bdH @@ -116115,9 +116224,9 @@ adF aef kqN agA -dyG -oXo -vGt +eWN +lOn +rmB vOy dVd lea @@ -116137,27 +116246,27 @@ vti vti aEZ vOy -dyG -oXo -vGt +eWN +lOn +rmB fKh gQk trU oNY fdx pBG -eNw +pVF ppF fiE pBG -iTV -iTV -qHK -qsr -dhe -iTV -dhe -ckw +jtU +jtU +uBx +ycM +vpf +jtU +vpf +woU bdH bdH bdH @@ -116198,13 +116307,13 @@ bdH bdH bdH aad -nnw -vEQ -wli -pAH -esV -esV -jXC +kyw +jNo +lfx +bwG +iWQ +iWQ +sab aNr pQY aWD @@ -116215,9 +116324,9 @@ dVO bsR aQr aQF -fVq -jYZ -fVq +qPk +wKN +qPk tda ngI dkq @@ -116239,9 +116348,9 @@ qby btY bAJ huU -mjE -nMa -mjE +knm +sPY +knm yfS ape ven @@ -116256,9 +116365,9 @@ gSk ljG tSp bJt -cER -meC -qbs +xbg +ssk +lyW ajZ bdH bdH @@ -116318,9 +116427,9 @@ fcE aef uNN abE -wOm -oXo -vGt +iGZ +lOn +rmB vOy vOy vOy @@ -116340,9 +116449,9 @@ nPE oqZ uaI vOy -mKO -oXo -vGt +eFI +lOn +rmB fKh iuG sOv @@ -116353,14 +116462,14 @@ dzp rMT dzp pBG -iTV -lYm -lYm -lYm -lYm -dhe -lYm -ckw +jtU +mRU +mRU +mRU +mRU +vpf +mRU +woU bdH bdH bdH @@ -116401,10 +116510,10 @@ bdH bdH bdH aad -nnw -xnn -wli -pAH +kyw +deq +lfx +bwG mTi lJK mTi @@ -116418,9 +116527,9 @@ aQF aQF aQF aQF -dvK -rAc -kQm +ldb +rYI +fzc bdg vyg bni @@ -116442,9 +116551,9 @@ snb xbd bAU bdg -vze -lyP -sZW +jlD +pYN +raE bJt wbC lHu @@ -116459,9 +116568,9 @@ gSk oDE bJt bJt -cER -jbS -qbs +xbg +mgb +lyW ajZ bdH bdH @@ -116521,11 +116630,11 @@ aeI eva xzf abE -jtr -pEH -puV -rvt -vaA +ciI +jao +uZI +cSM +xfo vOy vOy vOy @@ -116543,9 +116652,9 @@ vOy vOy vOy vOy -wZt -pEH -vGt +czJ +jao +rmB fKh ubI nQA @@ -116556,14 +116665,14 @@ nTR gDp rwq pBG -iTV -lYm -fhb -vlj -lYm -eLq -lYm -ckw +jtU +mRU +oyO +nve +mRU +vzB +mRU +woU bdH bdH bdH @@ -116604,10 +116713,10 @@ bdH bdH bdH aad -nnw -dwU -wli -pAH +kyw +xbI +lfx +bwG aQF aQF aQF @@ -116617,13 +116726,13 @@ aQF aQF aQF aQF -beA -hmM -gFc -pAH -dJs -rTr -dJs +wYG +yhR +gHi +bwG +pzj +uhq +pzj bdg apz dyd @@ -116645,9 +116754,9 @@ vPw bvr bBQ bdg -nre -hyu -nre +sgL +aRL +sgL rde vjC iMm @@ -116661,10 +116770,10 @@ bDs gSk luS bJt -ebL -cER -jbS -qbs +uCw +xbg +mgb +lyW ajZ bdH bdH @@ -116706,11 +116815,11 @@ aaa aaa aaa aaa -qdy -rOR -jZD -rOR -rOR +vHn +cGd +moK +cGd +cGd aNi aNi bWr @@ -116724,11 +116833,11 @@ aNi aNi aNi aNi -mKO -pEH -uaR -uaR -vGt +eFI +jao +gfv +gfv +rmB vOy elR xXh @@ -116746,9 +116855,9 @@ dMK vOy vOy vOy -dyG -pEH -vGt +eWN +jao +rmB pBG mGT nQA @@ -116759,14 +116868,14 @@ pBG pBG pBG pBG -iTV -pmS -iTV -eLq -lYm -jDh -lYm -ckw +jtU +rXF +jtU +vzB +mRU +kuK +mRU +woU aaa aaa aaa @@ -116807,26 +116916,26 @@ bdH aaa bdH aad -nnw -xnn -xnn -pAH -uBS -vDZ -inq -sVv -jVi -pAH -cTc -cVZ -qvG -nqL -xnn -ecf -pAH -yep -dgL -yep +kyw +deq +deq +bwG +tEu +mUY +vOw +ouU +dro +bwG +gSH +xJp +qxJ +hCk +deq +nRN +bwG +wsS +vxY +wsS bdg auj bbf @@ -116848,9 +116957,9 @@ bpv tMW bBY bCh -oUo -xXC -oUo +mPM +esd +mPM ejw xML iMm @@ -116864,10 +116973,10 @@ bDs gSk vSp lHG -rHA -jbS -jbS -qbs +kOJ +mgb +mgb +lyW ajZ bdH bdH @@ -116909,11 +117018,11 @@ aaf aaf aaf aaf -qdy -qTv -oKB -oKB -nSm +vHn +ejV +hoT +hoT +vyh aNi cYT aNm @@ -116927,11 +117036,11 @@ bhx vif aOR bsw -dyG -rYs -onq -xAC -vGt +eWN +uSZ +rDm +ldq +rmB vOy wWz vHO @@ -116947,29 +117056,29 @@ ruc xOY wTM vOy -tKv -rvt -iif -pEH -dFr +qqb +cSM +fvE +jao +hCF pBG -bfO +tGT nQA nQA jDO pBG aYH cHG -cgd +cOY pBG -gck -lYm -cep -caL -lYm -iTV -dhe -ckw +mSM +mRU +gRc +oOp +mRU +jtU +vpf +woU aaf aaf aaf @@ -117003,33 +117112,33 @@ bdH bdH bdH aac -nnw -nnw -nnw -nnw -nnw -nnw -nnw -nnw -xnn -jkb -pAH -xhp -vVD -ftr -kmu -vdc -oTR -waY -kmu -byD -oBQ -kmu -kmu -dZT -fUz -oFs -owO +kyw +kyw +kyw +kyw +kyw +kyw +kyw +kyw +deq +caq +bwG +igb +cpz +ooA +kpj +sBY +wyG +qjL +kpj +rAo +lka +kpj +kpj +mQY +ygp +tdi +fZE tda mng wTm @@ -117051,9 +117160,9 @@ mng wTm wCI tda -npi -vJx -npi +oSM +ter +oSM bJt swE wpI @@ -117067,17 +117176,17 @@ qxE rui vSp bJt -ogj -cER -fLl -qbs -qbs -qbs -qbs -qbs -qbs -qbs -qbs +uXU +xbg +nhw +lyW +lyW +lyW +lyW +lyW +lyW +lyW +lyW ajY aaa aaa @@ -117112,11 +117221,11 @@ aag aag aag aag -qdy -bEj -nxJ -oKB -nxJ +vHn +dGg +tob +hoT +tob aNi aZe aNm @@ -117130,11 +117239,11 @@ aco aco dYu bsw -yks -fqX -nTU -pEH -dFr +cKW +xNl +dpS +jao +hCF vOy wWz anw @@ -117150,11 +117259,11 @@ wLy eiE wTM vOy -dyG -sfv -hJt -xVd -vGt +eWN +gFL +gDQ +xgE +rmB fKh eYn nQA @@ -117165,14 +117274,14 @@ eAN eAN eAN pBG -dhe -lYm -lYm -lYm -lYm -uCU -dhe -ckw +vpf +mRU +mRU +mRU +mRU +vpI +vpf +woU aag aag aag @@ -117205,22 +117314,22 @@ bdH bdH bdH bdH -nnw -nnw -nqL -mQQ -wli -wli -wli -xnn -xnn -xnn -wli -ddN -wli -oPY -oPs -sbA +kyw +kyw +hCk +maK +lfx +lfx +lfx +deq +deq +deq +lfx +eYp +lfx +vmq +cqH +tjO bdd bdd bdd @@ -117230,9 +117339,9 @@ bdd bdd bdd bdd -cnx -kCH -czH +nhE +naa +nVQ bdd vuA vuA @@ -117254,9 +117363,9 @@ vuA vuA vuA bdd -kko -vJx -raq +fvV +ter +gvK bdd bdd bdd @@ -117271,17 +117380,17 @@ cDC vuF bJt bJt -cER -jbS -jbS -jbS -aTu -iPm -jbS -jbS -jbS -qbs -qbs +xbg +mgb +mgb +mgb +gLm +ttD +mgb +mgb +mgb +lyW +lyW aaa aaa aaa @@ -117315,11 +117424,11 @@ aag aag aag aag -qdy -xIp -nxJ -nxJ -nxJ +vHn +oSG +tob +tob +tob aNi aZr aNm @@ -117335,9 +117444,9 @@ cCa aNi aNi aNi -wal -xJr -vGt +jMP +mxg +rmB vOy wWz ovG @@ -117353,11 +117462,11 @@ gxP aOe wTM vOy -gyR -oXo -oao -oao -vGt +nLM +lOn +acQ +acQ +rmB fKh wvo nQA @@ -117368,14 +117477,14 @@ skR oxc nBi pBG -eLq -lYm -mre -flK -lYm -iTV -enA -ckw +vzB +mRU +pGh +xEs +mRU +jtU +tMU +woU aag aag aag @@ -117408,22 +117517,22 @@ bdH bdH bdH bdH -nnw -cVZ -wli -xnn -ijw -xnn -xnn -wli -wli -wli -qkc -pAH -jEj -bTr -gVP -xiZ +kyw +xJp +lfx +deq +yih +deq +deq +lfx +lfx +lfx +rHq +bwG +nPO +cGB +ugj +fbC bdd uvU xZk @@ -117433,9 +117542,9 @@ eYj aSp mho bdg -owO -daA -owO +fZE +iLm +fZE bdg bqZ bqZ @@ -117457,9 +117566,9 @@ bqZ bqZ bqZ bdg -npi -cbo -npi +oSM +xub +oSM bdg lCE oZD @@ -117474,17 +117583,17 @@ feq loY aDU bJt -mHj -jbS -cER -jbS -kus -jbS -jbS -cER -cER -jbS -qbs +vAx +mgb +xbg +mgb +xpL +mgb +mgb +xbg +xbg +mgb +lyW aaa aaa aaa @@ -117518,11 +117627,11 @@ aag aag aag aag -qdy -pPq -nxJ -oKB -nxJ +vHn +oeH +tob +hoT +tob aNi aZs aNm @@ -117538,9 +117647,9 @@ qiy ahR ahR egt -eQJ -nmj -vGt +tzF +gIN +rmB vOy woh vgO @@ -117556,13 +117665,13 @@ qxm vgO xAe vOy -wYQ -pEH -bfG -fqX -miG +oxg +jao +iUV +xNl +xZf fKh -sSP +lDa eAN eAN vEG @@ -117571,14 +117680,14 @@ pBG pBG pBG pBG -dhe -whr -dhe -eLq -lYm -iQR -dhe -ckw +vpf +tra +vpf +vzB +mRU +iJT +vpf +woU aag aag aag @@ -117611,9 +117720,9 @@ bdH bdH bdH bdH -nnw -xnn -wli +kyw +deq +lfx nsY nsY pRT @@ -117623,10 +117732,10 @@ nsY nsY nsY nsY -pAH -pAH -vwU -pAH +bwG +bwG +msC +bwG bdd xwE dAQ @@ -117636,9 +117745,9 @@ tGG bpA mho bdg -owO -kCH -owO +fZE +naa +fZE bdg bqZ beH @@ -117660,9 +117769,9 @@ beH beH bqZ bdg -npi -vJx -npi +oSM +ter +oSM bdg lCE uek @@ -117685,9 +117794,9 @@ nsY nsY nsY nsY -ogM -jbS -qbs +kqb +mgb +lyW aaa aaa aaa @@ -117721,11 +117830,11 @@ aag aag aag aag -qdy -brD -oKB -oKB -oKB +vHn +mId +hoT +hoT +hoT aNi jWr aNm @@ -117741,9 +117850,9 @@ hpY aOR aOR bgK -eBy -xJr -vGt +kGS +mxg +rmB vOy vOy vOy @@ -117759,29 +117868,29 @@ aoK vOy vOy vOy -oFZ -pEH -vGt -lYm -lYm +glc +jao +rmB +mRU +mRU pBG aGs eAN eAN vEG vrJ -tQM +xOs kOH hIs pBG -gck -lYm -kqu -dhe -whr -dhe -lYm -ckw +mSM +mRU +tCd +vpf +tra +vpf +mRU +woU aag aag aag @@ -117814,9 +117923,9 @@ aaa aaa aaa aaa -nnw -wli -xnn +kyw +lfx +deq nsY xWT kxd @@ -117826,10 +117935,10 @@ rSG rur oqS nsY -hnK -niy -xnn -fLI +hsh +cPP +deq +eLH bdd eUZ lCr @@ -117839,9 +117948,9 @@ tGG lJD mho bdg -owO -kCH -owO +fZE +naa +fZE bdg bqZ beH @@ -117863,9 +117972,9 @@ gBo beH bqZ bdg -npi -vJx -npi +oSM +ter +oSM bdg lCE fMe @@ -117888,9 +117997,9 @@ rSG qkP oqS nsY -jbS -jbS -qbs +mgb +mgb +lyW aaa aaa aaa @@ -117924,11 +118033,11 @@ aag aag aag aag -qdy -rMG -fra -rOR -jZD +vHn +eDq +jFI +cGd +moK aNi aNi aNi @@ -117944,9 +118053,9 @@ aOR aOR agr aNi -dyG -tje -vGt +eWN +bNT +rmB vOy vOy vOy @@ -117962,11 +118071,11 @@ vOy vOy vOy vOy -mba -tje -vGt -lYm -dhe +kbT +bNT +rmB +mRU +vpf pBG xiU xUa @@ -117977,14 +118086,14 @@ pZH nnL lgt pBG -uCU -lYm -aHx -iTV -lYm -eLq -lYm -ckw +vpI +mRU +bhV +jtU +mRU +vzB +mRU +woU aag aag aag @@ -118017,9 +118126,9 @@ aaa aaa aaa aaa -nnw -wli -xnn +kyw +lfx +deq nsY xWT kxd @@ -118029,10 +118138,10 @@ iIP kxd dDt nsY -krA -xnn -xnn -uoF +exb +deq +deq +qLY bdd ljW bDP @@ -118042,9 +118151,9 @@ lCr mpn pZR bdd -mqu -tvc -mqu +atH +iEM +atH bCx bqZ beH @@ -118066,9 +118175,9 @@ bgO beH bqZ bCx -npi -vJx -npi +oSM +ter +oSM bdd tSF lsn @@ -118091,9 +118200,9 @@ dmR kxd dDt nsY -jbS -cER -qbs +mgb +xbg +lyW aaa aaa aaa @@ -118127,15 +118236,15 @@ aag aag aag aag -qdy -rOR -rOR -rOR -rLQ -rJF -rMG -rMG -rMG +vHn +cGd +cGd +cGd +iTQ +lWt +eDq +eDq +eDq aNi aNi aNi @@ -118147,9 +118256,9 @@ aNi aNi aNi aNi -oFZ -tje -vGt +glc +bNT +rmB bPF aqG ata @@ -118162,14 +118271,14 @@ vYz awR uoi vOy -pOR -vlf +jyJ +niF bPF -jtr -oXo -vGt -lYm -dhe +ciI +lOn +rmB +mRU +vpf pBG pBG pBG @@ -118180,14 +118289,14 @@ pBG pBG pBG pBG -iTV -lYm -lYm -lYm -lYm -dhe -lYm -ckw +jtU +mRU +mRU +mRU +mRU +vpf +mRU +woU aag aag aag @@ -118220,9 +118329,9 @@ aaa aaa aaa aaa -nnw -wli -xnn +kyw +lfx +deq nsY gsg vHq @@ -118232,10 +118341,10 @@ rNb bxC jiU nsY -dXU -tIN -xnn -vgY +jvt +hiu +deq +vSr bdd asr asr @@ -118245,9 +118354,9 @@ nYp fZG phd pmv -kcR -vXV -owO +mzv +yfg +fZE nyw bqZ beH @@ -118269,9 +118378,9 @@ tmB eBg vKe eVv -rqn -onn -rqn +cVZ +xdf +cVZ hLS vKe vKe @@ -118294,9 +118403,9 @@ iSm bxC jiU nsY -jbS -cER -qbs +mgb +xbg +lyW aaa aaa aaa @@ -118320,39 +118429,39 @@ aaa aaa aaa aaa -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -oKB -nxJ -nxJ -oKB -nxJ -nxJ -mvu -oKB -nxJ -nxJ -nxJ -nxJ -oKB -nSm -oKB -nxJ -nxJ -cLx -eBy -tje -eBy +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +hoT +tob +tob +hoT +tob +tob +hqm +hoT +tob +tob +tob +tob +hoT +vyh +hoT +tob +tob +fkK +kGS +bNT +kGS cbg aqG atb @@ -118365,42 +118474,42 @@ paa sXd gVq vOy -dan -vlf +sLk +niF cbg -eBy -oXo -eBy -pmS -iTV -iTV -dhe -qsr -leZ -iTV -iTV -dhe -qsr -dhe -iTV -iTV -iTV -qHK -uPD -iTV -dhe -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv +kGS +lOn +kGS +rXF +jtU +jtU +vpf +ycM +tne +jtU +jtU +vpf +ycM +vpf +jtU +jtU +jtU +uBx +fLi +jtU +vpf +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm aaa aaa aaa @@ -118423,9 +118532,9 @@ aaa aac aaf aaf -nnw -wli -xnn +kyw +lfx +deq nsY nsY qxC @@ -118435,10 +118544,10 @@ nsY ntx nsY nsY -biv -oSy -waS -pJE +qWL +kIk +eXD +kMr bdd bdd bdd @@ -118448,9 +118557,9 @@ bdd bdd bdd bdd -owO -daA -owO +fZE +iLm +fZE bdg bqZ beH @@ -118472,9 +118581,9 @@ bgO beH bqZ bdg -npi -cbo -npi +oSM +xub +oSM bdd bdd bdd @@ -118497,9 +118606,9 @@ nsY gLZ nsY nsY -jbS -fLl -qbs +mgb +nhw +lyW aaf aaf ajY @@ -118523,7 +118632,7 @@ aaa aaa aaa aaa -uWv +gxm dxF dxF aaH @@ -118534,28 +118643,28 @@ aam aam aam aam -uWv -dRE -nxJ -rOR -rOR -rOR -rOR -rOR -rOR -rOR -rOR -rOR -rOR -rOR -rOR +gxm +hgk +tob +cGd +cGd +cGd +cGd +cGd +cGd +cGd +cGd +cGd +cGd +cGd +cGd aej aej aej aej -lLl -tje -toe +jZW +bNT +rZC vOy vOy vOy @@ -118571,28 +118680,28 @@ vOy vOy vOy vOy -iIJ -oXo -kKf -lYm -lYm -lYm -lYm -lYm -lYm -lYm -lYm -lYm -lYm -lYm -lYm -lYm -lYm -lYm -lYm -iTV -dhe -uWv +bxV +lOn +uAi +mRU +mRU +mRU +mRU +mRU +mRU +mRU +mRU +mRU +mRU +mRU +mRU +mRU +mRU +mRU +mRU +jtU +vpf +gxm aeT aeT aeT @@ -118603,7 +118712,7 @@ aeT nnD aZF aZF -uWv +gxm aaa aaa aaa @@ -118624,11 +118733,11 @@ aaa aaa aaa aad -nnw -nnw -nnw -xnn -jkb +kyw +kyw +kyw +deq +caq nsY tUS bNh @@ -118638,10 +118747,10 @@ fPp lqN vlO nsY -kkj -mIX -lls -wli +xxG +smA +ktR +lfx bdd dJI jaf @@ -118651,9 +118760,9 @@ mPR osU vKe dYX -kcR -hFU -owO +mzv +xhW +fZE bdg bqZ beH @@ -118675,9 +118784,9 @@ bgO beH bqZ bdg -npi -mEr -rqn +oSM +iOo +cVZ iUk cIx fUC @@ -118700,11 +118809,11 @@ iQt uZo xmJ nsY -cER -jbS -qbs -qbs -qbs +xbg +mgb +lyW +lyW +lyW ajZ aaa aaa @@ -118726,7 +118835,7 @@ aaa aaa aaa aaa -uWv +gxm dxF dxF aaH @@ -118737,28 +118846,28 @@ aam aam aam aam -uWv -tvm -nxJ -rOR -ivy -ivy -ivy -ivy -lYS -ivy -ivy -ivy -ivy -lYS +gxm +bLf +tob +cGd +vVY +vVY +vVY +vVY +kLB +vVY +vVY +vVY +vVY +kLB aej aeO afG ags aej -dyG -tje -vGt +eWN +bNT +rmB vOy elR xXh @@ -118774,28 +118883,28 @@ xXh xXh dMK vOy -dyG -oXo -vGt -lYm -vWb -fDC -vWb -lYm -wqU -wqU -wqU -wqU -tJa -wqU -wqU -wqU -wqU -tJa -lYm -iTV -kFL -uWv +eWN +lOn +rmB +mRU +bnF +lBw +bnF +mRU +qSw +qSw +qSw +qSw +urg +qSw +qSw +qSw +qSw +urg +mRU +jtU +nVE +gxm aeT aeT aeT @@ -118806,7 +118915,7 @@ aeT nnD aZF aZF -uWv +gxm aaa aaa aaa @@ -118826,12 +118935,12 @@ aaa aaa aaa aaa -nnw -nnw -dle -xnn -xnn -wli +kyw +kyw +veq +deq +deq +lfx nsY kio sJY @@ -118841,10 +118950,10 @@ xTW oGP cnM nsY -foa -chi -chi -xnn +kqB +txH +txH +deq bdd fva lkL @@ -118854,9 +118963,9 @@ cHB hDV vmP bdd -owO -daA -owO +fZE +iLm +fZE bdg bqZ bqZ @@ -118878,9 +118987,9 @@ bgO bqZ bqZ bdg -npi -cbo -npi +oSM +xub +oSM bdd oNP tge @@ -118903,12 +119012,12 @@ pyc uMn ivz nsY -cER -jbS -cER -cER -qbs -qbs +xbg +mgb +xbg +xbg +lyW +lyW aaa aaa aaa @@ -118929,7 +119038,7 @@ aaa aaa aaa aaa -uWv +gxm dxF dxF aaH @@ -118940,28 +119049,28 @@ aam aam aam aam -uWv -qXe -nxJ -rOR -ivy -ivy -ivy -ivy -ivy -ivy -ivy -ivy -ivy -ivy +gxm +rGz +tob +cGd +vVY +vVY +vVY +vVY +vVY +vVY +vVY +vVY +vVY +vVY aej aeP agI aia yaz -eBy -xJr -vGt +kGS +mxg +rmB vOy wWz vHO @@ -118977,28 +119086,28 @@ uXj rdt wTM vOy -dyG -pEH -vGt -uai -iTV -tzZ -lOt -lYm -wqU -wqU -wqU -wqU -wqU -wqU -wqU -wqU -wqU -wqU -lYm -iTV -wlQ -uWv +eWN +jao +rmB +eyI +jtU +jaW +vkV +mRU +qSw +qSw +qSw +qSw +qSw +qSw +qSw +qSw +qSw +qSw +mRU +jtU +bWg +gxm aeT aeT aeT @@ -119009,7 +119118,7 @@ aeT nnD aZF aZF -uWv +gxm aaa aaa aaa @@ -119029,12 +119138,12 @@ aaa aaa aaa aaa -nnw -cXh -wli -wli -wli -wli +kyw +lHB +lfx +lfx +lfx +lfx heK kam axc @@ -119044,10 +119153,10 @@ vHh pvh sZs nsY -pAH -mtR -vmZ -jkb +bwG +erL +scX +caq bdd cDH cHB @@ -119057,9 +119166,9 @@ wmz rhy rec bdg -owO -kCH -sVp +fZE +naa +onn bdd bdd bDQ @@ -119081,9 +119190,9 @@ bgO cab bdd bdd -alu -vJx -npi +tmE +ter +oSM bdg jLS xdP @@ -119106,12 +119215,12 @@ xuQ uPW kYv oDx -lTL -lTL -lTL -tzC -cER -qbs +sAS +sAS +sAS +rCh +xbg +lyW aaa aaa aaa @@ -119132,39 +119241,39 @@ aaa aaa aaa aaa -uWv +gxm adj apk apk -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -euu -yma -rOR -ivy -ivy -ivy -ivy -ivy -ivy -ivy -ivy -ivy -ivy +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +hqb +vsd +cGd +vVY +vVY +vVY +vVY +vVY +vVY +vVY +vVY +vVY +vVY aej aeQ agK agu eup -eBy -xJr -vGt +kGS +mxg +rmB vOy wWz uwZ @@ -119180,39 +119289,39 @@ coZ sNz wTM vOy -dyG -pEH -vGt -uai -sbU -fWj -kdX -lYm -wqU -wqU -wqU -wqU -wqU -wqU -wqU -wqU -wqU -wqU -lYm -dDo -lqL -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv +eWN +jao +rmB +eyI +yfL +sjw +xHD +mRU +qSw +qSw +qSw +qSw +qSw +qSw +qSw +qSw +qSw +qSw +mRU +jZo +hQK +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm asM asM mwR -uWv +gxm aaa aaa aaa @@ -119232,12 +119341,12 @@ aaa aaa aaa aaa -nnw -hpO -wli -pzi -pAH -pAH +kyw +eqm +lfx +vvH +bwG +bwG nsY wpz oEX @@ -119247,10 +119356,10 @@ xxm qSK ieu nsY -aSV -wli -eKE -xnn +mZc +lfx +neH +deq bdd xXW gVu @@ -119260,10 +119369,10 @@ wmz vbI rec bdg -mqu -tvc -mqu -nxg +atH +iEM +atH +ppV bdd bqZ bgO @@ -119283,10 +119392,10 @@ gAj bgO bqZ bdd -eXc -iIQ -uYP -iIQ +eoy +brq +jnc +brq bdg jLS frb @@ -119309,12 +119418,12 @@ mzV pML ivz nsY -gcu -jbS -cER -fKC -dvD -qbs +iZd +mgb +xbg +jPx +xQd +lyW aaa aaa aaa @@ -119335,7 +119444,7 @@ aaa aaa aaa aaa -uWv +gxm ojH ojH taV @@ -119349,25 +119458,25 @@ ouf aLc wBI hGG -rOR -ivy -ivy -ivy -ivy -ivy -ivy -ivy -ivy -ivy -ivy +cGd +vVY +vVY +vVY +vVY +vVY +vVY +vVY +vVY +vVY +vVY aej aeR agK agu aej -upz -gmL -aVw +ftb +mqR +djd vOy wWz pEJ @@ -119383,25 +119492,25 @@ xQm tfH wTM vOy -sTX -xXm -miG -uai -jEm -iTV -ety -lYm -wqU -wqU -wqU -wqU -wqU -wqU -wqU -wqU -wqU -wqU -lYm +ddx +pFf +xZf +eyI +byH +jtU +nvd +mRU +qSw +qSw +qSw +qSw +qSw +qSw +qSw +qSw +qSw +qSw +mRU vmJ elv vRR @@ -119415,7 +119524,7 @@ qXS hXX xDe xDe -uWv +gxm aaa aaa aaa @@ -119435,12 +119544,12 @@ aaa aaa aaa aaa -nnw -slx -xnn -xnn -mSc -wgw +kyw +htg +deq +deq +qCH +cXm nsY hUz dbn @@ -119450,10 +119559,10 @@ uRM ipe ehR nsY -sEE -wli -tLD -rMk +xEe +lfx +tdH +igw bdd sgm kEg @@ -119463,10 +119572,10 @@ xgN vgn xgN bdg -owO -kCH -owO -owO +fZE +naa +fZE +fZE bdg bqZ qMR @@ -119486,10 +119595,10 @@ tXb fOk bqZ bdg -npi -npi -vJx -npi +oSM +oSM +ter +oSM bdg vLg loy @@ -119512,12 +119621,12 @@ sZH rjV ivz nsY -eCZ -rEF -vDk -woQ -kHx -qbs +qZy +jfS +bUH +ciB +soT +lyW aaa aaa aaa @@ -119538,7 +119647,7 @@ aaa aaa aaa aaa -uWv +gxm ojH ojH taV @@ -119552,25 +119661,25 @@ ouf sdf cRL hGG -rOR -rOR -rOR +cGd +cGd +cGd ahi -rOR -rOR -rOR -rOR +cGd +cGd +cGd +cGd uux -rOR -rOR +cGd +cGd aej aej agO aid aej -tCM -nNz -tCM +umI +fsu +umI vOy wWz uwZ @@ -119586,25 +119695,25 @@ vfP sNz wTM vOy -tCM -nNz -tCM -lYm -lYm -yjf -lYm -lYm -lYm -lYm +umI +fsu +umI +mRU +mRU +veW +mRU +mRU +mRU +mRU nNX -lYm -lYm -lYm -lYm +mRU +mRU +mRU +mRU ayo -lYm -lYm -lYm +mRU +mRU +mRU cna nzD xDV @@ -119618,7 +119727,7 @@ qXS hXX xDe xDe -uWv +gxm aaa aaa aaa @@ -119638,12 +119747,12 @@ aaa aaa aaa aaa -nnw -wli -wli -ijw -mSc -hYE +kyw +lfx +lfx +yih +qCH +spT nsY nsY nsY @@ -119653,10 +119762,10 @@ nsY nsY nsY nsY -pAH -pAH -pAH -pAH +bwG +bwG +bwG +bwG bdd bdd bdd @@ -119666,10 +119775,10 @@ bdd bdd bdd bdd -cwe -kCH -laC -owO +tvl +naa +meQ +fZE bdg bqZ beH @@ -119689,10 +119798,10 @@ gAj beH bqZ bdg -npi -jEv -vJx -raq +oSM +awE +ter +gvK bdd bdd bdd @@ -119715,12 +119824,12 @@ nsY nsY nsY nsY -fXy -leL -kIr -nZp -ffL -qbs +ecj +bZf +lZI +faR +wxu +lyW aaa aaa aaa @@ -119741,7 +119850,7 @@ aaa aaa aaa aaa -uWv +gxm ojH ojH taV @@ -119766,14 +119875,14 @@ cuN cQW lQa wjE -cgj -mcY -eBy -eBy -wvN -hAb -waH -bVW +vuE +bkb +kGS +kGS +pvi +bgh +spW +pjQ vOy wWz qxP @@ -119789,14 +119898,14 @@ gxP nMe wTM vOy -hAb -waH -bVW -bnO -mcY -eBy -jHs -mse +bgh +spW +pjQ +eJg +bkb +kGS +rRf +pOC qtj fpA qUx @@ -119821,7 +119930,7 @@ qXS hXX xDe xDe -uWv +gxm aaa aaa aaa @@ -119841,38 +119950,38 @@ aaa aaa aaa aaa -nnw -wli -xnn -pAH -pAH -pAH -pAH -pAH -pAH -woW -gwW -fCd -mqu -xVi -cqX -xVi -qAc -xYg -xVi -mqu -aCy -oZC -aCy -aCy -rJE -aCy -mqu -owO -owO -kCH -laC -owO +kyw +lfx +deq +bwG +bwG +bwG +bwG +bwG +bwG +kUI +bFB +iPt +atH +sCg +hgs +sCg +osX +uCt +sCg +atH +eUf +pwx +eUf +eUf +rIP +eUf +atH +fZE +fZE +naa +meQ +fZE bdg bqZ beH @@ -119892,38 +120001,38 @@ beH beH bqZ bdg -npi -jEv -vJx -npi -npi -iIQ -pWT -lnE -nlt -nlt -nlt -nlt -iIQ -jzu -jzu -gnV -gtT -eUj -jzu -iIQ -xdt -ckO -mZg -rng -rng -rng -rng -rng -rng -fKC -jbS -qbs +oSM +awE +ter +oSM +oSM +brq +mdC +qWK +lyq +lyq +lyq +lyq +brq +eMI +eMI +gjg +bom +kiy +eMI +brq +cSP +cSH +svt +mJO +mJO +mJO +mJO +mJO +mJO +jPx +mgb +lyW aaa aaa aaa @@ -119944,17 +120053,17 @@ aaa aaa aaa aaa -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm dho wVt wVt @@ -119969,14 +120078,14 @@ jlc kbv dTn ngE -oao -oao -oao -oao -nJJ -deW -tje -fqN +acQ +acQ +acQ +acQ +xdl +klr +bNT +dOW vOy woh vgO @@ -119992,14 +120101,14 @@ vgO vgO xAe vOy -jkp -hlP -eYx -rzC -oSP -oSP -oSP -oSP +gTV +mGk +xFW +lrd +kkI +kkI +kkI +kkI usL gsC cMz @@ -120014,17 +120123,17 @@ qLg iup ryY cnn -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv -uWv +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm aaa aaa aaa @@ -120044,38 +120153,38 @@ aaa aaa aaa aaa -nnw -wli -xnn -pAH -pCe -pCe -pCe -vbk -pAH -gSG -kHb -usF -eYd -gKn -gKn -gKn -gKn -gKn -gKn -eYd -gKn -gKn -gKn -gKn -gKn -gKn -eYd -ndb -gKn -iTf -laC -owO +kyw +lfx +deq +bwG +ycl +ycl +ycl +jCg +bwG +eNL +pVr +oHs +osQ +tpR +tpR +tpR +tpR +tpR +tpR +osQ +tpR +tpR +tpR +tpR +tpR +tpR +osQ +wxp +tpR +baW +meQ +fZE bdg bqZ beH @@ -120095,38 +120204,38 @@ beH beH bqZ bdg -npi -jEv -hWi -grT -rqn -kAC -grT -grT -grT -grT -grT -grT -kAC -grT -grT -grT -grT -grT -grT -kAC -hPF -fed -mNB -rng -kks -kks -kks -xOb -rng -vKU -fLl -qbs +oSM +awE +jas +jhA +cVZ +qWx +jhA +jhA +jhA +jhA +jhA +jhA +qWx +jhA +jhA +jhA +jhA +jhA +jhA +qWx +ldW +mkx +eWv +mJO +plv +plv +plv +mbR +mJO +eBG +nhw +lyW aaa aaa aaa @@ -120154,10 +120263,10 @@ aag aag aag aag -qdy -xEq -oKB -oFg +vHn +fbe +hoT +rpG bGa dVn vwC @@ -120172,14 +120281,14 @@ sdv xMO wDg vHA -myx -mMC -eBy -eBy -wtW -stm -wXf -cBq +waV +iGE +kGS +kGS +pjY +gqv +hKJ +nww vOy vOy vOy @@ -120195,14 +120304,14 @@ vOy vOy vOy vOy -kYs -lZt -cBq -jeN -vsK -eBy -vJd -vMt +xvO +peu +nww +vcO +ssF +kGS +bij +hux kfo rCl ePM @@ -120217,10 +120326,10 @@ dbc cNM ofU njk -pmS -iTV -eLq -ckw +rXF +jtU +vzB +woU aag aag aag @@ -120247,38 +120356,38 @@ aaa aaa aaa aaa -nnw -wli -xnn -pAH -pCe -pCe -pCe -pCe -pAH -iaZ -uIX -xEs -mqu -nyF -nyF -uFK -oXn -cGi -twL -mqu -lPo -cek -bEV -pzR -dvH -oTv -mqu -owO -laC -tvc -laC -sVp +kyw +lfx +deq +bwG +ycl +ycl +ycl +ycl +bwG +xgk +oUi +tLZ +atH +xSx +xSx +fBi +tXo +mBa +pYh +atH +wMl +aAU +dkP +dsY +rwj +xZR +atH +fZE +meQ +iEM +meQ +onn bdd bDQ mng @@ -120298,38 +120407,38 @@ vUe kuw cab bdd -alu -jEv -uYP -jEv -npi -iIQ -oFL -oFL -xAv -dKO -lEX -knN -iIQ -jHy -dpP -ihK -gqh -diG -diG -iIQ -vQo -eeH -tJn -rng -kks -kks -kks -kks -rng -fKC -rOD -qbs +tmE +awE +jnc +awE +oSM +brq +gOS +gOS +sLX +bIj +jtZ +eLu +brq +xpl +exc +jCx +mqt +vno +vno +brq +wDG +ihI +fnc +mJO +plv +plv +plv +plv +mJO +jPx +enQ +lyW aaa aaa aaa @@ -120357,73 +120466,73 @@ aag aag aag aag -qdy -gLo -nxJ -rOR -rOR -rOR -rOR -rOR -rOR -rOR +vHn +ggD +tob +cGd +cGd +cGd +cGd +cGd +cGd +cGd hZE sVV oON -rOR -rOR -leQ -rOR -rOR +cGd +cGd +cva +cGd +cGd ael ael agQ aih ael -hlW -tje -kTp -sdF -jed -jed -xoX -jed -jed -jed -jed -jed -jed -jed -xoX -jed -jed -sdF -bxQ -tje -kru -lYm -lYm -hdf -lYm -lYm -lYm -hdf -lYm -lYm -lYm +htF +bNT +jvz +ltt +pPU +pPU +ecz +pPU +pPU +pPU +pPU +pPU +pPU +pPU +ecz +pPU +pPU +ltt +riK +bNT +hmB +mRU +mRU +gBs +mRU +mRU +mRU +gBs +mRU +mRU +mRU mKi sfT hGV -lYm -lYm -lYm -lYm -lYm -lYm -lYm -dhe -enA -ckw +mRU +mRU +mRU +mRU +mRU +mRU +mRU +vpf +tMU +woU aag aag aag @@ -120450,18 +120559,18 @@ aaa aaa aaa aaa -nnw -wli -xnn -pAH -pCe -pCe -pCe -pCe +kyw +lfx +deq +bwG +ycl +ycl +ycl +ycl jUx -owO -eWf -vES +fZE +bBR +tup jeb jeb jeb @@ -120477,11 +120586,11 @@ mWy jeb jeb jeb -owO -laC -tvc -laC -owO +fZE +meQ +iEM +meQ +fZE bdg bqZ udi @@ -120501,11 +120610,11 @@ veu mDW bqZ bdg -npi -jEv -uYP -jEv -npi +oSM +awE +jnc +awE +oSM vra vra vra @@ -120521,18 +120630,18 @@ rJx vra vra vra -ndl -fed -npi +uGf +mkx +oSM vfo -kks -kks -kks -kks -rng -xIB -xcC -qbs +plv +plv +plv +plv +mJO +nEl +bhy +lyW aaa aaa aaa @@ -120560,73 +120669,73 @@ aag aag aag aag -qdy -dRE -oKB -oKB -rOR -ivy -ivy -ivy -pJa -rOR +vHn +hgk +hoT +hoT +cGd +vVY +vVY +vVY +tvS +cGd xVe sVV mbx -rOR -bJK -tsI -hkF -mEL +cGd +orq +rRb +qjT +kRk ael afE agT agT ael -nyR -oXo -oao -sdF -oao -uaR -uaR -uaR -oao -uaR -uaR -uaR -oao -uaR -uaR -uaR -eDW -sdF -oao -tje -qXW -lYm -eSp -dhe -eSp -lYm -jnl -iTV -iTV -gOf -lYm +oPT +lOn +acQ +ltt +acQ +gfv +gfv +gfv +acQ +gfv +gfv +gfv +acQ +gfv +gfv +gfv +jRg +ltt +acQ +bNT +oNa +mRU +tih +vpf +tih +mRU +jwM +jtU +jtU +jHX +mRU aDS sfT hGV -lYm -wqU -wqU -wqU -axT -lYm -pzA -iTV -iTV -ckw +mRU +qSw +qSw +qSw +vMQ +mRU +upS +jtU +jtU +woU aag aag aag @@ -120653,18 +120762,18 @@ aac aaf aaf aaf -nnw -xnn -wli -pAH -pCe -pCe -pCe -pCe -pAH -hKX -laC -vfc +kyw +deq +lfx +bwG +ycl +ycl +ycl +ycl +bwG +hiP +meQ +czN jeb vlX aNx @@ -120680,11 +120789,11 @@ xHp hmF vlX jeb -jJF -laC -tvc -laC -owO +bMf +meQ +iEM +meQ +fZE bdg bqZ udi @@ -120704,11 +120813,11 @@ fIZ mDW bqZ bdg -npi -jEv -uYP -jEv -fcv +oSM +awE +jnc +awE +eOx vra asX chf @@ -120724,18 +120833,18 @@ lpt mgF asX vra -vHL -fed -wFk -rng -kks -kks -kks -kks -rng -xIB -nuH -qbs +pHh +mkx +hNv +mJO +plv +plv +plv +plv +mJO +nEl +rxe +lyW aaf aaf aaf @@ -120763,73 +120872,73 @@ aag aag aag aag -qdy -qdy -nxJ -nxJ -rOR -ivy -ivy -ivy -ivy -rOR +vHn +vHn +tob +tob +cGd +vVY +vVY +vVY +vVY +cGd hHe gxn ioH -rOR -wLM -nxJ -vhM -qFp +cGd +mNS +tob +hvq +pCQ ael afH agV ain ael -fxX -pEH -nNN -sdF -tpB -nNN -tpB -vtg -ulD -iAM -iAM -iAM -ulD -iBT -tpB -oYD -tpB -sdF -oYD -tje -yiL -lYm -lYm -iTV -ajq -lYm -yaa -dhe -iTV -yaa -lYm +bMV +jao +tbF +ltt +dZP +tbF +dZP +eQh +mTo +tCD +tCD +tCD +mTo +wyE +dZP +dKD +dZP +ltt +dKD +bNT +enF +mRU +mRU +jtU +wlB +mRU +bBc +vpf +jtU +bBc +mRU uRY pMA waJ -lYm -wqU -wqU -wqU -wqU -lYm -lcL -dhe -ckw -ckw +mRU +qSw +qSw +qSw +qSw +mRU +oNM +vpf +woU +woU aag aag aag @@ -120856,18 +120965,18 @@ aad aag aag aag -nnw -pDq -uxx -pAH -pCe -pCe -pCe -pCe -pAH -pMh -laC -ePV +kyw +xkb +dAA +bwG +ycl +ycl +ycl +ycl +bwG +cVf +meQ +jTt jeb obE tdE @@ -120883,11 +120992,11 @@ xHp xwl rHf jeb -rUq -laC -tvc -laC -owO +rrU +meQ +iEM +meQ +fZE bdg bqZ ngI @@ -120907,11 +121016,11 @@ xAt nNH bqZ bdg -npi -jEv -uYP -jEv -sGJ +oSM +awE +jnc +awE +uNp vra bMq qUq @@ -120927,18 +121036,18 @@ lpt qYQ ptj vra -fgO -fed -spN -rng -kks -kks -kks -kks -rng -fKC -jbS -qbs +opV +mkx +xVY +mJO +plv +plv +plv +plv +mJO +jPx +mgb +lyW aag aag aag @@ -120967,31 +121076,31 @@ aag aag aag aag -qdy -oKB -oKB -rOR -ivy -ivy -ivy -ivy +vHn +hoT +hoT +cGd +vVY +vVY +vVY +vVY aba aGA kbv fZo -rOR -oJX -oKB -oKB -oxo +cGd +nnH +hoT +hoT +eJj ael afI agY oxi xfm -eRX -nmj -kTp +jux +gIN +jvz mOi mOi mOi @@ -121007,31 +121116,31 @@ aHq aHq aHq aHq -deW -xJr -dER -jGY -lYm -iTV -dhe -pmS -iTV -iTV -iTV -dhe -lYm +klr +mxg +qGZ +bMi +mRU +jtU +vpf +rXF +jtU +jtU +jtU +vpf +mRU mzs aPT xyB ceD -wqU -wqU -wqU -wqU -lYm -qUT -dhe -ckw +qSw +qSw +qSw +qSw +mRU +isq +vpf +woU aag aag aag @@ -121059,18 +121168,18 @@ aad aag aag aag -nnw -xnn -lpH -pAH -pAH -pAH -pAH -pAH -pAH -niz -niz -vbq +kyw +deq +qZK +bwG +bwG +bwG +bwG +bwG +bwG +dTd +dTd +div jeb vlX thA @@ -121086,11 +121195,11 @@ gAA fFD vlX jeb -oue -laC -tvc -laC -owO +wEK +meQ +iEM +meQ +fZE bdg bqZ beH @@ -121110,11 +121219,11 @@ beH beH bqZ bdg -npi -jEv -uYP -jEv -mBa +oSM +awE +jnc +awE +dNW vra asX drj @@ -121130,18 +121239,18 @@ cgo hQc asX vra -xWi -tJw -kfa -rng -rng -rng -rng -rng -rng -fKC -rzK -qbs +crc +goo +hAA +mJO +mJO +mJO +mJO +mJO +mJO +jPx +pgJ +lyW aag aag aag @@ -121170,31 +121279,31 @@ aag aag aag aag -qdy -oKB -nxJ -rOR -ivy -ivy -ivy -ivy -rOR +vHn +hoT +tob +cGd +vVY +vVY +vVY +vVY +cGd mAF ilq pjj -rOR -dzS -nxJ -oKB -cNn +cGd +dkt +tob +hoT +xfW ael afJ agY aiq ajJ -nTU -xJr -bfG +dpS +mxg +iUV mOi rCw rCw @@ -121210,31 +121319,31 @@ dgg xRk bti aHq -vsB -xJr -dER -euB -lYm -iTV -eLq -lYm -yaa -dhe -iTV -dhe -lYm +rwf +mxg +qGZ +mqd +mRU +jtU +vzB +mRU +bBc +vpf +jtU +vpf +mRU gfN efj sxE -lYm -wqU -wqU -wqU -wqU -lYm -uCU -iTV -ckw +mRU +qSw +qSw +qSw +qSw +mRU +vpI +jtU +woU aag aag aag @@ -121262,18 +121371,18 @@ aad aag aag aag -nnw -sMe -wli -pAH -pCe -pCe -pCe -vbk -pAH -tFH -jot -sZN +kyw +xwd +lfx +bwG +ycl +ycl +ycl +jCg +bwG +wBw +bZo +vsf jeb vlX tdE @@ -121289,11 +121398,11 @@ xHp xwl vlX jeb -idv -laC -tvc -laC -sVp +dQV +meQ +iEM +meQ +onn bdd bDQ lnm @@ -121313,11 +121422,11 @@ sCA bVw cab bdd -alu -jEv -uYP -jEv -raq +tmE +awE +jnc +awE +gvK vra asX qUq @@ -121333,18 +121442,18 @@ lpt qYQ asX vra -nQS -qfp -xdv -rng -kks -kks -kks -xOb -rng -fKC -jbS -qbs +lDk +dEK +oWN +mJO +plv +plv +plv +mbR +mJO +jPx +mgb +lyW aag aag aag @@ -121373,31 +121482,31 @@ aag aag aag aag -qdy -nxJ -wTe -rOR -ivy -ivy -ivy -ivy -rOR +vHn +tob +xLu +cGd +vVY +vVY +vVY +vVY +cGd hZE kbv mbx -rOR -uUD -nxJ -oKB -cNn +cGd +gMJ +tob +hoT +xfW ael afK ahc air ael -fUT -xJr -puV +nBo +mxg +uZI mOi wCT sIf @@ -121413,31 +121522,31 @@ oqv iqd rUy cnS -deW -xJr -lAg -lYm -lYm -iTV -lcL -lYm -eSp -qsr -iTV -dhe -lYm +klr +mxg +pSN +mRU +mRU +jtU +oNM +mRU +tih +ycM +jtU +vpf +mRU aDS aPT hGV -lYm -wqU -wqU -wqU -wqU -lYm -iTV -dhe -ckw +mRU +qSw +qSw +qSw +qSw +mRU +jtU +vpf +woU aag aag aag @@ -121465,18 +121574,18 @@ aad aag aag aag -nnw -xnn -wli -pAH -pCe -pCe -pCe -pCe -pAH -rgs -laC -aaG +kyw +deq +lfx +bwG +ycl +ycl +ycl +ycl +bwG +tQe +meQ +ktl jeb obE thA @@ -121492,11 +121601,11 @@ xHp diJ rHf jeb -owO -laC -tvc -laC -owO +fZE +meQ +iEM +meQ +fZE bCx bqZ cNf @@ -121516,11 +121625,11 @@ nuK dVe bqZ bCx -npi -jEv -fBW -jEv -npi +oSM +awE +vOZ +awE +oSM vra bMq drj @@ -121536,18 +121645,18 @@ lpt eBV ptj vra -oDd -fed -fGR -rng -kks -kks -kks -kks -rng -xIB -cER -qbs +xzI +mkx +hdV +mJO +plv +plv +plv +plv +mJO +nEl +xbg +lyW aag aag aag @@ -121576,31 +121685,31 @@ aag aag aag aag -qdy -nxJ -ujc -rOR -rOR -rOR -rOR -rOR -rOR +vHn +tob +hUb +cGd +cGd +cGd +cGd +cGd +cGd laM kbv nkH -rOR -cFb -tsI -sYe -eOY +cGd +eJZ +rRb +cXd +xew ael afL ahe aij ael -oao -oXo -oao +acQ +lOn +acQ mOi kbH kbH @@ -121616,31 +121725,31 @@ wDy aGN dxv cnS -bxQ -xJr -eBy -pmS -dhe -dhe -tXX -lYm -lYm -lYm -hdf -lYm -lYm +riK +mxg +kGS +rXF +vpf +vpf +aBQ +mRU +mRU +mRU +gBs +mRU +mRU oIa aPT bqY -lYm -lYm -lYm -lYm -lYm -lYm -dhe -dhe -ckw +mRU +mRU +mRU +mRU +mRU +mRU +vpf +vpf +woU aag aag aag @@ -121663,23 +121772,23 @@ aKQ aaa aaa aab -nnw -nnw -nnw -nnw -nnw -nnw -xnn -sro -pAH -pCe -pCe -pCe -pCe +kyw +kyw +kyw +kyw +kyw +kyw +deq +iGc +bwG +ycl +ycl +ycl +ycl cmC -owO -laC -vgN +fZE +meQ +hvz jeb vlX tdE @@ -121695,11 +121804,11 @@ xHp xwl vlX jeb -owO -laC -vLe -jrx -jtH +fZE +meQ +cmL +czR +jzT bCy bDS cNf @@ -121719,11 +121828,11 @@ qnC dVe cac bCy -icd -qsK -rNT -jEv -eVf +hQf +sTU +xLX +awE +hCf vra asX qUq @@ -121739,23 +121848,23 @@ lpt qYQ asX vra -ueq -fed -npi +wcD +mkx +oSM cnd -kks -kks -kks -kks -rng -faC -cER -qbs -qbs -qbs -qbs -qbs -qbs +plv +plv +plv +plv +mJO +kLm +xbg +lyW +lyW +lyW +lyW +lyW +lyW aaa aab aaa @@ -121779,31 +121888,31 @@ aag aag aag aag -qdy -wGa -tvm -rOR -ivy -ivy -ivy -pJa -rOR +vHn +tJq +bLf +cGd +vVY +vVY +vVY +tvS +cGd hZE kbv mbx -rOR -leQ -rOR -rOR -rOR +cGd +cva +cGd +cGd +cGd adO adO adO adO adO -yjQ -oXo -qXW +frI +lOn +oNa mOi mOi mOi @@ -121819,31 +121928,31 @@ nTs pje pje cnT -mRC -nWf -pfU -lYm -lYm -lYm -lYm -lYm -jnl -wzC -iTV -bDN -lYm +meS +gUk +naj +mRU +mRU +mRU +mRU +mRU +jwM +oZn +jtU +lPW +mRU aDS aPT hGV -lYm -wqU -wqU -wqU -axT -lYm -vJq -dhe -ckw +mRU +qSw +qSw +qSw +vMQ +mRU +wUJ +vpf +woU aag aag aag @@ -121866,23 +121975,23 @@ aKQ aaa aaa aab -nnw -eNf -xnn -xnn -xnn -xnn -xnn -cVZ -pAH -pCe -pCe -pCe -pCe -pAH -mTa -kId -sEJ +kyw +ety +deq +deq +deq +deq +deq +xJp +bwG +ycl +ycl +ycl +ycl +bwG +lFL +sNL +ygB jeb jeb hfa @@ -121898,11 +122007,11 @@ xWd oSL jeb jeb -owO -laC -uQE -cDd -ycb +fZE +meQ +dAm +fEF +otC bdd bDT tHv @@ -121922,11 +122031,11 @@ iXb pzV cad bdd -vij -xPU -qay -jEv -npi +vMA +oYi +sIR +awE +oSM vra vra eUh @@ -121942,23 +122051,23 @@ mSU wVy vra vra -vtV -jYz -roK -rng -kks -kks -kks -kks -rng -xIB -cER -wuR -jbS -pga -ygb -fkF -qbs +siy +wIX +aCu +mJO +plv +plv +plv +plv +mJO +nEl +xbg +jPU +mgb +cgU +oqI +iDk +lyW aaa aab aaa @@ -121982,31 +122091,31 @@ aag aag aag aag -qdy -oKB -qXe -rOR -ivy -ivy -ivy -ivy -rOR +vHn +hoT +rGz +cGd +vVY +vVY +vVY +vVY +cGd hHe gxn gKd -rOR -oKB -oKB -far -ssF +cGd +hoT +hoT +svV +rIE adO afM fpR ahf adO -qEw -pEH -oao +dni +jao +acQ aqU sdl mLE @@ -122022,31 +122131,31 @@ rsO aGN rbB cnS -oYD -xJr -kTp +dKD +mxg +jvz aUH aXx jKI aXx -lYm -eSp -dhe -iTV -dhe -lYm +mRU +tih +vpf +jtU +vpf +mRU lCL pMA gcm -lYm -wqU -wqU -wqU -wqU -lYm -bEW -iTV -ckw +mRU +qSw +qSw +qSw +qSw +mRU +uNz +jtU +woU aag aag aag @@ -122069,23 +122178,23 @@ aKQ aaa aaa aab -nnw -pDZ -wli -wli -wli -wli -dDd -dle -pAH -pCe -pCe -pCe -pCe -pAH -tOp -tOp -tOp +kyw +byt +lfx +lfx +lfx +lfx +txp +veq +bwG +ycl +ycl +ycl +ycl +bwG +bwP +bwP +bwP jeb tkN qHg @@ -122101,11 +122210,11 @@ gAA cGV tkN jeb -rSI -laC -dYa -uIX -lRL +hjQ +meQ +fNd +oUi +qdV bdd bDU bqZ @@ -122125,11 +122234,11 @@ bqZ bqZ cae bdd -sUA -unm -bJN -jEv -npi +huP +nbu +kcg +awE +oSM vra gNq hXb @@ -122145,23 +122254,23 @@ cgo skF gNq vra -sde -sde -sde -rng -kks -kks -kks -kks -rng -ncw -lTL -kyH -lTL -lTL -onr -cER -qbs +fqA +fqA +fqA +mJO +plv +plv +plv +plv +mJO +rxq +sAS +cXX +sAS +sAS +nHG +xbg +lyW aaa aab aaa @@ -122185,31 +122294,31 @@ aag aag aag aag -qdy -nxJ -sen -rOR -ivy -ivy -ivy -ivy +vHn +tob +alh +cGd +vVY +vVY +vVY +vVY bWh hmj kbv fZo -rOR -cWP -oKB -oKB -vyS +cGd +ykY +hoT +hoT +tjz adO afN ahh aiw ahG -eBy -xJr -oao +kGS +mxg +acQ aqU xbN gfE @@ -122225,31 +122334,31 @@ liJ pTj cnq cnS -deW -pEH -oao +klr +jao +acQ aUH oyE mMP mMP -lYm -iTV -dhe -iTV -dhe -lYm +mRU +jtU +vpf +jtU +vpf +mRU mzs aPT xyB cix -wqU -wqU -wqU -wqU -lYm -wlQ -iTV -ckw +qSw +qSw +qSw +qSw +mRU +bWg +jtU +woU aag aag aag @@ -122272,23 +122381,23 @@ aKQ aaa aaa aab -nnw -xnn -wli -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -gRW -tOp -tOp +kyw +deq +lfx +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +txE +bwP +bwP jeb aMx qHg @@ -122304,11 +122413,11 @@ xHp cGV nBa jeb -mqu -mqu -uQE -sEz -unA +atH +atH +dAm +aCX +suH bdd beQ beQ @@ -122328,11 +122437,11 @@ beQ beQ beQ bdd -uxy -kGz -qay -iIQ -iIQ +oCb +wwv +sIR +brq +brq vra bMu hXb @@ -122348,23 +122457,23 @@ lpt skF pQF vra -sde -sde -frT -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -xIB -jbS -qbs +fqA +fqA +gzM +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +nEl +mgb +lyW aaa aab aaa @@ -122388,31 +122497,31 @@ aag aag aag aag -qdy -xeV -oKB -rOR -ivy -ivy -ivy -ivy -rOR +vHn +btV +hoT +cGd +vVY +vVY +vVY +vVY +cGd mAF ilq pjj -rOR -eKk -jEB -oKB -pqU +cGd +boU +nNI +hoT +veO adO afO ahh aiw adO -sGP -rqa -sGP +mQF +yaR +mQF lmK lmK lmK @@ -122428,31 +122537,31 @@ cnH kzk cnR aHq -sGP -rqa -sGP +mQF +yaR +mQF aUH sIA gSj aXA -lYm -iTV -dhe -iTV -yaa -lYm +mRU +jtU +vpf +jtU +bBc +mRU gfN efj sxE -lYm -wqU -wqU -wqU -wqU -lYm -uyb -enA -ckw +mRU +qSw +qSw +qSw +qSw +mRU +kUL +tMU +woU aag aag aag @@ -122475,23 +122584,23 @@ aKQ aaa aaa aab -nnw -xnn -sro -wdA -jIS -jIS -cvt -jgW -jgW -jgW -pFO -jgW -jgW -syo -tOp -tOp -tOp +kyw +deq +iGc +wDr +mFL +mFL +iFp +wNz +wNz +wNz +oWE +wNz +wNz +suU +bwP +bwP +bwP jeb iow aMO @@ -122507,11 +122616,11 @@ xHp aUi iow jeb -owO -laC -jgu -ehZ -jjE +fZE +meQ +rTA +tAW +stR bCz bDV bGw @@ -122531,18 +122640,18 @@ bGw bGw bGw bCz -npi -xPU -qay -jEv -lGI +oSM +oYi +sIR +awE +dnP vra wTw bNE wDJ ivs nyQ -ipY +dXH vWB bSK nyQ @@ -122551,23 +122660,23 @@ bUi bUT wTw vra -sde -sde -sde -ltn -dTl -dTl -aEU -dTl -dTl -dTl -hEZ -uqY -uqY -wdA -fKC -lyV -qbs +fqA +fqA +fqA +dBg +aqL +aqL +buY +aqL +aqL +aqL +uWm +nRA +nRA +wDr +jPx +wdW +lyW aaa aab aaa @@ -122591,31 +122700,31 @@ aag aag aag aag -qdy -nxJ -nxJ -rOR -ivy -ivy -ivy -ivy -rOR +vHn +tob +tob +cGd +vVY +vVY +vVY +vVY +cGd xXT sVV tkR -rOR -ulG -lrD -nxJ -kiY +cGd +ipr +pUL +tob +eQd adO jkj ahh aiw adO -gEj -xKy -ksH +ebV +mbu +kCo ioU pvK qPE @@ -122631,31 +122740,31 @@ liJ hgB cbn aHq -gEj -nhI -aPc +ebV +qGP +pym aUd ckK iKM aHM -lYm -iTV -dhe -bDN -dRf -lYm +mRU +jtU +vpf +lPW +vwJ +mRU nme sfT vAH -lYm -wqU -wqU -wqU -wqU -lYm -wQM -dhe -ckw +mRU +qSw +qSw +qSw +qSw +mRU +edG +vpf +woU aag aag aag @@ -122678,23 +122787,23 @@ aKQ aaa aaa aab -nnw -wli -cTc -wdA -jIS -jIS -cvt -jgW -jgW -jgW -jgW -jgW -jgW -syo -tOp -tOp -tOp +kyw +lfx +gSH +wDr +mFL +mFL +iFp +wNz +wNz +wNz +wNz +wNz +wNz +suU +bwP +bwP +bwP aLT aLT aLT @@ -122710,11 +122819,11 @@ aQL aQL aQL aQL -idv -laC -uQE -cDd -owO +dQV +meQ +dAm +fEF +fZE bCA bCA bdj @@ -122734,11 +122843,11 @@ bCA bdj bCA bCA -npi -xPU -qay -jEv -raq +oSM +oYi +sIR +awE +gvK bJC bJC bJC @@ -122754,23 +122863,23 @@ bSJ bSJ bSJ bSJ -sde -sde -sde -ltn -dTl -dTl -dTl -dTl -dTl -dTl -hEZ -uqY -uqY -wdA -xIB -jbS -qbs +fqA +fqA +fqA +dBg +aqL +aqL +aqL +aqL +aqL +aqL +uWm +nRA +nRA +wDr +nEl +mgb +lyW aaa aab aaa @@ -122794,31 +122903,31 @@ aag aag aag aag -qdy -oKB -oKB -rOR -rOR -rOR -rOR -rOR -rOR +vHn +hoT +hoT +cGd +cGd +cGd +cGd +cGd +cGd ehL kyr chb -rOR -rOR -rOR -jZD -rOR -rOR +cGd +cGd +cGd +moK +cGd +cGd lFt ahh aiw adO -jEo -wXx -ksH +qHu +hqx +kCo ioU qyZ wTd @@ -122834,31 +122943,31 @@ liJ qmP uoH aHq -ksH -xKy -ksH +kCo +mbu +kCo aUH dbv lII aWc -lYm -hdf -lYm -lYm -lYm -lYm +mRU +gBs +mRU +mRU +mRU +mRU tCx ncG tZg -lYm -lYm -lYm -lYm -lYm -lYm -iTV -iTV -ckw +mRU +mRU +mRU +mRU +mRU +mRU +jtU +jtU +woU aag aag aag @@ -122881,23 +122990,23 @@ aKQ aaa aaa aab -nnw -jtG -ecf -wdA -jIS -jIS -cvt -jgW -jgW -jgW -jgW -jgW -jgW -syo -tOp -tOp -tOp +kyw +oif +nRN +wDr +mFL +mFL +iFp +wNz +wNz +wNz +wNz +wNz +wNz +suU +bwP +bwP +bwP aLT kaB vVb @@ -122913,11 +123022,11 @@ aQL mJP bSn aQL -fPk -xdN -qor -cDd -pgg +hEm +kti +eFa +fEF +exQ bCB bCB bCB @@ -122937,11 +123046,11 @@ bCB bCB bCB bCB -diu -xPU -fed -slr -xvB +uuI +oYi +mkx +bIW +eMZ bJC jSp lAQ @@ -122957,23 +123066,23 @@ bSJ hII iJS bSJ -sde -sde -sde -ltn -dTl -dTl -dTl -dTl -dTl -dTl -hEZ -uqY -uqY -wdA -buY -jta -qbs +fqA +fqA +fqA +dBg +aqL +aqL +aqL +aqL +aqL +aqL +uWm +nRA +nRA +wDr +xgS +svF +lyW aaa aab aaa @@ -122997,31 +123106,31 @@ aag aag aag aag -qdy -oKB -nxJ -cgU -oKB -nxJ -nxJ -mvu -oFg +vHn +hoT +tob +lso +hoT +tob +tob +hqm +rpG cSa aeA sjz -oFg -mvu -nxJ -nxJ -oKB -cLx +rpG +hqm +tob +tob +hoT +fkK aiw ahh aiw nph -ksH -mns -ksH +kCo +tSY +kCo ioU mSz nIG @@ -123037,31 +123146,31 @@ iKf aGN qrv aHq -vZF -tbG -ksH +hBa +gft +kCo aGz ckd mQC aHM -pmS -iTV -iTV -ivG -qsr -pmS +rXF +jtU +jtU +egQ +ycM +rXF wcm lJY guo -pmS -uPD -dhe -qHK -iTV -iTV -dhe -dhe -ckw +rXF +fLi +vpf +uBx +jtU +jtU +vpf +vpf +woU aag aag aag @@ -123084,21 +123193,21 @@ aKQ aaa aaa aab -nnw -oBS -qvG -wdA -cFL -rWm -rWm -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA +kyw +vaV +qxJ +wDr +lFw +wWt +wWt +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr aLT aLT aLT @@ -123116,11 +123225,11 @@ aTw aUj kLk aQL -rZb -yaW -qor -cDd -huI +npw +vzi +eFa +fEF +rbd bdk bdk bgR @@ -123140,11 +123249,11 @@ myJ eKI bdk bdk -aXa -xPU -fed -lBO -wVz +cxF +oYi +mkx +fic +kjW bJC ojF bNG @@ -123161,22 +123270,22 @@ bUU uDW bSJ bSJ -lij -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -nhb -nhb -dzV -wdA -hLq -jbS -qbs +ljv +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +fCg +fCg +geu +wDr +wtk +mgb +lyW aaa aab aaa @@ -123201,30 +123310,30 @@ aag aag aag abh -rOR -rOR -jZD -rOR -rOR -rOR -rOR -rOR +cGd +cGd +moK +cGd +cGd +cGd +cGd +cGd wYa nBK mzS -rOR -rOR -rOR -rOR -nxJ -rOR +cGd +cGd +cGd +cGd +tob +cGd afP ahh aiw nph -ksH -wXx -ksH +kCo +hqx +kCo ioU ioU ioU @@ -123240,30 +123349,30 @@ aGN aGN pSU aHq -iKP -tbG -ksH +qcL +gft +kCo aGz drk mQC mkG -lYm -uCU -lYm -lYm -lYm -lYm +mRU +vpI +mRU +mRU +mRU +mRU nuM uHr xwX -lYm -lYm -lYm -lYm -lYm -hdf -lYm -lYm +mRU +mRU +mRU +mRU +mRU +gBs +mRU +mRU uOi aag aag @@ -123287,10 +123396,10 @@ aKQ aaa aaa aab -nnw -wli -egM -wdA +kyw +lfx +gUn +wDr bdY bdY bdY @@ -123301,7 +123410,7 @@ aaF aaF aaF aaF -wdA +wDr aLT aLT aLT @@ -123320,10 +123429,10 @@ aQL aQL aQL aQL -hQs -qor -cDd -rkn +uBj +eFa +fEF +wMB bdl bdl bdl @@ -123343,10 +123452,10 @@ bdl bdl bdl bdl -fws -xPU -fed -ndT +opd +oYi +mkx +jwP bJC bJC bJC @@ -123364,8 +123473,8 @@ bSJ bSJ bSJ bSJ -lij -wdA +ljv +wDr anm anm anm @@ -123376,10 +123485,10 @@ anm pfp pfp pfp -wdA -xIB -cER -qbs +wDr +nEl +xbg +lyW aaa aab aaa @@ -123418,16 +123527,16 @@ aeA bbe aeA aeA -rOR -nxJ -rOR +cGd +tob +cGd afQ aiw aiw nph -ksH -wXx -ksH +kCo +hqx +kCo ioU lPO vJg @@ -123443,16 +123552,16 @@ eEo aGN rub aHq -tSm -tbG -ksH +gar +gft +kCo aGz eqB obC hcf -lYm -dlt -lYm +mRU +cpQ +mRU lJY lJY lFK @@ -123490,10 +123599,10 @@ aKQ aaa aaa aab -nnw -nsh -nsh -wdA +kyw +oxn +oxn +wDr bdY bdY bdY @@ -123504,7 +123613,7 @@ aaF aaF aaF aaF -wdA +wDr aLT aLT bbY @@ -123523,17 +123632,17 @@ brn aRT buM aQL -owO -qor -cDd -rkn +fZE +eFa +fEF +wMB bdl bEr bEs bIs bdm rbY -gwD +eAG bOK bPD bYa @@ -123546,10 +123655,10 @@ bYu nmK caf bdl -eII -xPU -fed -npi +oDU +oYi +mkx +oSM bJC cdT cfo @@ -123567,8 +123676,8 @@ clI clg clW bSJ -lij -wdA +ljv +wDr anm anm anm @@ -123579,10 +123688,10 @@ anm pfp pfp pfp -wdA -xzx -mSm -qbs +wDr +cZI +xGT +lyW aaa aab aaa @@ -123621,16 +123730,16 @@ asA amF kmE aeA -rOR -rLQ -rOR +cGd +iTQ +cGd ahJ ahJ ahJ adO -ksH -mns -ksH +kCo +tSY +kCo ioU dnS viN @@ -123646,16 +123755,16 @@ aRi aGN qrv aHq -aWC -tbG -ksH +oUO +gft +kCo aUH aGz aGz aGz -lYm -eLq -lYm +mRU +vzB +mRU lJY qbx dcp @@ -123693,10 +123802,10 @@ aKQ aaa aaa aab -kHq -fhT -fhT -wdA +emA +vIg +vIg +wDr bdY bdY bdY @@ -123707,7 +123816,7 @@ aaF aaF aaF aaF -wdA +wDr aLT aLT bca @@ -123726,10 +123835,10 @@ aQL aUY buN aQL -owO -qor -cDd -rkn +fZE +eFa +fEF +wMB bdl bDX bCA @@ -123749,10 +123858,10 @@ rIH tUh cag bdl -lYT -xPU -fed -npi +jDz +oYi +mkx +oSM bJC cdU bMy @@ -123770,8 +123879,8 @@ bSJ bVo clX bSJ -lij -wdA +ljv +wDr anm anm anm @@ -123782,10 +123891,10 @@ anm pfp pfp pfp -wdA -hgR -kzd -nhJ +wDr +cOo +rJf +tcO aaa aab aaa @@ -123824,16 +123933,16 @@ aeC vOh gUX ily -rOR -jZD -rOR -xJV -xJV -xJV -oaI -ksH -mns -ksH +cGd +moK +cGd +fiH +fiH +fiH +ybk +kCo +tSY +kCo ioU pPM qKz @@ -123849,16 +123958,16 @@ xNv iLO bUa aHq -jEo -xKy -ksH -oaI -xJV -xJV -xJV -lYm -hdf -lYm +qHu +mbu +kCo +ybk +fiH +fiH +fiH +mRU +gBs +mRU cBb xVS lJY @@ -123896,21 +124005,21 @@ aKQ aaa aaa aab -kHq -uBE -uBE -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA +emA +gPS +gPS +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr aLT aLT aLT @@ -123929,10 +124038,10 @@ aQL aQL aQL aQL -idv -qor -cDd -ghy +dQV +eFa +fEF +fNH bdl bDY bCA @@ -123952,10 +124061,10 @@ jac bCA cah bdl -oKF -xPU -fed -raq +wPi +oYi +mkx +gvK bJC bJC bJC @@ -123973,22 +124082,22 @@ bSJ bSJ bSJ bSJ -lij -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -wdA -drQ -pGD -nhJ +ljv +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +nGM +hIp +tcO aaa aab aaa @@ -124027,16 +124136,16 @@ aeC aeC ajs aeC -oaE -xJV -rnP -sXG -sXG -enK -uRe -pMz -slv -mdH +bZq +fiH +rGc +xjI +xjI +fzm +pBg +gmZ +dpN +txd alL alL alL @@ -124052,16 +124161,16 @@ jvY alL alL alL -pMz -iaI -ino -uRe -xdr -sXG -sXG -tze -pcK -xLC +gmZ +onh +wJd +pBg +iOP +xjI +xjI +roY +vXk +jgS vcE kUV vcE @@ -124099,22 +124208,22 @@ aKQ aaa aaa aab -kHq -aYf -hsf -lpj -iED -hsf -aYf -iJU -gBP -kSA -twO -pkv -glm -qXm -sNC -pkv +emA +jEM +ikT +owU +iTq +ikT +jEM +kjY +riB +fGi +qan +jkN +jUh +tIF +bCk +jkN aLT bco aMB @@ -124132,10 +124241,10 @@ brr aUZ buO aQL -owO -qor -cDd -xEs +fZE +eFa +fEF +tLZ bdl bDZ bdj @@ -124155,10 +124264,10 @@ jac xxa cai bdl -cNI -xPU -fed -npi +tkg +oYi +mkx +oSM bJC cdV bMx @@ -124176,22 +124285,22 @@ clJ bVn clY bSJ -lij -vCB -oKi -oKi -oKi -tfj -qLO -vRW -lij -xtU -doX -fmZ -fmZ -bYd -fJA -nhJ +ljv +dnZ +eHy +eHy +eHy +cyp +oaO +lWY +ljv +jiM +ere +lYg +lYg +sEu +lia +tcO aaa aab aaa @@ -124230,16 +124339,16 @@ wXh aeC ydz ayb -eQP -wQZ -hOb -muc -muc -hOb -opN -fZy -muc -xCQ +rrG +gBZ +tGW +rfQ +rfQ +tGW +oOi +szb +rfQ +vnZ jvY jvY jvY @@ -124255,16 +124364,16 @@ jvY jvY jvY jvY -rro -kuZ -tAH -opN -eQP -muc -muc -eQP -iUU -hOb +urs +eEF +wmH +oOi +rrG +rfQ +rfQ +rrG +sBK +tGW sSl kkx vcE @@ -124302,22 +124411,22 @@ aKQ aaa aaa aab -kHq -aXd -iJU -kFi -eTJ -aYf -hsf -aYf -gYL -aEE -gYL -aYf -hsf -iJU -sNC -lPP +emA +kJZ +kjY +fGB +snN +jEM +ikT +jEM +lty +eTD +lty +jEM +ikT +kjY +bCk +heO aLT bco bdr @@ -124335,17 +124444,17 @@ brr aRT buO aQL -owO -qor -cDd -oPG +fZE +eFa +fEF +xpc bdl lOr lOr iwI bdl bdl -bEt +reH bNP bmD bNP @@ -124358,10 +124467,10 @@ bYv tiE tiE bdl -poj -xPU -fed -npi +fJt +oYi +mkx +oSM bJC cdV cfo @@ -124379,22 +124488,22 @@ clJ clg clY bSJ -lij -vHZ -fmZ -fmZ -eyp -moT -dwn -lCT -lij -fNY -aCr -aCr -aCr -ofP -eQa -nhJ +ljv +eaz +lYg +lYg +aqH +oxl +wac +mjy +ljv +ien +xhO +xhO +xhO +cmN +srl +tcO aaa aab aaa @@ -124433,16 +124542,16 @@ ngl aeA ajk aeA -xdr -xJV -gnT -pcK -pcK -xLC -uRe -sUH -kCG -obc +iOP +fiH +dwJ +vXk +vXk +jgS +pBg +vkQ +brm +aOw jvY arg atf @@ -124458,16 +124567,16 @@ jvY aMm aOq jvY -oZz -rFO -qAa -uRe -oaE -pcK -pcK -tmS -nsk -enK +biB +uvq +cVT +pBg +bZq +vXk +vXk +siS +aRr +fzm lJY xVS lJY @@ -124505,22 +124614,22 @@ aKQ aaa aaa aab -kHq -kHq -kHq -kHq -kHq -pMI -hsf -aYf -nmq -gEM -sRk -aYf -hsf -aYf -aYf -sNC +emA +emA +emA +emA +emA +sEg +ikT +jEM +ahL +bFl +nZW +jEM +ikT +jEM +jEM +bCk aLT bcZ bdr @@ -124538,16 +124647,16 @@ brs aRT bew aQL -mqu -uQE -sEz -mqu +atH +dAm +aCX +atH mCo iwZ -lBF +jFy bKA -sbM -pWA +mPK +dmF pXV bNP bmD @@ -124561,10 +124670,10 @@ eHa cmo xAB mCo -iIQ -kGz -qay -iIQ +brq +wwv +sIR +brq bJC bKX cfo @@ -124582,22 +124691,22 @@ clK clg bVy bSJ -lij -lij -lij -lij -eYC -crr -lij -lij -lij -myA -lkg -nhJ -nhJ -nhJ -nhJ -nhJ +ljv +ljv +ljv +ljv +tWl +jer +ljv +ljv +ljv +jEA +hCq +tcO +tcO +tcO +tcO +tcO aaa aab aaa @@ -124636,16 +124745,16 @@ nqV aeA ajk ily -mBf -rFS -mBf -jpz -xJV -syf -oaI -sGP -sGP -mCS +taw +mRI +taw +qnf +fiH +wPm +ybk +mQF +mQF +nbW jvY arh atm @@ -124661,16 +124770,16 @@ jvY nSG aOs jvY -sGP -pGQ -sGP -oaI -fka -xJV -hws -fcW -kAO -fcW +mQF +pZq +mQF +ybk +dJF +fiH +dAr +kNq +cWo +kNq cBb xVS lJY @@ -124712,18 +124821,18 @@ aaa aaa aaa aaa -kHq -ozP -hsf -aYf -kAN -cSi -kAN -aYf -hsf -gHm -aYf -hsf +emA +tcm +ikT +jEM +uzv +tYr +uzv +jEM +ikT +hYf +jEM +ikT aLT bco bdr @@ -124741,10 +124850,10 @@ brr aRT buO aQL -jAu -qor -srA -kcR +jpW +eFa +svw +mzv bmv bEg bGU @@ -124764,10 +124873,10 @@ bYw nDM bWL sSa -enc -cmi -pKd -xpG +bRo +dOG +gKw +tgz bJC cdV cfo @@ -124785,18 +124894,18 @@ clJ clg clY bSJ -jQK -fmZ -fmZ -fmZ -bYd -vHZ -doX -fmZ -fmZ -bYd -gbz -nhJ +bXh +lYg +lYg +lYg +sEu +eaz +ere +lYg +lYg +sEu +gEh +tcO aaa aaa aaa @@ -124839,16 +124948,16 @@ wXh aeC ajs qon -mBf -nUS +taw +obJ aep ggQ ggQ aME aep -dRm -leC -xJv +ivV +jnx +iPK jvY ari aoP @@ -124864,16 +124973,16 @@ axo atm aOr jvY -dRm -gIe -dRm +ivV +otE +ivV aep aME ggQ aME aep -eWV -fcW +hog +kNq dHe kUV vcE @@ -124915,18 +125024,18 @@ aaa aaa aaa aaa -kHq -enq -kFi -iJU -lSH -bJr -gQz -aRm -hsf -aYf -aYf -hsf +emA +hyb +fGB +kjY +yia +ugZ +kcG +fBo +ikT +jEM +jEM +ikT aLT bco aMC @@ -124944,10 +125053,10 @@ brr aUY buO aQL -owO -qor -cDd -xEs +fZE +eFa +fEF +tLZ mCo bEh bNQ @@ -124967,10 +125076,10 @@ bKA cXR cal mCo -ueq -xPU -fed -npi +wcD +oYi +mkx +oSM bJC cdV bMy @@ -124988,18 +125097,18 @@ clJ bVo clY bSJ -dOr -aCr -aCr -aCr -aCr -gbz -tNy -gbz -aCr -aCr -nxM -nhJ +tgm +xhO +xhO +xhO +xhO +gEh +sOD +gEh +xhO +xhO +tWp +tcO aaa aaa aaa @@ -125042,16 +125151,16 @@ aeC aeC ajs aeC -mBf -nHf +taw +oxy aep afj afk agM aep -qRq -kTn -jEt +pEd +tbD +fDk jvY arj atm @@ -125067,16 +125176,16 @@ bzD atm aOs jvY -qRq -wXx -usl +pEd +hqx +xhi aep aHS afk sHo aep -waa -fcW +vmu +kNq vcE kUV vcE @@ -125118,18 +125227,18 @@ aaa aaa aaa aaa -kHq -kHq -kHq -kHq -kHq -kHq -kHq -kHq -kHq -kHq -iED -eTJ +emA +emA +emA +emA +emA +emA +emA +emA +emA +emA +iTq +snN aLT aLT aLT @@ -125147,10 +125256,10 @@ aQL aQL aQL aQL -owO -qor -cDd -gQd +fZE +eFa +fEF +bNr bdl bEi bZr @@ -125170,10 +125279,10 @@ bKA cir bdl bdl -kag -xPU -fed -npi +sXC +oYi +mkx +oSM bJC bJC bJC @@ -125191,18 +125300,18 @@ bSJ bSJ bSJ bSJ -oeY -aCr -nhJ -nhJ -nhJ -nhJ -nhJ -nhJ -nhJ -nhJ -nhJ -nhJ +cZp +xhO +tcO +tcO +tcO +tcO +tcO +tcO +tcO +tcO +tcO +tcO aaa aaa aaa @@ -125245,16 +125354,16 @@ aeC aeA ajk aeA -mBf -nHf +taw +oxy aep afk afk afk aep -qRq -kTn -jEt +pEd +tbD +fDk jvY ark atm @@ -125270,16 +125379,16 @@ axo atm thv jvY -qRq -wXx -usl +pEd +hqx +xhi aep afk aHl afk aep -tWL -fcW +hLt +kNq lJY itR kKR @@ -125330,9 +125439,9 @@ aaa aaa aaa aaa -kHq -hsf -aYf +emA +ikT +jEM aLT bcE aMB @@ -125350,10 +125459,10 @@ brt aUZ buS aQL -owO -qor -cDd -xEs +fZE +eFa +fEF +tLZ bdl brp bZr @@ -125372,11 +125481,11 @@ bNQ bNQ bNQ bGz -mUE -rCP -xPU -fed -npi +egD +oQn +oYi +mkx +oSM bJC cdX bMx @@ -125394,9 +125503,9 @@ clL bVn clZ bSJ -dOr -aCr -nhJ +tgm +xhO +tcO aaa aaa aaa @@ -125448,16 +125557,16 @@ asA amF ohL aeA -mBf -sJo +taw +oQL aep aep aep aep aep -qsj -kTn -jEt +pvE +tbD +fDk jvY alL atk @@ -125473,16 +125582,16 @@ jvY aAy alL jvY -qRq -wXx -usl +pEd +hqx +xhi aep aep aep aep aep -vKo -fcW +ddF +kNq lJY ucw dcp @@ -125533,9 +125642,9 @@ aaa aaa aaa aaa -kHq -bhe -aYf +emA +qGC +jEM aLT bcE bdr @@ -125553,10 +125662,10 @@ brt bpC buS aQL -jJF -qor -cDd -xEs +bMf +eFa +fEF +tLZ bdl bEl wup @@ -125575,11 +125684,11 @@ krN krN krN oqY -wqQ -npi -xPU -fed -npi +lde +oSM +oYi +mkx +oSM bJC cdX cfo @@ -125597,9 +125706,9 @@ clL clg clZ bSJ -iLH -tRd -nhJ +xMm +pFr +tcO aaa aaa aaa @@ -125651,16 +125760,16 @@ ntI aeA aeC puO -mBf -nHf -nXv +taw +oxy +eRG aep aep aep aep -qRq -kTn -jEt +pEd +tbD +fDk jvY arl atm @@ -125676,16 +125785,16 @@ alL aMo aOt jvY -qRq -wXx -cGk +pEd +hqx +jhm oIB jgr gGp dMf oIB -waa -fcW +vmu +kNq lJY uxC lJY @@ -125736,9 +125845,9 @@ aaa aaa aaa aaa -kHq -hsf -aYf +emA +ikT +jEM aLT abS bdr @@ -125756,10 +125865,10 @@ brs bpC abT aQL -mqu -uQE -sEz -mqu +atH +dAm +aCX +atH bdl buz bZr @@ -125778,11 +125887,11 @@ ibc uly bNN vbR -qZh -diu -kGz -qay -iIQ +eGq +uuI +wwv +sIR +brq bJC ack cfo @@ -125800,9 +125909,9 @@ clK clg acp bSJ -mAO -gbz -nhJ +qKK +gEh +tcO aaa aaa aaa @@ -125848,22 +125957,22 @@ atr aeC atr aeC -mBf -mBf -mBf -mBf -rFS -mBf -mBf -nHf -iIt -mBf -mBf -mBf -mBf -qRq -kTn -jEt +taw +taw +taw +taw +mRI +taw +taw +oxy +hja +taw +taw +taw +taw +pEd +tbD +fDk jvY abF atm @@ -125879,22 +125988,22 @@ aIT atm aVF jvY -qRq -sWn -lTY +pEd +wZp +amc oIB fXE kaS aiQ oIB -waa -fcW -fcW -fcW -fcW -nVz -fcW -fcW +vmu +kNq +kNq +kNq +kNq +qDB +kNq +kNq vcE bXe vcE @@ -125939,9 +126048,9 @@ aaa aaa aaa aaa -kHq -aYf -hsf +emA +jEM +ikT aLT bcE aMC @@ -125959,10 +126068,10 @@ brt aUY buS aQL -owO -qor -cDd -vgN +fZE +eFa +fEF +hvz bdl bEm bZr @@ -125982,10 +126091,10 @@ uys uys uys uys -sbV -xPU -fed -npi +bfd +oYi +mkx +oSM bJC cdX bMy @@ -126003,9 +126112,9 @@ clL bVo clZ bSJ -cBR -uIF -nhJ +hTU +lNk +tcO aaa aaa aaa @@ -126051,22 +126160,22 @@ atr aeC atr aeC -mBf -eHJ -lhS -mBf -mFa -mBf -jYh -nHf -sJo -mBf -sJo -sJo -mBf -ead -qTd -jEt +taw +hEj +cvi +taw +wFX +taw +ncV +oxy +oQL +taw +oQL +oQL +taw +pqv +gqf +fDk jvY jvY jvY @@ -126082,22 +126191,22 @@ jvY jvY jvY jvY -uhv -wXx -usl +xeq +hqx +xhi oIB wqr bZw xUV oIB -waa -nUs -fcW -glz -jbl -gGX -bWm -fcW +vmu +vDR +kNq +toD +wDq +aPO +sNP +kNq vcE bXe vcE @@ -126142,9 +126251,9 @@ aaa aaa aaa aaa -kHq -kin -omi +emA +rIV +dYc aLT aLT aLT @@ -126162,10 +126271,10 @@ aQL aQL aQL aQL -jpy -hUh -urv -jpy +edn +qRd +gtH +edn bdl bpT bNN @@ -126185,10 +126294,10 @@ dyx eYr bUo uys -qob -rWV -lFZ -qob +kKB +rsL +jts +kKB bJC bJC bJC @@ -126206,9 +126315,9 @@ bSJ bSJ bSJ bSJ -sFO -gbz -nhJ +xsv +gEh +tcO aaa aaa aaa @@ -126254,22 +126363,22 @@ atu azU aeC ldl -mBf -nHf -euw -mBf -llF -mBf -pBE -rDk -tcP -nVY -rDk -rDk -nVY -aPc -qTd -jEt +taw +oxy +stA +taw +tvA +taw +oTc +nwT +ocI +mfH +nwT +nwT +mfH +pym +gqf +fDk alL urM dBG @@ -126285,22 +126394,22 @@ jvY wjv fDG alL -qRq -sWn -aPc -uHZ +pEd +wZp +pym +qgK tEB uBM dXo oIB -ePc -wKe -fcW -wCF -pNu -gGX -ddC -fcW +xPu +uOE +kNq +swG +jei +aPO +hIX +kNq vcE pxJ swM @@ -126345,9 +126454,9 @@ aaa aaa aaa aaa -kHq -aYf -dJF +emA +jEM +kDd aLT bdJ bds @@ -126365,20 +126474,20 @@ aQL bsS mqK aQL -ivi -fEb -gZO -hQo +bqc +tcS +mww +sZe bdl bEp bCA -iPy -qvd -nAC -hcx -oxt -hcx -lSF +wlh +cvb +bmC +nwG +lDL +nwG +lMw jeO nQv ltb @@ -126388,10 +126497,10 @@ dyx hGN pVx uys -umb -jPA -uTc -hkI +wKm +ekM +aVM +wVm bJC cfp cgu @@ -126409,9 +126518,9 @@ bSJ clM clS bSJ -oeY -gbz -nhJ +cZp +gEh +tcO aaa aaa aaa @@ -126451,28 +126560,28 @@ aaa aad aag aag -sTT -mBf -mBf -mBf -rFS -mBf -mBf -fWP -euw -mBf -lOa -mBf -iao -nHf -sEC -mBf -sJo -sJo -mBf -dSI -kTn -rBd +fTl +taw +taw +taw +mRI +taw +taw +wpT +stA +taw +wTn +taw +nQw +oxy +wjP +taw +oQL +oQL +taw +gbR +tbD +chC aqe amw anO @@ -126488,28 +126597,28 @@ arq anO qaV kwd -rro -wXx -fZY +urs +hqx +tFQ oIB wKF hzb ltU oIB -gGX -xsj -fcW -maG -pNu -gGX -cvp -fcW -fcW -fcW -fcW -nVz -fcW -bMH +aPO +eDk +kNq +bCR +jei +aPO +fJp +kNq +kNq +kNq +kNq +qDB +kNq +fVe aag aag afm @@ -126548,9 +126657,9 @@ aaa aaa aaa aaa -kHq -aYf -hsf +emA +jEM +ikT aLT beT bdr @@ -126568,20 +126677,20 @@ ihY bpC dnE aQL -lRo -xaV -hEE -uLs +qfI +dpA +ggo +lhs bdl ycp ycp -qmb +tPj ycp ycp bdl bdl -vna -vuw +rtj +agv bdl bdl bdl @@ -126591,10 +126700,10 @@ uys uys uys uys -kIR -pVF -kIR -bQr +gyw +bFX +gyw +hza bJC bMA cfo @@ -126612,9 +126721,9 @@ clG clg bVq bSJ -fNY -fcx -nhJ +ien +dFL +tcO aaa aaa aaa @@ -126654,28 +126763,28 @@ aaa aaa aad aag -sTT -bic -bZu -mBf -lOa -ihI -mBf -oBM -euw -mBf -mFa -mBf -sMC -nHf -iIt -mBf -sJo -iIt -mBf -aXU -cqB -hBS +fTl +vrZ +qlu +taw +wTn +kCu +taw +uPN +stA +taw +wFX +taw +lsh +oxy +hja +taw +oQL +hja +taw +bwN +gxR +lCc aqg arr atn @@ -126691,28 +126800,28 @@ atn atn aOB aRj -gAL -wmY -rdX +dZR +kWc +cwL oIB phj vEf cNK oIB -gGX -pNu -caZ -gGX -gGX -gGX -pNu -pNu -vtZ -pNu -pNu -gGX -pNu -bMH +aPO +jei +oYr +aPO +aPO +aPO +jei +jei +lYt +jei +jei +aPO +jei +fVe aag ajZ aaa @@ -126751,9 +126860,9 @@ aaa aaa aaa aaa -kHq -pMI -hsf +emA +sEg +ikT aLT aLT aLT @@ -126771,20 +126880,20 @@ aQL aQL aQL aQL -tcq -fEb -gZO -hQo +oxe +tcS +mww +sZe bdl fKT bGy -fUL -aZJ -fMK +kOW +snM +iqo bdl -rGZ -tLA -lVK +clV +crD +kLP gvU cyo bdl @@ -126794,10 +126903,10 @@ sgc xCa bUy bdl -pgq -jPA -wCN -rPl +eTx +ekM +cJs +pOW bJC bJC bJC @@ -126815,9 +126924,9 @@ bSJ bSJ bSJ bSJ -oeY -aCr -nhJ +cZp +xhO +tcO aaa aaa aaa @@ -126857,28 +126966,28 @@ aaa aaa aad aag -sTT -khz -cPy -mBf -kFM -ihI -mBf -rFS -mBf -mBf -llF -mBf -sJo -nHf -sJo -mBf -rsr -uUa -mBf -sUH -klf -dLb +fTl +hjT +rWb +taw +oAK +kCu +taw +mRI +taw +taw +tvA +taw +oQL +oxy +oQL +taw +cap +fiN +taw +vkQ +kzR +mXP kwd amA atq @@ -126894,28 +127003,28 @@ atq atq aoT kwd -sUH -klf -vvH +vkQ +kzR +oig oIB opI dha pxj oIB -gGX -gRt -fcW -tpQ -pNu -fFN -aYN -uhn -iWD -iWD -iWD -mVY -pNu -bMH +aPO +oUx +kNq +fPF +jei +nNT +jwJ +mgX +nZG +nZG +nZG +xGm +jei +fVe aag ajZ aaa @@ -126954,9 +127063,9 @@ aaa aaa aaa aaa -kHq -aYf -hsf +emA +jEM +ikT aLT beT bdr @@ -126974,10 +127083,10 @@ mUx bpC dnE aQL -ivi -fEb -gZO -hQo +bqc +tcS +mww +sZe bdl fgm bdj @@ -126997,10 +127106,10 @@ fYZ vYC noj hpS -sUk -jPA -wCN -rPl +gyE +ekM +cJs +pOW bJC bMA cfo @@ -127018,9 +127127,9 @@ clH oFV bVq bSJ -vEv -lkg -nhJ +vUJ +hCq +tcO aaa aaa aaa @@ -127060,28 +127169,28 @@ aaa aaa aad aag -sTT -bZu -ace -vMv -nHf -sJo -lGV -sJo -iAo -nHf -nHf -vMv -nHf -nHf -sJo -mBf -mBf -mBf -mBf -sGP -mju -yeb +fTl +qlu +uKl +kiR +oxy +oQL +jsu +oQL +gqt +oxy +oxy +kiR +oxy +oxy +oQL +taw +taw +taw +taw +mQF +rnO +ogd alO ars amx @@ -127097,9 +127206,9 @@ amx amx aOC alO -sGP -mju -sGP +mQF +rnO +mQF loP loP loP @@ -127108,17 +127217,17 @@ loP qej loP loP -fcW -cvp -gGX -ekz -cBE -crG -xdT -qeO -uAx -gRt -bMH +kNq +fJp +aPO +wXl +dJe +unQ +nxe +tjH +tVn +oUx +fVe aag ajZ aaa @@ -127157,9 +127266,9 @@ aaa aaa aaa aaa -kHq -hsf -aYf +emA +ikT +jEM aLT beU bdv @@ -127177,13 +127286,13 @@ aQL bsW xvX aQL -ivi -jFn -xkM -hQo +bqc +noI +dJG +sZe bdl ntd -iVj +hgO eqb mLR hdE @@ -127200,10 +127309,10 @@ scH nzO kxL hpS -sUk -mgN -lLe -rPl +gyE +nzt +jhs +pOW bJC cfq cgv @@ -127221,9 +127330,9 @@ bSJ clN clT bSJ -sFO -gbz -nhJ +xsv +gEh +tcO aaa aaa aaa @@ -127263,28 +127372,28 @@ aaa aaa aad aag -sTT -glC -oCV -mBf -nHf -hYj -mtj -oPS -nHf -sJo -hoC -mBf -sJo -nHf -sJo -mBf -lLx -aoZ -mBf -byZ -iSu -iaI +fTl +wIu +wXJ +taw +oxy +kMa +qIa +iSB +oxy +oQL +hdy +taw +oQL +oxy +oQL +taw +liF +wPR +taw +cui +fQU +onh inw amA amx @@ -127300,9 +127409,9 @@ atq amx aoT inw -dRm -iSu -jhJ +ivV +fQU +hPr loP iwB tOC @@ -127311,17 +127420,17 @@ vqL xBY qwo loP -qrS -jzp -gGX -ekz -cvp -nLT -nLT -nLT -uAx -pNu -bMH +ang +hqu +aPO +wXl +fJp +iCD +iCD +iCD +tVn +jei +fVe aag ajZ aaa @@ -127360,9 +127469,9 @@ aaa aaa aaa aaa -kHq -bhe -aYf +emA +qGC +jEM aLT aLT aLT @@ -127380,10 +127489,10 @@ aQL aQL aQL aQL -ivi -llQ -tMu -iPL +bqc +ubQ +fpM +bEk bdl tFS bdj @@ -127403,10 +127512,10 @@ jaR mJa wWP rsK -wOb -iZq -jPA -rPl +cBC +feo +ekM +pOW bJC bJC bJC @@ -127424,9 +127533,9 @@ bSJ bSJ bSJ bSJ -kTt -toh -nhJ +goM +tfQ +tcO aaa aaa aaa @@ -127466,28 +127575,28 @@ aaf aaf aag aag -sTT -mBf -mBf -mBf -lOa -wNN -vts -lVv -nHf -sJo -ftE -mBf -kWc -nHf -sJo -mBf -sJo -sJo -mBf -qRq -psT -wYI +fTl +taw +taw +taw +wTn +wOv +tuJ +iKV +oxy +oQL +oFr +taw +mUL +oxy +oQL +taw +oQL +oQL +taw +pEd +gBg +bLg aqj arw anP @@ -127503,9 +127612,9 @@ atq atq wwJ inw -qRq -kTn -usl +pEd +tbD +xhi loP joG sDu @@ -127514,17 +127623,17 @@ wSn xBY lKa loP -yhx -pNu -gGX -ekz -fcW -qyu -pNu -fXG -xft -riw -bMH +fvo +jei +aPO +wXl +kNq +jcE +jei +lVR +pHD +dhp +fVe aag aag aaf @@ -127559,13 +127668,13 @@ aaa aaa aaa aaa -kHq -kHq -kHq -kHq -kHq -hsf -hsf +emA +emA +emA +emA +emA +ikT +ikT aLT vZb tnY @@ -127583,10 +127692,10 @@ aUZ uqA bES kcl -ivi -llQ -lLs -rwk +bqc +ubQ +uPX +rHr bdl wIr aQy @@ -127606,10 +127715,10 @@ nPT bdl bdl bdl -iCf -gMC -jPA -rPl +jLg +uEO +ekM +pOW hNw wos bMC @@ -127627,13 +127736,13 @@ hcI hcI vPK bSJ -oeY -gbz -nhJ -nhJ -nhJ -nhJ -nhJ +cZp +gEh +tcO +tcO +tcO +tcO +tcO aaa aaa aaa @@ -127669,28 +127778,28 @@ aag aag aag aag -sTT -siP -sJo -vMv -nHf -wNN -bZu -hBR -nHf -hYj -sGD -mBf -sMC -nHf -sEC -mBf -sJo -sJo -mBf -dxH -psT -jEt +fTl +hEr +oQL +kiR +oxy +wOv +qlu +qAG +oxy +kMa +gQu +taw +lsh +oxy +wjP +taw +oQL +oQL +taw +rhX +gBg +fDk inw qHM emn @@ -127706,9 +127815,9 @@ amx amx aBs inw -qRq -kTn -usl +pEd +tbD +xhi loP kxo wSn @@ -127717,17 +127826,17 @@ kdi xBY kxo loP -pwJ -pNu -gGX -ekz -fcW -wsw -jzp -cua -qJr -pNu -bMH +nSk +jei +aPO +wXl +kNq +cke +hqu +oSR +fZI +jei +fVe aag aag aag @@ -127762,13 +127871,13 @@ aaa aaa aaa aaa -kHq -enq -iJU -gQz -qXm -aYf -hsf +emA +hyb +kjY +kcG +tIF +jEM +ikT aWT aMH beV @@ -127786,9 +127895,9 @@ aSE aVf bES kcl -ivi -nIL -ruC +bqc +sUk +slo bdl bdl bdl @@ -127798,21 +127907,21 @@ bdl bdl bdl bdl -voU +xWo bdl bdl bdl bdl -fqh -qtO -fqh -qgM -qtO +reN +dEp +reN +htk +dEp bdl bdl -idg -nQb -rPl +udf +iyC +pOW hNw sZq jZv @@ -127830,13 +127939,13 @@ aMI wGE erG ewO -bYd -aCr -uFE -eMt -eQa -vRW -nhJ +sEu +xhO +ffx +jhK +srl +lWY +tcO aaa aaa aaa @@ -127872,28 +127981,28 @@ aag aag aag aag -sTT -siP -dOX -mBf -ckq -wNN -glC -lGi -nHf -wNN -heI -mBf -oCV -nHf -nHf -vMv -nHf -nHf -vMv -xJV -psT -spa +fTl +hEr +xBS +taw +tTG +wOv +wIu +ydf +oxy +wOv +ixu +taw +wXJ +oxy +oxy +kiR +oxy +oxy +kiR +fiH +gBg +xsX alO alO alO @@ -127909,9 +128018,9 @@ atq atq aBs alO -qRq -psT -xJV +pEd +gBg +fiH fTF xBY xBY @@ -127920,17 +128029,17 @@ xBY xBY jGI loP -fcW -cvp -uyV -ekz -fcW -fcW -fcW -fcW -jCu -pNu -bMH +kNq +fJp +nOx +wXl +kNq +kNq +kNq +kNq +pAV +jei +fVe aag aag aag @@ -127965,13 +128074,13 @@ aaa aaa aaa aaa -kHq -pkv -hsf -hsf -hsf -hsf -hsf +emA +jkN +ikT +ikT +ikT +ikT +ikT aLT aZf duV @@ -127989,33 +128098,33 @@ iIR aVf bES kcl -ivi -llQ -kJw -mgZ -wVU -row -rXg -row -row -kDT -fRD -fRD -fRD -muJ -row -row -fRD -jZz -row -evQ -fRD -row -row -mgZ -oZJ -jPA -rPl +bqc +ubQ +kwi +lZM +rSR +xss +rLK +xss +xss +uHk +dXb +dXb +dXb +cTX +xss +xss +dXb +ndm +xss +iFY +dXb +xss +xss +lZM +kYl +ekM +pOW hNw sZq jZv @@ -128033,13 +128142,13 @@ jGR jGR oqu bSJ -gbz -gbz -gbz -gbz -gbz -aCr -nhJ +gEh +gEh +gEh +gEh +gEh +xhO +tcO aaa aaa aaa @@ -128075,28 +128184,28 @@ aag aag aag aag -sTT -ozw -qzm -mBf -nHf -shJ -jXL -rcw -nHf -wNN -bZu -mBf -bZu -nHf -sJo -mBf -sJo -sJo -jpu -qRq -psT -pEu +fTl +oqc +smw +taw +oxy +rgk +nUT +cnP +oxy +wOv +qlu +taw +qlu +oxy +oQL +taw +oQL +oQL +lnD +pEd +gBg +iea alO gKZ vTv @@ -128112,9 +128221,9 @@ atq atq aBs alO -qsj -kTn -usl +pvE +tbD +xhi gdS wSn kXN @@ -128123,17 +128232,17 @@ odD xBY mOg oHx -gGX -vnE -gGX -rji -lcM -cTb -cTb -cTb -gxW -pNu -bMH +aPO +iXB +aPO +gof +bVr +ivL +ivL +ivL +fVa +jei +fVe aag aag aag @@ -128168,9 +128277,9 @@ aaa aaa aaa aaa -kHq -kSA -hsf +emA +fGi +ikT aLT aLT aLT @@ -128192,16 +128301,16 @@ chp aVf aQL aQL -uLs -klk -bTY -qwT -qwT -xIy -qwT -qwT -qwT -qwT +lhs +bww +tHF +cvx +cvx +bKJ +cvx +cvx +cvx +cvx vub vub vub @@ -128209,16 +128318,16 @@ owW vub vub vub -qwT -qwT -qwT -xIy -qwT -qwT -qwT -fkz -pVF -gtL +cvx +cvx +cvx +bKJ +cvx +cvx +cvx +xQz +bFX +pmd bJC bJC bMD @@ -128240,9 +128349,9 @@ bSJ bSJ bSJ bSJ -gbz -fcx -nhJ +gEh +dFL +tcO aaa aaa aaa @@ -128278,28 +128387,28 @@ aag aag aag aag -sTT -mBf -mBf -mBf -lOa -sJo -sJo -rEs -nHf -oFn -kpl -mBf -bZu -nHf -iIt -mBf -wfG -lPE -jpu -qRq -psT -pEu +fTl +taw +taw +taw +wTn +oQL +oQL +lUQ +oxy +tBU +iDs +taw +qlu +oxy +hja +taw +kLZ +tty +lnD +pEd +gBg +iea alO arz atq @@ -128315,9 +128424,9 @@ auB atc aOF alO -qRq -kTn -usl +pEd +tbD +xhi gdS lBg dXd @@ -128326,17 +128435,17 @@ loP eMh loP loP -fcW -cGP -gGX -wXS -kHv -rbE -kHv -kHv -foU -pNu -bMH +kNq +hnt +aPO +wSx +gYI +wPa +gYI +gYI +rzk +jei +fVe aag aag aag @@ -128371,9 +128480,9 @@ aaa aaa aaa aaa -kHq -aYf -hsf +emA +jEM +ikT aLT bBg vPv @@ -128395,9 +128504,9 @@ brA aVf lQz aQL -ivi -bWD -ivi +bqc +qIf +bqc bbs cbh xYP @@ -128419,9 +128528,9 @@ tez gsm bCM bbr -wOC -jPA -rPl +uPE +ekM +pOW bJC jht jZv @@ -128443,9 +128552,9 @@ qNd hzu hcI bSJ -aCr -aCr -nhJ +xhO +xhO +tcO aaa aaa aaa @@ -128481,28 +128590,28 @@ aag aag aag aag -sTT -sJo -oPv -rEd -nHf -sJo -mBf -mBf -rFS -mBf -mBf -mBf -heI -nHf -sJo -mBf -mBf -mBf -mBf -qRq -psT -pEu +fTl +oQL +mOE +gUG +oxy +oQL +taw +taw +mRI +taw +taw +taw +ixu +oxy +oQL +taw +taw +taw +taw +pEd +gBg +iea alO arz atq @@ -128518,9 +128627,9 @@ aIU aMq aOG alO -qRq -psT -usl +pEd +gBg +xhi loP loP loP @@ -128530,16 +128639,16 @@ vyI lPB oHl jWh -fcW -nVz -fcW -fcW -fcW -fcW -fcW -eEv -gRt -bMH +kNq +qDB +kNq +kNq +kNq +kNq +kNq +gGb +oUx +fVe aag aag aag @@ -128574,9 +128683,9 @@ aaa aaa aaa aaa -kHq -aYf -aYf +emA +jEM +jEM aLT nuN nuN @@ -128598,9 +128707,9 @@ bOG aVf iaq aQL -ivi -bWD -ivi +bqc +qIf +bqc bbs bKD vTS @@ -128622,9 +128731,9 @@ tez ccQ bCN bbr -wOC -jPA -rPl +uPE +ekM +pOW bJC cjC jZv @@ -128646,9 +128755,9 @@ rYp oEo oEo bSJ -aCr -aCB -nhJ +xhO +lMO +tcO aaa aaa aaa @@ -128684,28 +128793,28 @@ aag aag aag aag -sTT -nHf -nHf -vag -nHf -sJo -mBf -lnb -gBO -ozt -mBf -sMC -sJo -nHf -sJo -eNO -sCi -kpl -mBf -qRq -psT -pEu +fTl +oxy +oxy +bCv +oxy +oQL +taw +gCQ +rEs +tvr +taw +lsh +oQL +oxy +oQL +aYU +uxs +iDs +taw +pEd +gBg +iea alO arz atq @@ -128721,9 +128830,9 @@ xBe xBe xBe xBe -qRq -psT -usl +pEd +gBg +xhi jWh eFK wGd @@ -128733,16 +128842,16 @@ hSk hSk uIv jWh -nmp -iPe -dbj -fcW -eje -olv -njr -eEv -pNu -bMH +jZj +sRP +oko +kNq +tiY +qAK +xGK +gGb +jei +fVe aag aag aag @@ -128777,9 +128886,9 @@ aaa aaa aaa aaa -kHq -slG -aYf +emA +oPF +jEM aLT vug vug @@ -128801,9 +128910,9 @@ bRg aVf aQL aQL -ycS -bWD -ivi +ylN +qIf +bqc bbs ydM xYP @@ -128825,9 +128934,9 @@ tez ccQ cdn bbr -wOC -jPA -rPl +uPE +ekM +pOW bJC bJC kGF @@ -128849,9 +128958,9 @@ yle wWX wWX bSJ -aCr -dvi -nhJ +xhO +xHa +tcO aaa aaa aaa @@ -128887,28 +128996,28 @@ aag aag aag aag -sTT -lOa -sJo -dLx -sJo -rYM -mBf -lnb -pVG -ndd -mBf -vAu -sJo -nHf -sJo -sJo -sJo -tlX -mBf -qsj -psT -pEu +fTl +wTn +oQL +qmq +oQL +nXo +taw +gCQ +bNc +tCC +taw +ftG +oQL +oxy +oQL +oQL +oQL +keE +taw +pvE +gBg +iea xnR arm ats @@ -128924,9 +129033,9 @@ aIV qqr arH xBe -qRq -psT -usl +pEd +gBg +xhi vXd duF hSk @@ -128936,16 +129045,16 @@ hSk hSk uIv jWh -iCI -gGX -gMj -fcW -pNu -vBa -bcQ -eEv -yen -bMH +eHz +aPO +tMT +kNq +jei +ltm +oAT +gGb +cmV +fVe aag aag aag @@ -128980,9 +129089,9 @@ aaa aaa aaa aaa -kHq -kin -iZh +emA +rIV +nvI aLT iPS vAE @@ -129004,9 +129113,9 @@ jOi aVf bES kcl -ivi -bWD -ivi +bqc +qIf +bqc bbs dvs xYP @@ -129028,9 +129137,9 @@ tez ccQ bCM bbr -wOC -jPA -rPl +uPE +ekM +pOW hNw sZq lef @@ -129052,9 +129161,9 @@ vSW scy kPJ bSJ -aCr -wkJ -nhJ +xhO +eeR +tcO aaa aaa aaa @@ -129090,28 +129199,28 @@ aag aag aag aag -sTT -nHf -mBf -mBf -mkq -mBf -mBf -opU -nHf -iqN -ovx -fwQ -wJS -fwQ -fwQ -fwQ -fwQ -fwQ -wZD -wPR -sEW -hbK +fTl +oxy +taw +taw +xcs +taw +taw +utC +oxy +ikC +vRJ +gNQ +laP +gNQ +gNQ +gNQ +gNQ +gNQ +xDG +tJH +qpH +iSu alO arA att @@ -129127,9 +129236,9 @@ azo aJg abR xBe -qRq -psT -cGk +pEd +gBg +jhm jWh oih khE @@ -129139,16 +129248,16 @@ vyI kpQ vSE jWh -pPw -iay -waG -fcW -pNu -vBa -xiD -eEv -pNu -bMH +nwA +xZz +kRN +kNq +jei +ltm +ejj +gGb +jei +fVe aag aag aag @@ -129183,9 +129292,9 @@ aaa aaa aaa aaa -kHq -pMI -dJF +emA +sEg +kDd aLT aLT aLT @@ -129207,9 +129316,9 @@ vfx aVf bES kcl -uLs -uos -uLs +lhs +uvh +lhs kFY jmK bDL @@ -129231,9 +129340,9 @@ tez ccQ bCN jhb -iFJ -pVF -bQr +kAj +bFX +hza hNw sZq ltI @@ -129255,9 +129364,9 @@ bSJ bSJ bSJ bSJ -twi -uIF -nhJ +qid +lNk +tcO aaa aaa aaa @@ -129293,28 +129402,28 @@ aag aag aag aag -sTT -nHf -mBf -vkW -uVx -aFE -mBf -lnb -fmY -mkW -mBf -mBf -mBf -rFS -mBf -mBf -mBf -mBf -mBf -dxH -psT -usl +fTl +oxy +taw +tZM +qEZ +frV +taw +gCQ +uqJ +vbu +taw +taw +taw +mRI +taw +taw +taw +taw +taw +rhX +gBg +xhi wDM wDM wDM @@ -129330,9 +129439,9 @@ atv auV amE xBe -qRq -psT -usl +pEd +gBg +xhi jWh jWh uUz @@ -129342,16 +129451,16 @@ qbZ jWh jWh jWh -rYT -gGX -lQk -fcW -iOt -pNu -fXG -xft -riw -bMH +fQl +aPO +nGZ +kNq +xQe +jei +lVR +pHD +dhp +fVe aag aag aag @@ -129386,9 +129495,9 @@ aaa aaa aaa aaa -kHq -aEE -hsf +emA +eTD +ikT aLT bBg vPv @@ -129410,9 +129519,9 @@ bRV bSe bES kcl -ivi -bWD -ivi +bqc +qIf +bqc bBd aPr bfl @@ -129434,9 +129543,9 @@ bSb bEa bFp bBd -wOC -jPA -rPl +uPE +ekM +pOW hNw sZq lwJ @@ -129458,9 +129567,9 @@ mAV hzu hcI bSJ -dpM -aCr -nhJ +rqz +xhO +tcO aaa aaa aaa @@ -129496,17 +129605,17 @@ aag aag aag aag -sTT -pSP -mBf -vwJ -vWa -iIa -mBf -lnb -gBO -sXg -mBf +fTl +lmq +taw +mDz +pIf +uwf +taw +gCQ +rEs +bhZ +taw uiG rTZ tfb @@ -129515,9 +129624,9 @@ tfb tfb tfb ptK -qRq -kTn -usl +pEd +tbD +xhi wDM aOM aoW @@ -129533,9 +129642,9 @@ atv auV amE xBe -qRq -kTn -usl +pEd +tbD +xhi jWh xXa xXa @@ -129545,16 +129654,16 @@ cKL jbH rJh jWh -pOa -fZu -gyT -fcW -eeL -pNu -cua -fNv -pNu -bMH +rJY +dPl +qQG +kNq +cfm +jei +oSR +grd +jei +fVe aag aag aag @@ -129589,9 +129698,9 @@ aaa aaa aaa aaa -kHq -gER -hsf +emA +efP +ikT aLT cjc cjc @@ -129613,9 +129722,9 @@ csZ odB aQL aQL -ivi -nIL -rNY +bqc +sUk +ade bBe bFq bfm @@ -129637,9 +129746,9 @@ bCD bEb bFq bBe -rWy -nQb -rPl +hWD +iyC +pOW bJC bJC rbH @@ -129661,9 +129770,9 @@ yfm fXN fXN bSJ -gbz -aCr -nhJ +gEh +xhO +tcO aaa aaa aaa @@ -129699,17 +129808,17 @@ aag aag aag aag -sTT -nHf -mBf -mBf -mBf -mBf -mBf -mBf -rFS -mBf -mBf +fTl +oxy +taw +taw +taw +taw +taw +taw +mRI +taw +taw bNM wkX jhx @@ -129718,9 +129827,9 @@ jhx jhx dnH gpc -xJV -kTn -usl +fiH +tbD +xhi wDM uto aoX @@ -129736,9 +129845,9 @@ nNY qKi abR xBe -qsj -cqB -aPc +pvE +gxR +pym dEt soP pDr @@ -129748,16 +129857,16 @@ soP eoG uIv jWh -fcW -nVz -fcW -fcW -fcW -cvp -tIE -eEv -gRt -bMH +kNq +qDB +kNq +kNq +kNq +fJp +ekz +gGb +oUx +fVe aag aag aag @@ -129792,9 +129901,9 @@ aaa aaa aaa aaa -kHq -kAN -hsf +emA +uzv +ikT aLT cjc cjc @@ -129816,9 +129925,9 @@ vil bpC qZX aQL -cbO -bWD -tBp +pjP +qIf +lfz bbs cdp cdp @@ -129840,9 +129949,9 @@ fJO fJO fJO bbs -xJY -jPA -iVq +wMI +ekM +oHt bJC lbf cft @@ -129864,9 +129973,9 @@ yfm fXN fXN bSJ -aCr -fcx -nhJ +xhO +dFL +tcO aaa aaa aaa @@ -129902,13 +130011,13 @@ aag aag aag aag -sTT -lOa -oPv -dFW -gog -bBO -mBf +fTl +wTn +mOE +sWp +nUm +moL +taw mDJ owg xUA @@ -129921,9 +130030,9 @@ nwU owg owg ptK -raD -qTd -usl +nhT +gqf +xhi wDM aOQ fxI @@ -129939,9 +130048,9 @@ azp qJf anV xBe -qRq -kTn -usl +pEd +tbD +xhi jWh iqH khE @@ -129951,16 +130060,16 @@ ovi iat eim jWh -fcW -mEN -fcW -fcW -ieG -nGp -lcM -xft -pNu -bMH +kNq +spd +kNq +kNq +dVH +cAz +bVr +pHD +jei +fVe aag aag aag @@ -129995,9 +130104,9 @@ aaa aaa aaa aaa -kHq -aDY -hsf +emA +hfO +ikT aLT iPS vAE @@ -130019,9 +130128,9 @@ vil bpC qDq kbc -ivi -llQ -ivi +bqc +ubQ +bqc bbs bdw bfo @@ -130043,9 +130152,9 @@ lJu bEd bFs bbs -wOC -jPA -rPl +uPE +ekM +pOW fzq oXb cft @@ -130067,9 +130176,9 @@ gEo scy kPJ bSJ -gbz -tRd -nhJ +gEh +pFr +tcO aaa aaa aaa @@ -130105,13 +130214,13 @@ aag aag aag aag -sTT -nHf -nHf -fcK -nHf -nHf -vMv +fTl +oxy +oxy +tIN +oxy +oxy +kiR owg owg uKV @@ -130124,9 +130233,9 @@ eNi eNi eNi eNi -qRq -psT -cGk +pEd +gBg +jhm wDM aOH aJf @@ -130142,9 +130251,9 @@ xBe xBe xBe xBe -qRq -kTn -ufM +pEd +tbD +rXV jWh jWh jlQ @@ -130154,16 +130263,16 @@ thV uWV uIv oSx -fcW -gRt -fcW -fcW -cvp -tIE -jzp -pNu -ght -bMH +kNq +oUx +kNq +kNq +fJp +ekz +hqu +jei +qDS +fVe aag aag aag @@ -130198,9 +130307,9 @@ aaa aaa aaa aaa -kHq -pkv -hsf +emA +jkN +ikT aLT aLT aLT @@ -130222,9 +130331,9 @@ ngA koC koC xGE -lYg -tBd -ivi +jno +fqw +bqc lgy ccb xYP @@ -130246,9 +130355,9 @@ rXk xYP jew laU -wOC -hPk -lpM +uPE +dEL +rzy uCM lNw eFj @@ -130270,9 +130379,9 @@ bSJ bSJ bSJ bSJ -gbz -owD -nhJ +gEh +kMR +tcO aaa aaa aaa @@ -130308,13 +130417,13 @@ aah aag aag aag -sTT -jaF -emX -iGH -mtj -mtj -mBf +fTl +pWw +hbE +cbc +qIa +qIa +taw ptK afX ptK @@ -130327,9 +130436,9 @@ olO wiG nWN eNi -qRq -kTn -usl +pEd +tbD +xhi wDM wDM wDM @@ -130345,9 +130454,9 @@ aJh arq ufx alR -qRq -kTn -cGk +pEd +tbD +jhm jWh hSk hSk @@ -130357,16 +130466,16 @@ upR fCL uIv vVw -cWF -pNu -caZ -pNu -gGX -gGX -gGX -mdG -hNn -bMH +iSV +jei +oYr +jei +aPO +aPO +aPO +gtQ +wiO +fVe aag aag aag @@ -130401,14 +130510,14 @@ aaa aaa aaa aaa -kHq -enq -aYf -aYf -aYf -aYf -enq -aYf +emA +hyb +jEM +jEM +jEM +jEM +hyb +jEM aLT cjc cjc @@ -130425,9 +130534,9 @@ jOx bpC qDq aQL -xRK -klk -uLs +nYR +bww +lhs lgy bsG xYP @@ -130449,9 +130558,9 @@ lJu xYP hLI laU -kIR -gRV -kIR +gyw +uNQ +gyw bJC oXb cfo @@ -130468,14 +130577,14 @@ kPJ fXN fXN bSJ -hMV -eQa -gbz -aCr -aCr -aCr -sce -nhJ +enY +srl +gEh +xhO +xhO +xhO +jay +tcO aaa aaa aaa @@ -130511,13 +130620,13 @@ aaa aad aag aag -sTT -hEB -ojg -mbp -bib -bZu -mBf +fTl +prX +oYs +odG +biC +qlu +taw bKm hsr mDJ @@ -130530,9 +130639,9 @@ ueG rPt jyE eNi -qRq -kTn -usl +pEd +tbD +xhi hwC rcS amx @@ -130548,9 +130657,9 @@ aJi azs atq alR -qRq -kTn -usl +pEd +tbD +xhi jlQ tst uUe @@ -130560,16 +130669,16 @@ pZK fCL uIv lFA -fcW -pNu -fcW -fcW -pNu -pNu -kjY -kMW -uGy -bMH +kNq +jei +kNq +kNq +jei +jei +gYU +oGi +dVR +fVe aag aag ajZ @@ -130604,14 +130713,14 @@ aaa aaa aaa aaa -kHq -kHq -kHq -kHq -kHq -aYf -hsf -aYf +emA +emA +emA +emA +emA +jEM +ikT +jEM aLT iPS vAE @@ -130628,9 +130737,9 @@ jOx bpC ksp aQL -ivi -lWA -rez +bqc +wqO +wxD cau bCG cgE @@ -130650,11 +130759,11 @@ xYP jmK hcw cgE -qGS -dPf -jyX -fza -wOC +yht +blq +ddL +eZR +uPE bJC kIP cfo @@ -130671,14 +130780,14 @@ oer vSW scy bSJ -ljD -twi -lkg -nhJ -nhJ -nhJ -nhJ -nhJ +mCE +qid +hCq +tcO +tcO +tcO +tcO +tcO aaa aaa aaa @@ -130714,13 +130823,13 @@ aaa aad aag aag -sTT -sTT -sTT -sTT -sTT -sTT -sTT +fTl +fTl +fTl +fTl +fTl +fTl +fTl qJx hsr mDJ @@ -130733,9 +130842,9 @@ iKD rPt rPt eNi -qRq -kTn -usl +pEd +tbD +xhi alR amA atq @@ -130751,9 +130860,9 @@ aJj aMD atq alR -qRq -kTn -usl +pEd +tbD +xhi jlQ tZZ gLz @@ -130763,16 +130872,16 @@ ovi fCL lYk bYn -bMH -bMH -bMH -bMH -bMH -bMH -bMH -bMH -bMH -bMH +fVe +fVe +fVe +fVe +fVe +fVe +fVe +fVe +fVe +fVe aag aag ajZ @@ -130811,10 +130920,10 @@ aaa aaa aaa aaa -kHq -slG -hsf -aYf +emA +oPF +ikT +jEM aLT meY meY @@ -130831,9 +130940,9 @@ pyl pDt aQL aQL -ivi -llQ -ivi +bqc +ubQ +bqc lgy ccN xYP @@ -130853,11 +130962,11 @@ wLm wLm lJu xYP -hko +wbV laU -wOC -iQx -wOC +uPE +vuV +uPE bJC bJC vLA @@ -130874,10 +130983,10 @@ oer oer oer oer -tQw -gbz -tRd -nhJ +uVp +gEh +pFr +tcO aaa aaa aaa @@ -130936,9 +131045,9 @@ eNi eNi gIh eNi -gUt -psT -usl +iIQ +gBg +xhi alR amA atq @@ -130954,9 +131063,9 @@ amA ayl amx alR -qRq -kTn -usl +pEd +tbD +xhi jWh jmQ vcu @@ -131014,18 +131123,18 @@ aaa aaa aaa aaa -kHq -eRm -hsf -hsf -hsf -hsf -hsf -hsf -hsf -aYf -hsf -aYf +emA +wtn +ikT +ikT +ikT +ikT +ikT +ikT +ikT +jEM +ikT +jEM aQL qZX qZX @@ -131034,9 +131143,9 @@ jOx bpC qZX aQL -ivi -llQ -ivi +bqc +ubQ +bqc lgy ccb xYP @@ -131058,9 +131167,9 @@ rXk xYP jew laU -wOC -iQx -wOC +uPE +vuV +uPE bJC lbf cfo @@ -131069,18 +131178,18 @@ lbf lbf lbf bJC -gbz -ofP -gbz -aCr -doM -nda -aCr -gbz -gbz -gbz -gbz -nhJ +gEh +cmN +gEh +xhO +dzX +foS +xhO +gEh +gEh +gEh +gEh +tcO aaa aaa aaa @@ -131139,9 +131248,9 @@ aWb dyK vzK wYY -qRq -psT -usl +pEd +gBg +xhi alR amA atq @@ -131157,9 +131266,9 @@ aJl amx atq alR -qRq -kTn -usl +pEd +tbD +xhi jlQ snE sGL @@ -131217,18 +131326,18 @@ aaa aaa aaa aaa -kHq -dJm -nmS -aYf -aYf -aYf -aYf -aRm -aYf -aYf -aYf -aYf +emA +pGj +uoj +jEM +jEM +jEM +jEM +fBo +jEM +jEM +jEM +jEM aQL qDq qDq @@ -131237,9 +131346,9 @@ jOx bpC qDq bTb -ivi -llQ -ivi +bqc +ubQ +bqc bbs ccd ccN @@ -131261,9 +131370,9 @@ lJu huK jeQ bbs -wOC -iQx -wOC +uPE +vuV +uPE xSw oXb cfo @@ -131272,18 +131381,18 @@ oXb oXb oXb bJC -gbz -aCr -gbz -aCr -gbz -uvB -aCr -gbz -aCr -aCr -wqX -nhJ +gEh +xhO +gEh +xhO +gEh +hWH +xhO +gEh +xhO +xhO +rhD +tcO aaa aaa aaa @@ -131342,9 +131451,9 @@ tii eJX sAC wYY -qRq -psT -usl +pEd +gBg +xhi alR amA amx @@ -131360,9 +131469,9 @@ aJk amx atq alR -qRq -kTn -usl +pEd +tbD +xhi jlQ tZZ cBj @@ -131420,18 +131529,18 @@ aaa aaa aaa aaa -kHq -kHq -kHq -kHq -kHq -kHq -kHq -kHq -kHq -kHq -hsf -qwE +emA +emA +emA +emA +emA +emA +emA +emA +emA +emA +ikT +oBr aQL qDq qDq @@ -131440,9 +131549,9 @@ osA cHl cHl bTb -uLs -klk -uLs +lhs +bww +lhs bbs cdp cdp @@ -131464,9 +131573,9 @@ fJO fJO fJO bbs -kIR -gRV -kIR +gyw +uNQ +gyw xSw ejo ejo @@ -131475,18 +131584,18 @@ oXb oXb oXb bJC -aCr -gbz -gbz -nhJ -nhJ -urZ -nhJ -nhJ -nhJ -nhJ -nhJ -nhJ +xhO +gEh +gEh +tcO +tcO +ucy +tcO +tcO +tcO +tcO +tcO +tcO aaa aaa aaa @@ -131545,9 +131654,9 @@ sjj fzP sAC wYY -qRq -kTn -usl +pEd +tbD +xhi alR amA atq @@ -131563,9 +131672,9 @@ xEO xEO lnP alR -qRq -kTn -cGk +pEd +tbD +jhm jWh qLs qLs @@ -131632,9 +131741,9 @@ aaa aaa aaa aaa -kHq -bhe -enq +emA +qGC +hyb aQL ksp ksp @@ -131643,33 +131752,33 @@ qDq qDq qDq bTb -ivi -llQ -ivi -ivi -ivi -ivi -ivi -ivi -eZn -ivi -nAN -ivi -ivi -vja -wOC -wOC -niK -wOC -hky -wOC -wOC -wOC -wOC -wOC -wOC -iQx -wOC +bqc +ubQ +bqc +bqc +bqc +bqc +bqc +bqc +dYb +bqc +fpI +bqc +bqc +tGS +uPE +uPE +uuT +uPE +fRL +uPE +uPE +uPE +uPE +uPE +uPE +vuV +uPE xSw oXb oXb @@ -131678,10 +131787,10 @@ kIP qer kIP bJC -aCr -wFG -tRd -nhJ +xhO +wYd +pFr +tcO aaa aaa aaa @@ -131748,9 +131857,9 @@ fcM uzE qsL nim -sFo -qTd -usl +prV +gqf +xhi alR amA atq @@ -131766,9 +131875,9 @@ iWR iWR kbx alR -qRq -kTn -usl +pEd +tbD +xhi jWh jWh jlQ @@ -131835,9 +131944,9 @@ aaa aaa aaa aaa -kHq -hsf -aYf +emA +ikT +jEM aQL aQL aQL @@ -131846,33 +131955,33 @@ ksp rou ksp aQL -ivi -mfr -tqp -tqp -tqp -pAa -cgp -pAa -pAa -pAa -hdC -pAa -pAa -cZo -wad -wad -upP -wad -wad -wad -wYU -wad -sGQ -sGQ -sGQ -cLT -nwd +bqc +qas +qUO +qUO +qUO +reu +fLf +reu +reu +reu +kkN +reu +reu +uTP +kEE +kEE +dCM +kEE +kEE +kEE +ulH +kEE +wzJ +wzJ +wzJ +nmH +xui bJC kIP qer @@ -131881,10 +131990,10 @@ bJC bJC bJC bJC -gbz -gbz -gbz -nhJ +gEh +gEh +gEh +tcO aaa aaa aaa @@ -131951,9 +132060,9 @@ xlC gyO kTN eNi -qsj -kTn -usl +pvE +tbD +xhi alR amA atq @@ -131969,14 +132078,14 @@ xEO xEO aOV alR -qRq -kTn -usl +pEd +tbD +xhi jWh -pnV -nqp +dda +yhO vyI -fVM +pXe thV fCL uIv @@ -132038,56 +132147,56 @@ aaa aaa aaa aaa -kHq -hsf -aYf -aYf -gHm -aYf -qwE -qwE -qwE -qwE -qwE -mED -ivi -ivi -ivi -ivi -eOz -gZO -eOz -eOz -ivi -aAM -ivi -ivi -vja -wOC -wOC -qXz -wOC -wCN -wCN -iQx -wCN -wOC -wOC -wOC -wOC -hVR +emA +ikT +jEM +jEM +hYf +jEM +oBr +oBr +oBr +oBr +oBr +ovQ +bqc +bqc +bqc +bqc +nci +mww +nci +nci +bqc +rVC +bqc +bqc +tGS +uPE +uPE +tIl +uPE +cJs +cJs +vuV +cJs +uPE +uPE +uPE +uPE +pqw bJC bJC bJC bJC bJC -aCr -aCr -aCr -gbz -aCr -dXc -nhJ +xhO +xhO +xhO +gEh +xhO +xfq +tcO aaa aaa aaa @@ -132154,9 +132263,9 @@ oNb iFC qAA eNi -qRq -psT -usl +pEd +gBg +xhi alR arK atc @@ -132172,12 +132281,12 @@ aJq aMG aOW alR -qRq -kTn -usl +pEd +tbD +xhi jWh -qkz -nqp +huZ +yhO vyI vyI vyI @@ -132241,27 +132350,27 @@ aaa aaa aaa aaa -kHq -kai -aYf -hsf -hsf -aYf -aYf -lfs -hsf -hsf -qwE -qwE -bhV -qwE -qwE -qSB -gtc -gCX -rly -jAy -jAy +emA +kAv +jEM +ikT +ikT +jEM +jEM +gCu +ikT +ikT +oBr +oBr +qPn +oBr +oBr +jxX +knl +pum +jAj +kKY +kKY oJk lNR lNR @@ -132269,28 +132378,28 @@ oJk lNR lNR oJk -anE -wBg -cwy -rYV -rSz -wJA -lij -lij -saa -lij -lij -aCr -aCr -aCr -aCr -aCr -aCr -aCr -aCr -aCr -eQa -nhJ +mXy +oGh +far +vDo +nnr +cNm +ljv +ljv +sUi +ljv +ljv +xhO +xhO +xhO +xhO +xhO +xhO +xhO +xhO +xhO +srl +tcO aaa aaa aaa @@ -132357,9 +132466,9 @@ eNi eNi eNi eNi -sGP -mju -sGP +mQF +rnO +mQF alO alO alO @@ -132375,14 +132484,14 @@ alO alO alO alO -sGP -mju -sGP +mQF +rnO +mQF jWh -pnV -nqp +dda +yhO vyI -qJb +cvE thV uWV uIv @@ -132444,22 +132553,22 @@ aaa aaa aaa aaa -kHq -qev -gaW -aYf -aYf -aYf -aYf -lfs -aYf -aYf -qwE -nSI -aYf -aYf -qwE -qwE +emA +qFS +pPG +jEM +jEM +jEM +jEM +gCu +jEM +jEM +oBr +sRM +jEM +jEM +oBr +oBr sqg rPQ sqg @@ -132477,23 +132586,23 @@ oJk sqg mgu sqg -lij -lij -aCr -gbz -aCr -aCr -gbz -gbz -gbz -aCr -aCr -aCr -aCr -gbz -tbz -xUS -nhJ +ljv +ljv +xhO +gEh +xhO +xhO +gEh +gEh +gEh +xhO +xhO +xhO +xhO +gEh +aEr +keO +tcO aaa aaa aaa @@ -132560,9 +132669,9 @@ dWX owg owg ptK -oaE -whg -xLC +bZq +hfc +jgS aqq aPa eky @@ -132578,9 +132687,9 @@ eky eky aPa aqq -oaE -whg -hKS +bZq +hfc +lBf jWh xXa xXa @@ -132647,22 +132756,22 @@ aaa aaa aaa aaa -kHq -hFR -kJD -fMn -hsf -hsf -hsf -aPP -fMn -aYf -aYf -aYf -aYf -hsf -hsf -qwE +emA +twp +iyE +ecb +ikT +ikT +ikT +ctp +ecb +jEM +jEM +jEM +jEM +ikT +ikT +oBr fcS gdJ oyR @@ -132680,23 +132789,23 @@ oJk ppn nAY cjt -lij -xtk -xWh -gbz -gbz -gbz -aCr -erR -aCr -gbz -aCr -gbz -gbz -tNy -lgI -ulI -nhJ +ljv +ceY +gIm +gEh +gEh +gEh +xhO +wra +xhO +gEh +xhO +gEh +gEh +sOD +eMx +xgr +tcO aaa aaa aaa @@ -132763,9 +132872,9 @@ keR jhx keR dwI -aPc -efE -hOb +pym +jae +tGW hal uYg nau @@ -132781,9 +132890,9 @@ uYg nau uYg hal -eQP -efE -aPc +rrG +jae +pym mPh soP tWi @@ -132850,22 +132959,22 @@ aaa aaa aaa aaa -kHq -kHq -kHq -kHq -kHq -kHq -kHq +emA +emA +emA +emA +emA +emA +emA vgw sqg sqg sqg mpP sqg -qwE -bhe -qwE +oBr +qGC +oBr fcS gdJ oyR @@ -132883,23 +132992,23 @@ oJk pkA nAY cjt -lij -gbz -lij +ljv +gEh +ljv sqg mpP aep aep aep dKL -nhJ -nhJ -nhJ -nhJ -nhJ -nhJ -nhJ -nhJ +tcO +tcO +tcO +tcO +tcO +tcO +tcO +tcO aaa aaa aaa @@ -132966,9 +133075,9 @@ kPG kPG cVw ptK -xdr -sXG -enK +iOP +xjI +fzm aqq eky aNl @@ -132984,9 +133093,9 @@ eky aNl eky aqq -xdr -fAQ -enK +iOP +xSl +fzm jWh tim uWV @@ -133067,8 +133176,8 @@ sqg rwB lKM sqg -vJJ -qwE +nSq +oBr fcS gdJ cjt @@ -133086,8 +133195,8 @@ pRZ fcS nAY jOE -lij -lGo +ljv +mPc sqg qEL vmE @@ -133169,9 +133278,9 @@ ucp cIW ptK ptK -oaI -pFh -oaI +ybk +sDe +ybk aHe jlT exi @@ -133187,9 +133296,9 @@ eky ins wRP aHe -wUB -wUB -wUB +eZm +eZm +eZm jWh jWh sWC @@ -133270,8 +133379,8 @@ sqg eKy wQA sqg -aYf -qwE +jEM +oBr uYn jaM oXM @@ -133289,8 +133398,8 @@ mkP muQ ojh nxx -lij -aCr +ljv +xhO sqg gEC skC @@ -133372,9 +133481,9 @@ gPc trB exy ptK -diy -diy -diy +fLl +fLl +fLl eky eky aNl @@ -133390,9 +133499,9 @@ eky aNl eky rqj -wUB -pLB -tpk +eZm +jYm +aZI jWh duz hXG @@ -133575,9 +133684,9 @@ eet fcP pDh ptK -uQp -uQp -rlO +aqZ +aqZ +ptQ aMT aMT dPm @@ -133593,9 +133702,9 @@ okg dPm aMT aMT -qtZ -aBO -aBO +hbp +mwP +mwP jWh axR mIP @@ -133778,9 +133887,9 @@ wxj lht rYv ptK -frq -iDx -diy +haO +pKB +fLl svf arV wZX @@ -133796,9 +133905,9 @@ eky wZX arV vUh -wUB -dnW -aBO +eZm +xUy +mwP jWh vpv pgw @@ -133981,9 +134090,9 @@ ptK afX ptK ptK -frq -diy -diy +haO +fLl +fLl lDn arV wZX @@ -133999,9 +134108,9 @@ eky wZX arV wkA -wUB -wUB -aBO +eZm +eZm +mwP jWh jWh kLc @@ -134176,16 +134285,16 @@ bdH uMc bNM ofK -diy -lkN -frq -dfv -frq -uQp -hOc -frq -oeq -diy +fLl +uxl +haO +ebf +haO +aqZ +tot +haO +qqS +fLl xrq vVu arV @@ -134203,16 +134312,16 @@ wZX arV oIt xrq -wUB -hZp -aBO -dsp -vsa -aBO -exX -fDm -hyL -wUB +eZm +qHG +mwP +xQW +vJR +mwP +hkz +ckj +oaw +eZm lbB uIv pql @@ -134379,16 +134488,16 @@ bdH uMc bNM ofK -diy -lkN -frq -cIZ -frq -uQp -fUF -frq -ruS -diy +fLl +uxl +haO +uLG +haO +aqZ +pbo +haO +xLn +fLl vlk mKy aMT @@ -134406,16 +134515,16 @@ sQO aMT wNS vlk -wUB -fAH -fOO -aBO -vsa -aBO -iUD -cLt -ebz -wUB +eZm +oHg +uiK +mwP +vJR +mwP +jrB +eoK +xTG +eZm lbB uIv pql @@ -134488,8 +134597,8 @@ aWZ qAB gEC sqg -jon -iQK +aIh +eTb kkW iwf uFg @@ -134507,8 +134616,8 @@ vXo gWu xMl lft -iQK -jon +eTb +aIh sqg siN cjt @@ -134582,17 +134691,17 @@ bdH uMc bNM rtd -rlO -uQp -uQp -uQp -uQp -uQp -nLN -frq -wIz -diy -diy +ptQ +aqZ +aqZ +aqZ +aqZ +aqZ +leM +haO +iYm +fLl +fLl vjd aRp jBX @@ -134608,17 +134717,17 @@ tKf jBX aRp quy -wUB -wUB -jDf -hfs -aBO -opf -opf -opf -opf -opf -qtZ +eZm +eZm +bjt +eIN +mwP +ksw +ksw +ksw +ksw +ksw +hbp uWV uIv pql @@ -134691,14 +134800,14 @@ ggQ pYS ivS sqg -xjU -iQK +ppM +eTb hbs vZU elx jnI oJk -ggx +xef dPQ ams eni @@ -134710,8 +134819,8 @@ nYn elx mDL fSF -iQK -xjU +eTb +ppM sqg lvh iks @@ -134785,17 +134894,17 @@ bdH cuC htb pfc -diy -diy -diy -diy -gNj -uQp -uQp -uQp -uQp -uQp -rlO +fLl +fLl +fLl +fLl +rht +aqZ +aqZ +aqZ +aqZ +aqZ +ptQ qYG atM bGc @@ -134811,17 +134920,17 @@ atM bGc atK qYG -qtZ -opf -opf -vrG -opf -vsa -oDI -wUB -wUB -wUB -wUB +hbp +ksw +ksw +rHB +ksw +vJR +rPq +eZm +eZm +eZm +eZm jAJ lAu bYn @@ -134894,8 +135003,8 @@ aep mkL gEC sqg -xjU -iQK +ppM +eTb hsy hsy baJ @@ -134913,8 +135022,8 @@ foC kph hsy hsy -iQK -nJm +eTb +eUe sqg wWl trh @@ -134991,14 +135100,14 @@ tgK tfb wuT lMx -bma -bma -bma -bma -bma -bma -bma -bma +gJF +gJF +gJF +gJF +gJF +gJF +gJF +gJF aPw avu mhG @@ -135014,14 +135123,14 @@ dxK dPC aMU aPw -nzC -nzC -nzC -nzC -nzC -nzC -nzC -nzC +wxy +wxy +wxy +wxy +wxy +wxy +wxy +wxy jFY qKY jHL @@ -135097,27 +135206,27 @@ wpS fZA fEe sqg -xjU -xjU +ppM +ppM hsy shL uXk mlF hsy -wdN -lsQ -lsQ +ckZ +hmv +hmv dTS -lsQ -lsQ -wdN +hmv +hmv +ckZ hsy tos uXk tkn hsy -jon -xjU +aIh +ppM sqg fEe nqW @@ -135300,8 +135409,8 @@ vgw vgw vgw vgw -jon -jon +aIh +aIh hsy wed uXk @@ -135319,8 +135428,8 @@ tos uXk wed hsy -hts -afA +qBS +lib vgw vgw vgw @@ -135502,11 +135611,11 @@ aah aag aag aag -eUf -ioT -xjU +nic +tmQ +ppM hsy -ujr +txS bVN oGJ xpZ @@ -135520,11 +135629,11 @@ coH oTO uqh iAE -vji +sct hsy -gMX -uSI -eUf +iWa +fZR +nic aag aag aag @@ -135705,29 +135814,29 @@ bdH aad aag aag -eUf -jon -jon +nic +aIh +aIh hsy -lxm +fCT uXk rae jIV pzM mtZ -lsQ -lsQ -lsQ +hmv +hmv +hmv fQn pzM nac xNf uXk -kIj +slv hsy -jon -jon -eUf +aIh +aIh +nic aag aag ajZ @@ -135908,29 +136017,29 @@ bdH aad aag aag -eUf -xjU -xjU +nic +ppM +ppM hsy -duP +igs nCn oGJ uSW kzO vaZ kYL -lsQ +hmv sCV rjO suY pdK uqh pJr -kIj +slv hsy -jon -jon -eUf +aIh +aIh +nic aag aag ajZ @@ -136111,29 +136220,29 @@ bdH aad aag aag -eUf -jon -xjU +nic +aIh +ppM hsy hsy -mBT +wTB mlF uXk hmw gSa mtZ -lsQ +hmv fQn wSV ulp uXk tos -kIj +slv hsy hsy -xjU -nJm -eUf +ppM +eUe +nic aag aag ajZ @@ -136314,29 +136423,29 @@ bdH aad aag aag -eUf -jon -jon -jon +nic +aIh +aIh +aIh hsy -osd +ygP mlF hsy -jiq +hcX fQn mtZ -lsQ +hmv fQn mtZ -lsQ +hmv hsy beL -osd +ygP hsy -tHw -jon -jon -eUf +cWb +aIh +aIh +nic aag aag ajZ @@ -136517,29 +136626,29 @@ bdH aad aag aag -eUf -xjU -xjU -xjU +nic +ppM +ppM +ppM hsy ylh opH hsy -gTV +pvI fQn qoR aPU rjO mtZ -goF +njS hsy iEw ylh hsy -qEP -xjU -qEP -eUf +dDT +ppM +dDT +nic aag aag ajZ @@ -136720,29 +136829,29 @@ bdH aad aag aag -eUf -eUf -xUt -jon +nic +nic +wsw +aIh hsy ylh mlF hsy -lsQ +hmv eZp kzO pzM hip ptZ -lsQ +hmv hsy tos ylh hsy -hts -hEy -eUf -eUf +qBS +piJ +nic +nic aag aag ajZ @@ -136924,9 +137033,9 @@ aad aag aag aag -eUf -hts -afA +nic +qBS +lib hsy hsy suJ @@ -136942,9 +137051,9 @@ hsy wdv hsy hsy -sUq -xjU -eUf +yjE +ppM +nic aag aag aag @@ -137127,9 +137236,9 @@ aad aag aag aag -eUf -jon -mtQ +nic +aIh +vsi hsy uiC sIr @@ -137145,9 +137254,9 @@ rlc hfb hUk hsy -xjU -uSI -eUf +ppM +fZR +nic aag aag aag @@ -137330,9 +137439,9 @@ aad aag aag aag -eUf -xjU -xjU +nic +ppM +ppM hsy thc sIr @@ -137348,9 +137457,9 @@ pAm sIr fZl hsy -tyY -jon -eUf +mxV +aIh +nic aag aag aag @@ -137533,9 +137642,9 @@ aad aag aag aag -eUf -jon -jon +nic +aIh +aIh hsy tIe uAK @@ -137551,9 +137660,9 @@ bVv nJa jPd hsy -xjU -flY -eUf +ppM +eeC +nic aag aag aag @@ -137736,9 +137845,9 @@ aad aag aag aag -eUf -xjU -xjU +nic +ppM +ppM hsy dPH sov @@ -137754,9 +137863,9 @@ pAm fZl oex hsy -jon -jon -eUf +aIh +aIh +nic aag aag aag @@ -137939,9 +138048,9 @@ aad aag aag aag -eUf -jon -jon +nic +aIh +aIh hsy rBv sov @@ -137957,9 +138066,9 @@ pAm fZl snt hsy -xjU -xjU -eUf +ppM +ppM +nic aag aag aag @@ -138142,9 +138251,9 @@ aad aag aag aag -eUf -xjU -xjU +nic +ppM +ppM hsy fqW qYq @@ -138160,9 +138269,9 @@ mQn wQD fqW hsy -jon -jon -eUf +aIh +aIh +nic aag aag aag @@ -138345,9 +138454,9 @@ aad aag aag aag -eUf -jon -xjU +nic +aIh +ppM hsy hsy hsy @@ -138363,9 +138472,9 @@ hsy hsy hsy hsy -xjU -xjU -eUf +ppM +ppM +nic aag aag aag @@ -138548,11 +138657,11 @@ aad aag aag aag -eUf -jon -xjU -liF -aBK +nic +aIh +ppM +csd +dDJ hsy haz fQn @@ -138564,11 +138673,11 @@ pzM mtZ haz hsy -aBK -feZ -jon -jon -eUf +dDJ +rXH +aIh +aIh +nic aag aag aag @@ -138642,7 +138751,7 @@ aaa cuC cuC jPq -jZS +xgm aqK cuC uiR @@ -138751,11 +138860,11 @@ aad aag aag aag -eUf -jon -jon -jon -jon +nic +aIh +aIh +aIh +aIh hsy haz pLt @@ -138767,11 +138876,11 @@ mZL lOX haz hsy -gvt -jon -jon -jon -eUf +fpi +aIh +aIh +aIh +nic aag aag aag @@ -138954,11 +139063,11 @@ aad aag aag aag -eUf -eUf -ydb -hEy -hEy +nic +nic +mem +piJ +piJ hsy mkI aPS @@ -138970,11 +139079,11 @@ nop aPS ddf hsy -wQV -xjU -uSI -eUf -eUf +atS +ppM +fZR +nic +nic aag aag aag @@ -139158,10 +139267,10 @@ aag aag aag aag -eUf -jon -xjU -wri +nic +aIh +ppM +sER hsy hsy hsy @@ -139173,10 +139282,10 @@ hsy hsy hsy hsy -jon -jon -jon -eUf +aIh +aIh +aIh +nic aag aag aag @@ -139361,25 +139470,25 @@ aag aag aag aag -eUf -jon -xjU -jon -xjU -olk -jon -mdF -xjU -xjU -xjU -mdF -jon -ssH -xjU -xjU -xjU -jon -eUf +nic +aIh +ppM +aIh +ppM +puT +aIh +xrg +ppM +ppM +ppM +xrg +aIh +erE +ppM +ppM +ppM +aIh +nic aag aag aag From d819ed4260a6fe87bf624c71989050248533f0dd Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Tue, 27 Feb 2024 01:26:13 +0000 Subject: [PATCH 144/148] Automatic changelog for PR #5723 [ci skip] --- html/changelogs/AutoChangeLog-pr-5723.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5723.yml diff --git a/html/changelogs/AutoChangeLog-pr-5723.yml b/html/changelogs/AutoChangeLog-pr-5723.yml new file mode 100644 index 000000000000..b28ec19f8eef --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5723.yml @@ -0,0 +1,6 @@ +author: "LTNTS" +delete-after: True +changes: + - rscadd: "brig areas: warden office, MP bunks, starboard hallway, interrogation room, evidence storage" + - spellcheck: "changes brig surgery to brig medical" + - code_imp: "removed some brig areas from hijack, added other brig areas" \ No newline at end of file From 5f5f15f0c239a9bbde5cba33cca3838d3730f481 Mon Sep 17 00:00:00 2001 From: ihatethisengine <115417687+ihatethisengine@users.noreply.github.com> Date: Tue, 27 Feb 2024 04:30:48 +0300 Subject: [PATCH 145/148] Pried dropship's hatches cannot be locked again (#5808) # About the pull request https://github.com/cmss13-devs/cmss13/pull/5015 this PR allowed a lot better control of the doors for POs, but as it turned out Queen cannot disable door control from the outside anymore. So it led to dropships to be basically unenterable if PO controls the cockpit. Now pried open hatch cannot be remotely locked anymore. Engineer can fix the door by multitooling. # Explain why it's good for the game Xenos can assault dropships again. # Testing Photographs and Procedure
      Screenshots & Videos ![2024-02-25_21-02-58](https://github.com/cmss13-devs/cmss13/assets/115417687/5f38c206-e26c-43fe-b247-cb2dd407797a)
      # Changelog :cl: ihatethisengine balance: Pried open dropship hatches cannot be remotely locked anymore /:cl: --------- Co-authored-by: Drathek <76988376+Drulikar@users.noreply.github.com> --- code/__DEFINES/dropships.dm | 5 ++ code/game/machinery/doors/multi_tile.dm | 48 +++++++++++++++++++ .../shuttle/computers/escape_pod_computer.dm | 2 +- code/modules/shuttle/helpers.dm | 28 ++++++----- code/modules/shuttle/shuttles/dropship.dm | 3 ++ .../tgui/interfaces/DropshipFlightControl.tsx | 21 ++++++-- 6 files changed, 90 insertions(+), 17 deletions(-) diff --git a/code/__DEFINES/dropships.dm b/code/__DEFINES/dropships.dm index f7df570a2864..d53e7c68d8db 100644 --- a/code/__DEFINES/dropships.dm +++ b/code/__DEFINES/dropships.dm @@ -10,3 +10,8 @@ #define DROPSHIP_MIN_AUTO_DELAY 10 SECONDS #define DROPSHIP_AUTO_RETRY_COOLDOWN 20 SECONDS #define DROPSHIP_MEDEVAC_COOLDOWN 20 SECONDS + +//Hatches states +#define SHUTTLE_DOOR_BROKEN -1 +#define SHUTTLE_DOOR_UNLOCKED 0 +#define SHUTTLE_DOOR_LOCKED 1 diff --git a/code/game/machinery/doors/multi_tile.dm b/code/game/machinery/doors/multi_tile.dm index ed2874fc3505..9e734a0152e7 100644 --- a/code/game/machinery/doors/multi_tile.dm +++ b/code/game/machinery/doors/multi_tile.dm @@ -241,10 +241,43 @@ no_panel = 1 not_weldable = 1 var/queen_pryable = TRUE + var/obj/docking_port/mobile/marine_dropship/linked_dropship + /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ex_act(severity) return +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/attackby(obj/item/item, mob/user) + if(HAS_TRAIT(item, TRAIT_TOOL_MULTITOOL)) + var/direction + switch(id) + if("starboard_door") + direction = "starboard" + if("port_door") + direction = "port" + if("aft_door") + direction = "aft" + if(!linked_dropship || !linked_dropship.door_control.door_controllers[direction]) + return ..() + var/datum/door_controller/single/control = linked_dropship.door_control.door_controllers[direction] + if (control.status != SHUTTLE_DOOR_BROKEN) + return ..() + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + to_chat(user, SPAN_WARNING("You don't seem to understand how to restore a remote connection to [src].")) + return + if(user.action_busy) + return + + to_chat(user, SPAN_WARNING("You begin to restore the remote connection to [src].")) + if(!do_after(user, 5 SECONDS, INTERRUPT_ALL, BUSY_ICON_BUILD)) + to_chat(user, SPAN_WARNING("You fail to restore a remote connection to [src].")) + return + unlock(TRUE) + close(FALSE) + control.status = SHUTTLE_DOOR_UNLOCKED + to_chat(user, SPAN_WARNING("You successfully restored the remote connection to [src].")) + return + ..() /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/unlock() if(is_reserved_level(z)) @@ -261,11 +294,26 @@ if(!locked) return ..() + if(xeno.action_busy) + return + to_chat(xeno, SPAN_NOTICE("You try and force the doors open")) if(do_after(xeno, 3 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) unlock(TRUE) open(1) lock(TRUE) + var/direction + switch(id) + if("starboard_door") + direction = "starboard" + if("port_door") + direction = "port" + if("aft_door") + direction = "aft" + if(linked_dropship && linked_dropship.door_control.door_controllers[direction]) + var/datum/door_controller/single/control = linked_dropship.door_control.door_controllers[direction] + control.status = SHUTTLE_DOOR_BROKEN + /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1 name = "\improper Alamo cargo door" diff --git a/code/modules/shuttle/computers/escape_pod_computer.dm b/code/modules/shuttle/computers/escape_pod_computer.dm index c45ac7d56102..dd621c83eaec 100644 --- a/code/modules/shuttle/computers/escape_pod_computer.dm +++ b/code/modules/shuttle/computers/escape_pod_computer.dm @@ -55,7 +55,7 @@ .["docking_status"] = STATE_LAUNCHED var/obj/structure/machinery/door/door = shuttle.door_handler.doors[1] .["door_state"] = door.density - .["door_lock"] = shuttle.door_handler.is_locked + .["door_lock"] = shuttle.door_handler.status == SHUTTLE_DOOR_LOCKED .["can_delay"] = TRUE//launch_status[2] .["launch_without_evac"] = launch_without_evac diff --git a/code/modules/shuttle/helpers.dm b/code/modules/shuttle/helpers.dm index 6b29f155582e..9c8d817ec237 100644 --- a/code/modules/shuttle/helpers.dm +++ b/code/modules/shuttle/helpers.dm @@ -19,7 +19,7 @@ if(!door_controllers[direction]) var/datum/door_controller/single/new_controller = new() new_controller.label = label - new_controller.is_locked = FALSE + new_controller.status = SHUTTLE_DOOR_UNLOCKED door_controllers[direction] = new_controller var/datum/door_controller/single/controller = door_controllers[direction] @@ -29,12 +29,12 @@ if(direction == "all") for(var/i in door_controllers) var/datum/door_controller/single/control = door_controllers[i] - if(!control.is_locked) + if(control.status != SHUTTLE_DOOR_LOCKED) return FALSE return TRUE if(door_controllers[direction]) var/datum/door_controller/single/single_controller = door_controllers[direction] - return single_controller.is_locked + return single_controller.status == SHUTTLE_DOOR_LOCKED else WARNING("Direction [direction] does not exist.") return FALSE @@ -60,9 +60,9 @@ for(var/direction in door_controllers) var/datum/door_controller/single/controller = door_controllers[direction] - var/list/door_data = list("id" = direction, "value" = controller.is_locked) + var/list/door_data = list("id" = direction, "value" = controller.status) . += list(door_data) - if(!controller.is_locked) + if(controller.status == SHUTTLE_DOOR_UNLOCKED) all_locked = FALSE var/list/door_data = list("id" = "all", "value" = all_locked) @@ -74,7 +74,7 @@ /datum/door_controller/single var/label = "dropship" var/list/doors = list() - var/is_locked = FALSE + var/status = SHUTTLE_DOOR_UNLOCKED /datum/door_controller/single/Destroy(force, ...) . = ..() @@ -93,23 +93,29 @@ if("close") INVOKE_ASYNC(door, TYPE_PROC_REF(/obj/structure/machinery/door/airlock, close)) if("force-lock") + if (status == SHUTTLE_DOOR_BROKEN) + continue INVOKE_ASYNC(src, PROC_REF(lockdown_door), door) - is_locked = TRUE + status = SHUTTLE_DOOR_LOCKED if("lock") INVOKE_ASYNC(door, TYPE_PROC_REF(/obj/structure/machinery/door/airlock, lock)) - is_locked = TRUE + if (status != SHUTTLE_DOOR_BROKEN) + status = SHUTTLE_DOOR_LOCKED if("unlock") INVOKE_ASYNC(door, TYPE_PROC_REF(/obj/structure/machinery/door/airlock, unlock)) - is_locked = FALSE + if (status != SHUTTLE_DOOR_BROKEN) + status = SHUTTLE_DOOR_UNLOCKED if("force-lock-launch") if(asynchronous) INVOKE_ASYNC(src, PROC_REF(lockdown_door_launch), door) else lockdown_door_launch(door) - is_locked = TRUE + if (status != SHUTTLE_DOOR_BROKEN) + status = SHUTTLE_DOOR_LOCKED if("force-unlock") INVOKE_ASYNC(src, PROC_REF(force_lock_open_door), door) - is_locked = FALSE + if (status != SHUTTLE_DOOR_BROKEN) + status = SHUTTLE_DOOR_UNLOCKED else CRASH("Unknown door command [action]") diff --git a/code/modules/shuttle/shuttles/dropship.dm b/code/modules/shuttle/shuttles/dropship.dm index 557e443f08a2..d0f27d869741 100644 --- a/code/modules/shuttle/shuttles/dropship.dm +++ b/code/modules/shuttle/shuttles/dropship.dm @@ -43,6 +43,9 @@ door_control.add_door(air, "port") if("aft_door") door_control.add_door(air, "aft") + var/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/hatch = air + if(istype(hatch)) + hatch.linked_dropship = src RegisterSignal(src, COMSIG_DROPSHIP_ADD_EQUIPMENT, PROC_REF(add_equipment)) RegisterSignal(src, COMSIG_DROPSHIP_REMOVE_EQUIPMENT, PROC_REF(remove_equipment)) diff --git a/tgui/packages/tgui/interfaces/DropshipFlightControl.tsx b/tgui/packages/tgui/interfaces/DropshipFlightControl.tsx index 2ae9a17fe35f..679b78efe843 100644 --- a/tgui/packages/tgui/interfaces/DropshipFlightControl.tsx +++ b/tgui/packages/tgui/interfaces/DropshipFlightControl.tsx @@ -3,9 +3,17 @@ import { Window } from '../layouts'; import { Box, Button, Flex, Icon, ProgressBar, Section, Stack } from '../components'; import { LaunchButton, CancelLaunchButton, DisabledScreen, InFlightCountdown, LaunchCountdown, NavigationProps, ShuttleRecharge, DockingPort } from './NavigationShuttle'; +const DoorStatusEnum = { + SHUTTLE_DOOR_BROKEN: -1, + SHUTTLE_DOOR_UNLOCKED: 0, + SHUTTLE_DOOR_LOCKED: 1, +} as const; + +type DoorStatusEnums = typeof DoorStatusEnum[keyof typeof DoorStatusEnum]; + interface DoorStatus { id: string; - value: 0 | 1; + value: DoorStatusEnums; } interface AutomatedControl { @@ -40,7 +48,7 @@ const DropshipDoorControl = () => { .filter((x) => x.id === 'all') .map((x) => ( <> - {x.value === 0 && ( + {x.value === DoorStatusEnum.SHUTTLE_DOOR_UNLOCKED && ( )} - {x.value === 1 && ( + {x.value === DoorStatusEnum.SHUTTLE_DOOR_LOCKED && ( + )} + {x.value === DoorStatusEnum.SHUTTLE_DOOR_UNLOCKED && ( )} - {x.value === 1 && ( + {x.value === DoorStatusEnum.SHUTTLE_DOOR_LOCKED && (

      ZspA)_xRv#_ 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 c3jZ3jePF@+laXGWZ_F)?>C?3wH8dM1b+$pE{& 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 RfD|Z{H*#vSmC`0b{{{K?RWSen delta 130618 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%0DsaIB@7pad2DXg@-av0i6w8qCpBna@YX%Kp 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 diff --git a/icons/obj/items/clothing/uniforms.dmi b/icons/obj/items/clothing/uniforms.dmi index bf8e5831607c0db03921912a3d9d70538f45bf87..42a925ef71ea5c9a36f29308eaf6ecaf725fed77 100644 GIT binary patch literal 135642 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�gy#MV( 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 GAN~(hf$0(e literal 133191 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 Date: Mon, 26 Feb 2024 10:28:06 +0000 Subject: [PATCH 124/148] Automatic changelog for PR #5681 [ci skip] --- html/changelogs/AutoChangeLog-pr-5681.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5681.yml diff --git a/html/changelogs/AutoChangeLog-pr-5681.yml b/html/changelogs/AutoChangeLog-pr-5681.yml new file mode 100644 index 000000000000..ba541a5ba22b --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5681.yml @@ -0,0 +1,7 @@ +author: "BadAtThisGame302" +delete-after: True +changes: + - rscadd: "Added trucker hats to the Solaris and Trijent Trucker survs." + - rscadd: "Added the CMB Marshal jacket to the CMB Marshal." + - imageadd: "Differentiated the CMB Deputy and CMB Marshal jackets to accurately know which is which. Courtesy of AmoryBlaine." + - imageadd: "Added new insulated gloves, coveralls (Tan/Red), updated the blue coveralls, Five Colonist Clothes (Grey/Khaki/Pink/Blue/Green), updated the Orange/Blue/Black hazard vests and updated the CMB Uniform and Cap. Courtesy of AmoryBlaine." \ No newline at end of file From 55d7ea7008c8d34f223e4981ee0558eb99cecfd2 Mon Sep 17 00:00:00 2001 From: InsaneRed <47158596+InsaneRed@users.noreply.github.com> Date: Mon, 26 Feb 2024 13:09:01 +0300 Subject: [PATCH 125/148] Tweaks oppressor (#5759) # About the pull request Raises the tailhook from 7 deciseconds to 8 deciseconds. # Explain why it's good for the game On my last PR i tweaked this from 8 to 7 thinking it wouldnt be too impactful but people giving me ""FEEDBACK"" have made me realise this is a bit too fast with players with 200+ ping above, originally i wasnt going to do this because i was planning on a full rework but i dont want to leave it ''broken'' for the time being. # Testing Photographs and Procedure